/* ===============================
   EXPRESSION COFFEE - RITUAL PAGE STYLES
   VERSIÓN CON LETRAS MÁS GRANDES PARA MEJOR LEGIBILIDAD
   =============================== */

/* Importar fuente Inter desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===============================
   SECTION 1: HERO
   Color: Verde oscuro profundo (#173d3e)
   =============================== */
.exp-ritual-hero {
    background: #0f2d2e;
    padding: 120px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-ritual-hero__container {
    max-width: 1200px;
    margin: 0 auto;
}

.exp-ritual-hero__title {
    font-family: 'Inter', sans-serif;
    font-size: 86px;  /* AUMENTADO de 72px */
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.exp-ritual-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;  /* AUMENTADO de 16px */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    max-width: 600px;
}

/* ===============================
   SECTION 2-5: RITUAL SECTIONS (V60, CHEMEX, FRENCH PRESS, EXPRESSIONS)
   =============================== */

/* Section Indicator (FR, etc) - Positioned at the top, centered, black */
.exp-ritual-section__indicator {
    font-family: 'Inter', sans-serif;
    font-size: 40px;  /* AUMENTADO de 32px */
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #111111;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 80px;
    text-transform: uppercase;
    line-height: 1;
}

/* V60 Section - Verde oscuro (#173d3e) */
.exp-ritual-section--v60 {
    background: #173d3e;
    color: #ffffff;
}

/* Chemex Section - Gris claro (#f5f5f5) */
.exp-ritual-section--chemex {
    background: #d8d9d9;
    color: #111111;
}

/* French Press Section - Gris claro (#d8d9d9) */
.exp-ritual-section--french-press {
    background: #ffffff;
    color: #111111;
}

/* Expressions Section - Blanco (#ffffff) */
.exp-ritual-section--expressions {
    background: #ffffff;
    color: #111111;
}

/* Common Section Styles */
.exp-ritual-section {
    padding: 100px 20px;
}

.exp-ritual-section__content {
    max-width: 1200px;
    margin: 0 auto;
}

.exp-ritual-section__text-container {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.exp-ritual-section__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 14px;  /* AUMENTADO de 12px */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 20px 0;
    opacity: 0.8;
}

.exp-ritual-section__title {
    font-family: 'Inter', sans-serif;
    font-size: 68px;  /* AUMENTADO de 56px */
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.exp-ritual-section__description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;  /* AUMENTADO de 16px */
    line-height: 1.7;
    margin: 0 0 32px 0;
    opacity: 0.9;
}

.exp-ritual-section__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Logos Section (Chemex) */
.exp-ritual-section__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.exp-ritual-logo {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.exp-ritual-logo:hover {
    opacity: 1;
}

/* Image Section - ESTILO DEL CONTACT CSS */
.exp-ritual-section__image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    background: #d1d5db;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* ===============================
   BUTTONS
   =============================== */
.exp-ritual-button {
    font-family: 'Inter', sans-serif;
    padding: 16px 36px;  /* AUMENTADO de 14px 32px */
    font-size: 17px;  /* AUMENTADO de 15px */
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Primary Button - Green */
.exp-ritual-button--primary {
    background: linear-gradient(90deg, #0f766e, #a16207);
    color: #ffffff;
    border: none;
}

/* Outline Button - Transparent with border (for dark backgrounds) */
.exp-ritual-button--outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.exp-ritual-button--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Text Button - No background, just text with arrow */
.exp-ritual-button--text {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 16px 28px;  /* AUMENTADO de 14px 24px */
}

.exp-ritual-button--text:hover {
    opacity: 0.8;
}

/* Outline Button Dark - For light backgrounds */
.exp-ritual-button--outline-dark {
    background: transparent;
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.exp-ritual-button--outline-dark:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

/* Text Button Dark - For light backgrounds */
.exp-ritual-button--text-dark {
    background: transparent;
    color: #111111;
    border: none;
    padding: 16px 28px;  /* AUMENTADO de 14px 24px */
}

.exp-ritual-button--text-dark:hover {
    opacity: 0.7;
}

/* Secondary Button - Transparent with border (for dark backgrounds) */
.exp-ritual-button--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.exp-ritual-button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Secondary Button Light - Transparent with border (for light backgrounds) */
.exp-ritual-button--secondary-light {
    background: transparent;
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.exp-ritual-button--secondary-light:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

/* ===============================
   EXPRESSIONS SECTION - BREWING METHODS
   =============================== */
.exp-ritual-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto;
    text-align: center;
}

.exp-ritual-method {
    padding: 0;
}

.exp-ritual-method__name {
    font-family: 'Inter', sans-serif;
    font-size: 28px;  /* AUMENTADO de 24px */
    font-weight: 700;
    margin: 0 0 12px 0;
    color: inherit;
}

.exp-ritual-method__description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;  /* AUMENTADO de 15px */
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

/* ===============================
   SECTION 6: CTA (CALL TO ACTION)
   Color: Blanco (#ffffff)
   =============================== */
.exp-ritual-cta {
    background: #ffffff;
    padding: 120px 20px;
    text-align: center;
}

.exp-ritual-cta__container {
    max-width: 800px;
    margin: 0 auto;
}

.exp-ritual-cta__title {
    font-family: 'Inter', sans-serif;
    font-size: 76px;  /* AUMENTADO de 64px */
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.exp-ritual-cta__description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;  /* AUMENTADO de 16px */
    line-height: 1.7;
    color: #555555;
    margin: 0 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.exp-ritual-cta__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===============================
   SECTION 7: FAQ
   Color: Blanco (#ffffff)
   =============================== */
.exp-ritual-faq {
    background: #ffffff;
    padding: 100px 20px;
}

.exp-ritual-faq__header {
    text-align: center;
    margin-bottom: 60px;
}

.exp-ritual-faq__title {
    font-family: 'Inter', sans-serif;
    font-size: 68px;  /* AUMENTADO de 56px */
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
    margin: 0 0 16px 0;
}

.exp-ritual-faq__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;  /* AUMENTADO de 16px */
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.exp-ritual-faq__list {
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.exp-ritual-faq-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.exp-ritual-faq-item:first-child {
    padding-top: 0;
}

.exp-ritual-faq-item__question {
    font-family: 'Inter', sans-serif;
    font-size: 24px;  /* AUMENTADO de 20px */
    font-weight: 700;
    line-height: 1.4;
    color: #111111;
    margin: 0 0 12px 0;
}

.exp-ritual-faq-item__answer {
    font-family: 'Inter', sans-serif;
    font-size: 17px;  /* AUMENTADO de 15px */
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

.exp-ritual-faq__contact {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.exp-ritual-faq__contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;  /* AUMENTADO de 32px */
    font-weight: 700;
    line-height: 1.3;
    color: #111111;
    margin: 0 0 12px 0;
}

.exp-ritual-faq__contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;  /* AUMENTADO de 15px */
    line-height: 1.6;
    color: #555555;
    margin: 0 0 24px 0;
}

/* ===============================
   BOTÓN CONTACT ESPECÍFICO - BLANCO
   =============================== */
.exp-ritual-faq__contact .exp-ritual-button--primary {
    background: #ffffff;
    color: #111111;
    border: 1px solid #e5e5e5;
    padding: 16px 36px;
    font-size: 17px;
}

.exp-ritual-faq__contact .exp-ritual-button--primary:hover {
    background: #f5f5f5;
    color: #111111;
    border-color: #d4d4d4;
}

/* ===============================
   RESPONSIVE - HERO
   =============================== */
@media (max-width: 1024px) {
    .exp-ritual-hero__title {
        font-size: 72px;  /* AUMENTADO de 60px */
    }
}

@media (max-width: 768px) {
    .exp-ritual-hero {
        padding: 90px 24px;
        min-height: 50vh;
    }

    .exp-ritual-hero__title {
        font-size: 58px;  /* AUMENTADO de 48px */
    }

    .exp-ritual-hero__subtitle {
        font-size: 17px;  /* AUMENTADO de 15px */
    }
}

@media (max-width: 640px) {
    .exp-ritual-hero__title {
        font-size: 48px;  /* AUMENTADO de 40px */
    }
}

/* ===============================
   RESPONSIVE - RITUAL SECTIONS
   =============================== */
@media (max-width: 1024px) {
    .exp-ritual-section__title {
        font-size: 58px;  /* AUMENTADO de 48px */
    }

    .exp-ritual-methods {
        gap: 32px;
    }

    .exp-ritual-section__indicator {
        font-size: 34px;  /* AUMENTADO de 28px */
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .exp-ritual-section {
        padding: 80px 24px;
    }

    .exp-ritual-section__title {
        font-size: 48px;  /* AUMENTADO de 40px */
    }

    .exp-ritual-section__text-container {
        margin-bottom: 40px;
    }

    .exp-ritual-section__logos {
        gap: 24px;
    }

    .exp-ritual-methods {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .exp-ritual-section__indicator {
        margin-bottom: 50px;
    }
}

@media (max-width: 640px) {
    .exp-ritual-section__title {
        font-size: 40px;  /* AUMENTADO de 32px */
    }

    .exp-ritual-section__description {
        font-size: 17px;  /* AUMENTADO de 15px */
    }

    .exp-ritual-section__buttons {
        flex-direction: column;
    }

    .exp-ritual-button {
        width: 100%;
        justify-content: center;
    }

    .exp-ritual-section__indicator {
        font-size: 28px;  /* AUMENTADO de 24px */
        margin-bottom: 40px;
    }
}

/* ===============================
   RESPONSIVE - CTA
   =============================== */
@media (max-width: 1024px) {
    .exp-ritual-cta__title {
        font-size: 68px;  /* AUMENTADO de 56px */
    }
}

@media (max-width: 768px) {
    .exp-ritual-cta {
        padding: 90px 24px;
    }

    .exp-ritual-cta__title {
        font-size: 58px;  /* AUMENTADO de 48px */
    }

    .exp-ritual-cta__buttons {
        flex-direction: column;
    }

    .exp-ritual-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .exp-ritual-cta__title {
        font-size: 48px;  /* AUMENTADO de 40px */
    }
}

/* ===============================
   RESPONSIVE - FAQ
   =============================== */
@media (max-width: 1024px) {
    .exp-ritual-faq__title {
        font-size: 58px;  /* AUMENTADO de 48px */
    }

    .exp-ritual-faq__contact-title {
        font-size: 34px;  /* AUMENTADO de 28px */
    }
}

@media (max-width: 768px) {
    .exp-ritual-faq {
        padding: 80px 24px;
    }

    .exp-ritual-faq__title {
        font-size: 48px;  /* AUMENTADO de 40px */
    }

    .exp-ritual-faq__header {
        margin-bottom: 48px;
    }

    .exp-ritual-faq__list {
        margin-bottom: 60px;
    }

    .exp-ritual-faq-item {
        padding: 24px 0;
    }

    .exp-ritual-faq__contact-title {
        font-size: 30px;  /* AUMENTADO de 24px */
    }
}

@media (max-width: 640px) {
    .exp-ritual-faq__title {
        font-size: 40px;  /* AUMENTADO de 32px */
    }

    .exp-ritual-faq-item__question {
        font-size: 22px;  /* AUMENTADO de 18px */
    }

    .exp-ritual-faq-item__answer {
        font-size: 16px;  /* AUMENTADO de 14px */
    }
}

/* ===============================
   UTILITY CLASSES
   =============================== */
.exp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .exp-container {
        padding: 0 24px;
    }
}
