/* ============================================
   PAGE.CSS — Elixir S&B
   Shared layout for informational inner pages:
   Nosotros, Contacto, Términos, Privacidad
   ============================================ */

/* ── Page Hero (title section) ────────────── */

.page-hero {
    padding: 150px 20px 64px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 125, 0.15);
}

.page-hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 300;
    color: white;
    letter-spacing: 2px;
    line-height: 1.1;
}

/* ── Page Content Wrapper ─────────────────── */

.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 20px 50px;
}

/* ── Generic Section Block ────────────────── */

.page-section {
    margin-bottom: 64px;
}

.page-section:last-child {
    margin-bottom: 0;
}

.page-section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin-bottom: 16px;
}

.page-section p:last-child {
    margin-bottom: 0;
}

.page-section p strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

/* ── Story Section (nosotros) ─────────────── */

.story-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.story-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    padding-left: 20px;
    border-left: 2px solid var(--gold);
    margin: 0;
}

.story-lead strong {
    color: white;
    font-weight: 500;
}

.story-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.story-cols p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 125, 0.12);
}

/* ── Values Grid (nosotros) ───────────────── */

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 12px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 125, 0.12);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 24px 28px;
}

.value-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin-bottom: 10px;
}

.value-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── CTA Banner ───────────────────────────── */

.page-cta {
    background: rgba(212, 175, 125, 0.06);
    border: 1px solid rgba(212, 175, 125, 0.2);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
}

.page-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
}

.page-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    line-height: 1.7;
}

.page-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.page-cta-btn:hover {
    background-color: #1fb957;
}

.page-cta-btn img {
    width: 18px;
    height: 18px;
}

/* ── Contact Cards (contacto) ─────────────── */

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 125, 0.15);
    border-radius: 8px;
    padding: 28px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 125, 0.1);
    border: 1px solid rgba(212, 175, 125, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon img {
    width: 22px;
    height: 22px;
}

.contact-card-body {
    flex: 1;
}

.contact-card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-card-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: white;
    margin-bottom: 4px;
}

.contact-card-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 125, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.contact-card-link:hover {
    color: white;
    border-color: white;
}

/* ── Response Time Notice ─────────────────── */

.contact-notice {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 125, 0.12);
    border-left: 3px solid rgba(212, 175, 125, 0.5);
    border-radius: 4px;
    padding: 18px 22px;
    margin-bottom: 48px;
}

.contact-notice p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0;
}

.contact-notice p strong {
    color: rgba(255, 255, 255, 0.85);
}

/* ── Legal Pages (terminos, privacidad) ────── */

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: white;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 28px;
}

.legal-section p,
.legal-section li {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-section li {
    margin-bottom: 6px;
}

.legal-section a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 125, 0.3);
    transition: color 0.2s;
}

.legal-section a:hover {
    color: white;
}

.legal-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 48px;
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 700px) {
    .story-cols {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .story-cols p {
        padding-top: 0;
        border-top: none;
        padding-left: 24px;
        border-left: 1px solid rgba(212, 175, 125, 0.15);
    }
}

@media (min-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .page-content {
        padding: 80px 40px;
    }
}
