/* =========================================================
   CAHF WEB
   ESTILOS GENERALES
========================================================= */

:root {
    --green: #087c38;
    --green-dark: #05652e;
    --green-light: #eaf8ef;
    --purple: #7b3ff2;
    --purple-light: #f0e8ff;
    --black: #111111;
    --text: #333333;
    --gray: #666666;
    --light-gray: #f6f7f6;
    --border: #e2e5e2;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 18px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =========================================================
   PROMO BAR
========================================================= */

.promo-bar {
    width: 100%;
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: var(--white);
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: min(1200px, 92%);
    margin: 0 auto;
    min-height: 96px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-link {
    flex-shrink: 0;
}

.logo {
    width: 155px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    margin-left: auto;
}

.main-nav a {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--green);
}

.header-buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--green);
    color: var(--white);

    padding: 13px 25px;
    border-radius: 40px;

    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 8px 20px rgba(8, 124, 56, 0.22);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.header-buy-button:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.cart-symbol {
    font-size: 20px;
}

.mobile-menu-button {
    display: none;

    border: 0;
    background: transparent;

    font-size: 28px;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background: #ffffff;
    overflow: hidden;
}

.hero-container {
    width: min(1280px, 94%);
    min-height: 650px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 44% 56%;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    border: 2px solid var(--green);
    color: var(--green);

    padding: 8px 15px;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 15px;
}

.hero h1 {
    color: var(--black);
    font-size: clamp(45px, 4.2vw, 68px);
    line-height: 0.98;
    letter-spacing: -2.5px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--green);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 28px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 16px;
    color: var(--black);
}

.hero-benefit strong {
    font-weight: 800;
}

.benefit-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 25px;
    border-radius: 30px;

    font-weight: 700;
    font-size: 15px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(8, 124, 56, 0.22);
}

.button-secondary {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(123, 63, 242, 0.22);
}

.hero-info-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 13px;

    padding: 12px 17px;

    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 160px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 27px;
    color: var(--purple);
}

.hero-info-card strong {
    display: block;
    font-size: 13px;
    color: var(--black);
}

.hero-info-card small {
    display: block;
    font-size: 11px;
    color: var(--gray);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-container {
    position: relative;
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 620px;
    object-fit: cover;

    /* Fusión suave con el lado izquierdo */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 7%,
        rgba(0, 0, 0, 0.65) 15%,
        #000000 25%
    ); 

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 7%,
        rgba(0, 0, 0, 0.65) 15%,
        #000000 25%
    );
}

.hero-price-card {
    position: absolute;

    right: 5px;
    top: 50%;

    transform: translateY(-50%);

    width: 180px;

    background: rgba(255,255,255,0.97);
    border-radius: 12px;

    padding: 15px;

    box-shadow: var(--shadow);

    z-index: 3;
}

.price-product {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-product span {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.price-product del {
    color: #777;
    font-size: 12px;
}

.price-product strong {
    color: var(--green);
    font-size: 23px;
    line-height: 1.1;
}

.price-product small {
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
}

.price-divider {
    height: 1px;
    background: #dddddd;
    margin: 12px 0;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.section-heading h2 {
    color: var(--black);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.section-heading h2 span {
    color: var(--green);
}

.section-heading p {
    color: var(--gray);
    font-size: 16px;
}


/* =========================================================
   SURFACES
========================================================= */

.surfaces-section {
    padding: 75px 0;
    background: var(--white);
}

.surface-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.surface-card {
    border: 1px solid var(--border);
    border-radius: 16px;

    padding: 25px 15px;

    text-align: center;

    background: var(--white);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.surface-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.surface-icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.surface-card h3 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 8px;
}

.surface-card p {
    font-size: 12px;
    color: var(--gray);
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
    padding: 75px 0;
    background: #f2fbf5;
}

.steps-grid {
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;
    gap: 10px;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 42px;
    height: 42px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green);
    color: var(--white);

    font-weight: 800;
    font-size: 18px;
}

.step-card h3 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--gray);
}

.step-visual {
    margin-top: 20px;
    font-size: 38px;
}

.step-arrow {
    color: var(--green);
    font-size: 28px;
    font-weight: 700;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 75px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;

    border: 0;
    background: var(--white);

    padding: 17px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    text-align: left;

    cursor: pointer;

    color: var(--black);
    font-weight: 700;
    font-size: 14px;
}

.faq-question:hover {
    color: var(--green);
}

.faq-plus {
    color: var(--green);
    font-size: 24px;
    font-weight: 400;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 18px;

    color: var(--gray);
    font-size: 13px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #075d2c;
    color: var(--white);
}

.footer-container {
    width: min(1200px, 92%);
    margin: 0 auto;

    padding: 60px 0 45px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 45px;
}

.footer-brand {
    max-width: 270px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 18px;

    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

        .social-links a {
            width: 38px;
            height: 38px;

            display: flex;

            align-items: center;
            justify-content: center;

            border: none;

            border-radius: 0;

            background: transparent;

            flex-shrink: 0;

            transition:
                transform 0.2s ease;
        }

.social-links a:hover {
    background: rgba(255,255,255,0.15);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact a {
    display: block;
}

.secure-box {
    margin-top: 18px;

    padding: 14px;

    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.secure-box strong {
    font-size: 13px;
}

.secure-box span {
    font-size: 11px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.18);

    padding: 18px;

    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.8;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 20px;
    }

    .header-container {
        gap: 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 50px 0 20px;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-benefits {
        align-items: center;
    }

    .hero-benefit {
        text-align: left;
    }

    .hero-buttons,
    .hero-info-cards {
        justify-content: center;
    }

    .hero-image-container {
        min-height: 500px;
    }

    .hero-image {
        height: 500px;
    }

    .hero-price-card {
        right: 20px;
    }

    .surface-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .step-arrow {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .promo-bar {
        font-size: 11px;
        padding: 7px 10px;
        line-height: 1.3;
    }


    /* HEADER */

    .site-header {
        position: relative;
    }

    .header-container {
        min-height: 75px;
    }

    .logo {
        width: 120px;
    }

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        display: none;

        position: absolute;

        top: 75px;
        left: 0;
        right: 0;

        background: var(--white);

        padding: 20px;

        flex-direction: column;
        gap: 18px;

        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .main-nav.active {
        display: flex;
    }

    .header-buy-button {
        padding: 10px 14px;
        font-size: 12px;
    }

    .cart-symbol {
        font-size: 16px;
    }


    /* HERO */

    .hero-container {
        width: 94%;
    }

    .hero-content {
        padding-top: 35px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .hero-benefit {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-info-cards {
        flex-direction: column;
    }

    .hero-info-card {
        width: 100%;
    }

    .hero-image-container {
        min-height: 390px;
        margin-top: 10px;
    }

    .hero-image {
        height: 390px;
    }

    .hero-price-card {
        right: 8px;
        width: 145px;
        padding: 10px;
    }

    .price-product span {
        font-size: 10px;
    }

    .price-product strong {
        font-size: 17px;
    }

    .price-product small {
        font-size: 8px;
    }

    .price-divider {
        margin: 8px 0;
    }


    /* SECTIONS */

    .surfaces-section,
    .how-section,
    .faq-section {
        padding: 55px 0;
    }

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .section-heading p {
        font-size: 14px;
    }


    /* SURFACES */

    .surface-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .surface-card {
        padding: 20px 10px;
    }

    .surface-icon {
        font-size: 32px;
    }


    /* STEPS */

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .step-card {
        padding: 15px;
    }


    /* FAQ */

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 13px;
        padding: 15px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 0;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        width: 135px;
    }

}
/* =========================================
   SLIDER DE IMÁGENES - PRODUCTO
   ========================================= */

.product-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 16px;
}

.product-slider-image {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    transition: opacity 0.25s ease;
}

/* Flechas */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    color: #111;

    font-size: 34px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 18px;
}

.slider-next {
    right: 18px;
}

/* Miniaturas */

.slider-thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.slider-thumbnail {
    width: 78px;
    height: 78px;

    padding: 3px;

    background: #fff;

    border: 2px solid transparent;
    border-radius: 10px;

    cursor: pointer;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.slider-thumbnail:hover {
    transform: translateY(-2px);
}

.slider-thumbnail.active {
    border-color: #0b8f3c;
}

.slider-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    display: block;
}
/* =========================================
   MINIATURAS DEBAJO DE LA IMAGEN
   ========================================= */

.slider-thumbnails {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.slider-thumbnail {
    width: 72px;
    height: 72px;

    padding: 3px;

    background: #ffffff;

    border: 2px solid transparent;
    border-radius: 10px;

    cursor: pointer;

    overflow: visible;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.slider-thumbnail:hover {
    transform: translateY(-2px);
}

.slider-thumbnail.active {
    border-color: #0b8f3c;
}

.slider-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 7px;
}

.product-image-box {

    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-thumbnails {
    order: 2;
    flex-direction: row;
}
@media (max-width: 768px) {

    .product-slider {
        min-height: 400px;
    }

    .product-slider-image {
        max-width: 100%;
        max-height: 420px;
    }

    .slider-thumbnails {
        margin-top: 10px;
    }

    .slider-thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* =====================================================
   PÁGINA DE BENEFICIOS
   ===================================================== */

.beneficios-page {
    background: #ffffff;
}


/* HERO */

.beneficios-hero {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.8fr;

    min-height: 700px;
    padding: 55px 50px 40px;

    box-sizing: border-box;
}


/* CONTENIDO IZQUIERDO */

.beneficios-content {
    padding-right: 30px;
}

.beneficios-title {
    font-size: clamp(55px, 6vw, 95px);
    line-height: 0.85;
    font-weight: 900;
    color: #3b137d;
}

.beneficios-title span {
    display: block;
}

.beneficios-title strong {
    display: block;
    color: #68b900;
}

.beneficios-subtitle {
    display: inline-block;

    margin-top: 12px;

    padding: 5px 18px;

    border-radius: 8px;

    background: #3b137d;

    color: #ffffff;

    font-size: clamp(22px, 2.2vw, 36px);
    font-weight: 900;
}


.beneficios-intro {
    max-width: 650px;

    margin: 25px 0 30px;

    font-size: 18px;
    line-height: 1.5;

    color: #111111;
}

.beneficios-intro strong {
    color: #579e00;
}


/* CUATRO BENEFICIOS */

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 25px;
}

.beneficio-item {
    padding: 0 20px;

    text-align: center;

    border-right: 1px solid #cccccc;
}

.beneficio-item:last-child {
    border-right: none;
}

.beneficio-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #68b900;

    color: #ffffff;

    font-size: 30px;
    font-weight: 900;
}

.beneficio-item:nth-child(even) .beneficio-icon {
    background: #421483;
}

.beneficio-item h3 {
    margin: 8px 0;

    font-size: 16px;

    color: #421483;
}

.beneficio-item:nth-child(even) h3 {
    color: #579e00;
}

.beneficio-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.35;
}


/* COMPARACIÓN */

.beneficios-comparacion {
    display: grid;

    grid-template-columns: 1fr 70px 1fr;

    align-items: center;

    margin-top: 25px;

    padding: 15px;

    border: 1px solid #dddddd;
    border-radius: 20px;

    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.comparacion-productos,
.comparacion-cahf {
    text-align: center;
}

.comparacion-productos h3,
.comparacion-cahf h3 {
    margin: 0 0 8px;

    font-size: 15px;

    color: #421483;
}

.productos-placeholder {
    font-size: 35px;

    margin: 10px 0;
}

.comparacion-cahf img {
    width: 75px;
    height: 120px;

    object-fit: contain;

    display: block;

    margin: 5px auto;
}

.comparacion-productos span,
.comparacion-cahf span {
    display: inline-block;

    padding: 5px 15px;

    border-radius: 20px;

    background: #421483;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
}

.comparacion-cahf span {
    background: #68b900;
}

.comparacion-signo {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    margin: auto;

    border-radius: 50%;

    background: #421483;

    color: #ffffff;

    font-size: 28px;
    font-weight: 900;
}


/* PRODUCTO DERECHA */

.beneficios-producto {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 620px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.9),
            rgba(255,255,255,0)
        );
}

.beneficios-producto-img {
    width: min(90%, 560px);

    max-height: 650px;

    object-fit: contain;
}


/* CÍRCULO VERDE */

.beneficios-badge {
    position: absolute;

    top: 30px;
    right: 20px;

    width: 155px;
    height: 155px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background: #68b900;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.15;

    z-index: 2;
}

.beneficios-badge span {
    position: absolute;

    top: 25px;

    font-size: 25px;
}


/* BENEFICIOS EXTRA */

.beneficios-extra {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 30px;
}

.extra-item {
    display: flex;

    align-items: center;

    gap: 15px;
}

.extra-item > strong {
    flex-shrink: 0;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #68b900;

    color: #ffffff;

    font-size: 30px;
}

.extra-item h3 {
    margin: 0 0 5px;

    color: #421483;

    font-size: 16px;
}

.extra-item p {
    margin: 0;

    font-size: 13px;
}


/* LISTA */

.beneficios-lista {
    max-width: 1500px;

    margin: 0 auto;

    padding: 0 50px 40px;
}

.beneficios-lista-texto {
    max-width: 400px;

    margin-left: auto;
}

.lista-item {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 12px;
}

.lista-item span {
    color: #579e00;

    font-size: 28px;
    font-weight: 900;
}

.lista-item p {
    margin: 0;

    font-size: 16px;
}


/* CTA */

.beneficios-cta {
    padding: 55px 20px;

    text-align: center;

    background: #421483;

    color: #ffffff;
}

.beneficios-cta h2 {
    margin: 0 0 10px;

    font-size: 32px;
}

.beneficios-cta p {
    margin-bottom: 25px;
}

.beneficios-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    border-radius: 30px;

    background: #68b900;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {

    .beneficios-hero {
        grid-template-columns: 1fr;

        padding: 40px 25px;
    }

    .beneficios-content {
        padding-right: 0;
    }

    .beneficios-producto {
        min-height: 500px;

        order: -1;
    }

    .beneficios-badge {
        top: 20px;
        right: 5%;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .beneficio-item:nth-child(2) {
        border-right: none;
    }

    .beneficios-extra {
        grid-template-columns: 1fr;
    }

    .beneficios-lista {
        padding: 0 25px 40px;
    }

    .beneficios-lista-texto {
        margin-left: 0;
    }
}


@media (max-width: 600px) {

    .beneficios-title {
        font-size: 48px;
    }

    .beneficios-subtitle {
        font-size: 20px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr 1fr;
    }

    .beneficio-item {
        padding: 10px;
    }

    .beneficios-comparacion {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .comparacion-signo {
        transform: rotate(90deg);
    }

    .beneficios-producto {
        min-height: 420px;
    }

    .beneficios-producto-img {
        width: 90%;
        max-height: 430px;
    }

    .beneficios-badge {
        width: 120px;
        height: 120px;

        font-size: 12px;
    }

    .beneficios-extra {
        gap: 20px;
    }

    .beneficios-cta h2 {
        font-size: 25px;
    }
}
/* Logo específico de beneficios */
.beneficios-header-logo img {
    width: 140px;
    height: auto;
}
/* =====================================================
   IMAGEN PÁGINA BENEFICIOS
   ===================================================== */

.beneficios-imagen {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    line-height: 0;
    overflow: hidden;
}

.beneficios-imagen img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}


/* =====================================================
   RESPONSIVE - CELULAR
   ===================================================== */

@media (max-width: 768px) {

    .beneficios-imagen {
        width: 100%;
        overflow: hidden;
    }

    .beneficios-imagen img {
        width: 100%;
        height: auto;
        display: block;
    }

}
/* =========================================================
   CARRITO DE COMPRA
   ========================================================= */

.cart-page {
    width: 100%;
    background: #ffffff;
    padding: 60px 20px 80px;
}

.cart-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.cart-heading {
    margin-bottom: 35px;
}

.cart-heading h1 {
    margin: 0 0 8px;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
    color: #111111;
}

.cart-heading p {
    margin: 0;
    font-size: 16px;
    color: #555555;
}


/* =========================================================
   DISTRIBUCIÓN
   ========================================================= */

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 35px;
    align-items: start;
}


/* =========================================================
   PRODUCTOS
   ========================================================= */

.cart-products {
    min-width: 0;
}

.cart-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.cart-products-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #111111;
}

.cart-clear {
    border: none;
    background: transparent;
    color: #555555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
}

.cart-clear:hover {
    color: #00843d;
}


/* =========================================================
   TARJETA DE PRODUCTO
   ========================================================= */

.cart-item {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;

    padding: 18px;
    margin-bottom: 14px;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.cart-item-image {
    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7faf8;
    border-radius: 12px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.cart-item-info {
    min-width: 0;
}

.cart-item-name {
    margin: 0 0 7px;

    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;

    color: #111111;
}

.cart-item-description {
    margin: 0 0 10px;

    font-size: 14px;
    line-height: 1.4;

    color: #666666;
}

.cart-item-price {
    margin: 0;

    font-size: 17px;
    font-weight: 800;

    color: #00843d;
}


/* =========================================================
   CANTIDAD
   ========================================================= */

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cart-quantity {
    display: flex;
    align-items: center;

    border: 1px solid #dddddd;
    border-radius: 10px;
    overflow: hidden;

    background: #ffffff;
}

.cart-quantity button {
    width: 36px;
    height: 36px;

    border: none;
    background: #ffffff;

    font-size: 18px;
    line-height: 1;

    cursor: pointer;
}

.cart-quantity button:hover {
    background: #f4f4f4;
}

.cart-quantity span {
    min-width: 38px;

    text-align: center;

    font-size: 14px;
    font-weight: 700;
}

.cart-item-total {
    font-size: 16px;
    font-weight: 800;
    color: #111111;
}

.cart-remove {
    border: none;
    background: transparent;

    color: #777777;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}

.cart-remove:hover {
    color: #d00000;
}


/* =========================================================
   CARRITO VACÍO
   ========================================================= */

.cart-empty {
    display: none;

    padding: 60px 25px;

    text-align: center;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    background: #ffffff;
}

.cart-empty.active {
    display: block;
}

.cart-empty-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.cart-empty h2 {
    margin: 0 0 8px;

    font-size: 24px;
    font-weight: 800;

    color: #111111;
}

.cart-empty p {
    margin: 0 0 25px;

    color: #666666;
}

.cart-empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 25px;

    border-radius: 30px;

    background: #00843d;
    color: #ffffff;

    text-decoration: none;

    font-weight: 700;
}


/* =========================================================
   RESUMEN
   ========================================================= */

.cart-summary {
    position: sticky;
    top: 25px;

    padding: 26px;

    border: 1px solid #dce8df;
    border-radius: 16px;

    background: #f8fbf9;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.cart-summary h2 {
    margin: 0 0 25px;

    font-size: 21px;
    font-weight: 800;

    color: #111111;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 15px;

    font-size: 15px;
    color: #555555;
}

.summary-row strong {
    color: #111111;
}

#cartShipping {
    max-width: 180px;

    text-align: right;

    font-size: 13px;
    line-height: 1.35;
}

.summary-divider {
    height: 1px;
    width: 100%;

    background: #dce3de;

    margin: 20px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 22px;

    font-size: 20px;
    font-weight: 800;

    color: #111111;
}

.summary-total strong {
    color: #00843d;
    font-size: 24px;
}


/* =========================================================
   BOTÓN CHECKOUT
   ========================================================= */

.cart-checkout-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: none;
    border-radius: 30px;

    padding: 15px 20px;

    background: #00843d;
    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 7px 18px rgba(0, 132, 61, 0.18);
}

.cart-checkout-button:hover {
    background: #007336;
}

.cart-checkout-button span {
    font-size: 18px;
}


.cart-continue-shopping {
    display: block;

    margin-top: 18px;

    text-align: center;

    color: #555555;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.cart-continue-shopping:hover {
    color: #00843d;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 900px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
        width: 100%;
    }

}


/* =========================================================
   RESPONSIVE - CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .cart-page {
        padding: 35px 15px 55px;
    }

    .cart-heading {
        margin-bottom: 25px;
    }

    .cart-heading h1 {
        font-size: 30px;
    }

    .cart-heading p {
        font-size: 14px;
        line-height: 1.4;
    }

    .cart-products-header {
        align-items: flex-start;
    }

    .cart-products-header h2 {
        font-size: 18px;
    }

    .cart-clear {
        font-size: 13px;
    }


    /* Tarjeta móvil */

    .cart-item {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 14px;

        padding: 14px;
    }

    .cart-item-image {
        width: 78px;
        height: 78px;
    }

    .cart-item-name {
        font-size: 16px;
    }

    .cart-item-description {
        font-size: 12px;
    }

    .cart-item-price {
        font-size: 15px;
    }

    .cart-item-actions {
        grid-column: 1 / -1;

        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding-top: 5px;

        border-top: 1px solid #eeeeee;
    }

    .cart-item-total {
        font-size: 15px;
    }


    /* Resumen móvil */

    .cart-summary {
        padding: 20px;
    }

    .cart-summary h2 {
        font-size: 19px;
    }

    .summary-total {
        font-size: 18px;
    }

    .summary-total strong {
        font-size: 22px;
    }

}

/* =====================================================
   PÁGINA DEMOSTRACIÓN
===================================================== */

.demostracion-page {
    width: 100%;
    background: #ffffff;
}


/* =====================================================
   HERO / VIDEO
===================================================== */

.demo-hero {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px 65px;
    text-align: center;
}

.demo-intro {
    max-width: 720px;
    margin: 0 auto 35px;
}

.demo-tag {
    display: inline-block;

    padding: 7px 16px;

    border: 1px solid #00843d;
    border-radius: 30px;

    color: #00843d;

    font-size: 13px;
    font-weight: 700;
}

.demo-intro h1 {
    margin: 18px 0 12px;

    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;

    color: #32156b;
}

.demo-intro h1 span {
    color: #00843d;
}

.demo-intro p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 18px;
    line-height: 1.5;

    color: #555555;
}


/* =====================================================
   VIDEO
===================================================== */

.demo-video-container {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 18px;

    background: #f4f2f8;

    border: 1px solid #ddd8e8;

    box-shadow:
        0 10px 35px rgba(50, 21, 107, 0.10);
}

.demo-video {
    display: block;

    width: 100%;
    height: auto;

    max-height: 540px;

    background: #000000;
}


/* =====================================================
   BOTONES
===================================================== */

.demo-button-container {
    margin-top: 25px;
}

.demo-buy-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 220px;

    padding: 15px 28px;

    border-radius: 30px;

    background: #00843d;
    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(0, 132, 61, 0.18);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.demo-buy-button:hover {
    background: #007336;
    color: #ffffff;

    transform: translateY(-2px);
}

.demo-buy-button span {
    font-size: 19px;
}


/* =====================================================
   BENEFICIOS
===================================================== */

.demo-benefits {
    width: 100%;

    padding: 55px 20px 60px;

    background: #faf9fc;

    text-align: center;
}

.demo-benefits h2 {
    margin: 0 0 35px;

    font-size: 30px;
    line-height: 1.2;

    color: #32156b;

    font-weight: 800;
}

.demo-benefits h2 span {
    color: #00843d;
}


/* =====================================================
   GRID DE BENEFICIOS
===================================================== */

.demo-benefits-grid {
    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.demo-benefit {
    padding: 20px;

    background: #ffffff;

    border: 1px solid #e8e4ed;

    border-radius: 16px;
}

.demo-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0eafb;

    font-size: 27px;
}

.demo-benefit h3 {
    margin: 0 0 8px;

    color: #32156b;

    font-size: 18px;
    font-weight: 800;
}

.demo-benefit p {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.45;
}


/* =====================================================
   CTA FINAL
===================================================== */

.demo-final {
    padding: 60px 20px;

    background: #32156b;

    text-align: center;
}

.demo-final h2 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 32px;
    font-weight: 800;
}

.demo-final p {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: 16px;
}

.demo-final .demo-buy-button {
    background: #65c900;

    box-shadow: none;
}

.demo-final .demo-buy-button:hover {
    background: #58b000;
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 800px) {

    .demo-hero {
        padding: 55px 18px 50px;
    }

    .demo-intro h1 {
        font-size: 38px;
    }

    .demo-intro p {
        font-size: 16px;
    }

    .demo-benefits-grid {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 12px;
    }

    .demo-benefit {
        padding: 15px 10px;
    }

}


/* =====================================================
   RESPONSIVE - CELULAR
===================================================== */

@media (max-width: 600px) {

    .demo-hero {
        padding: 40px 15px 45px;
    }


    .demo-tag {
        font-size: 11px;
        padding: 6px 13px;
    }


    .demo-intro {
        margin-bottom: 25px;
    }


    .demo-intro h1 {
        margin-top: 15px;

        font-size: 31px;
    }


    .demo-intro p {
        font-size: 15px;
        line-height: 1.45;
    }


    /* VIDEO */

    .demo-video-container {
        border-radius: 12px;
    }

    .demo-video {
        width: 100%;
        max-height: none;
    }


    /* BOTÓN */

    .demo-button-container {
        margin-top: 20px;
    }

    .demo-buy-button {
        width: 100%;

        min-width: 0;

        padding: 14px 20px;

        font-size: 15px;
    }


    /* BENEFICIOS */

    .demo-benefits {
        padding: 42px 15px;
    }

    .demo-benefits h2 {
        font-size: 25px;

        margin-bottom: 25px;
    }


    .demo-benefits-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .demo-benefit {
        display: grid;

        grid-template-columns: 55px 1fr;

        grid-template-rows: auto auto;

        column-gap: 14px;

        text-align: left;

        padding: 15px;
    }


    .demo-icon {
        grid-row: 1 / 3;

        width: 50px;
        height: 50px;

        margin: 0;

        font-size: 22px;
    }


    .demo-benefit h3 {
        margin: 3px 0 4px;

        font-size: 16px;
    }


    .demo-benefit p {
        font-size: 13px;
    }


    /* CTA FINAL */

    .demo-final {
        padding: 45px 18px;
    }

    .demo-final h2 {
        font-size: 27px;
    }

    .demo-final p {
        font-size: 14px;
    }

}
/* =====================================================
   CHECKOUT CAHF
===================================================== */

.checkout-page {
    width: 100%;
    background: #ffffff;
    padding: 55px 20px 80px;
}

.checkout-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =====================================================
   ENCABEZADO
===================================================== */

.checkout-heading {
    margin-bottom: 35px;
}

.checkout-heading h1 {
    margin: 0 0 8px;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
    color: #111111;
}

.checkout-heading p {
    margin: 0;
    font-size: 16px;
    color: #555555;
}


/* =====================================================
   DISTRIBUCIÓN
===================================================== */

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 35px;
    align-items: start;
}


/* =====================================================
   TARJETAS
===================================================== */

.checkout-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.checkout-card h2 {
    margin: 0 0 7px;
    font-size: 20px;
    font-weight: 800;
    color: #111111;
}

.checkout-card-description {
    margin: 0 0 22px;
    font-size: 14px;
    color: #666666;
}


/* =====================================================
   FORMULARIO
===================================================== */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    min-width: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 700;
    color: #222222;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;

    border: 1px solid #dcdcdc;
    border-radius: 10px;

    background: #ffffff;

    padding: 12px 14px;

    font-family: inherit;
    font-size: 14px;
    color: #111111;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00843d;
    box-shadow: 0 0 0 3px rgba(0, 132, 61, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}


/* =====================================================
   WHATSAPP
===================================================== */

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon img {
    position: absolute;
    left: 13px;

    width: 20px;
    height: 20px;

    object-fit: contain;
}

.checkout-card .input-with-icon input {
    padding-left: 43px !important;
}


/* =====================================================
   MÉTODOS DE PAGO
===================================================== */

.payment-card {
    margin-bottom: 20px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 17px;

    border: 1px solid #dddddd;
    border-radius: 12px;

    background: #ffffff;

    text-align: left;

    cursor: pointer;

    font-family: inherit;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.payment-option:hover {
    border-color: #00843d;
}

.payment-option.selected {
    border-color: #00843d;
    background: #f7fbf8;
    box-shadow: 0 0 0 2px rgba(0, 132, 61, 0.08);
}

.payment-option-radio {
    width: 19px;
    height: 19px;

    flex: 0 0 19px;

    border: 2px solid #bdbdbd;
    border-radius: 50%;

    box-sizing: border-box;

    position: relative;
}

.payment-option.selected .payment-option-radio {
    border-color: #00843d;
}

.payment-option.selected .payment-option-radio::after {
    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    top: 3px;
    left: 3px;

    border-radius: 50%;

    background: #00843d;
}

.payment-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-option-content strong {
    font-size: 15px;
    color: #111111;
}

.payment-option-content span {
    font-size: 13px;
    line-height: 1.4;
    color: #666666;
}

.payment-message {
    margin: 14px 0 0;

    font-size: 13px;
    color: #666666;
}


/* =====================================================
   RESUMEN
===================================================== */

.checkout-summary {
    position: sticky;
    top: 25px;

    padding: 26px;

    border: 1px solid #dce8df;
    border-radius: 16px;

    background: #f8fbf9;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.checkout-summary h2 {
    margin: 0 0 22px;

    font-size: 21px;
    font-weight: 800;

    color: #111111;
}


/* =====================================================
   PRODUCTOS DEL RESUMEN
===================================================== */

.checkout-product {
    display: grid;

    grid-template-columns: 65px minmax(0, 1fr) auto;

    gap: 12px;

    align-items: center;

    margin-bottom: 14px;
}

.checkout-product-image {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 10px;

    overflow: hidden;
}

.checkout-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

.checkout-product-info {
    min-width: 0;
}

.checkout-product-name {
    margin: 0 0 4px;

    font-size: 14px;
    line-height: 1.25;

    font-weight: 800;

    color: #111111;
}

.checkout-product-quantity {
    margin: 0;

    font-size: 12px;

    color: #666666;
}

.checkout-product-price {
    font-size: 14px;
    font-weight: 800;

    color: #111111;

    white-space: nowrap;
}


/* =====================================================
   RESUMEN
===================================================== */

.summary-divider {
    width: 100%;
    height: 1px;

    background: #dce3de;

    margin: 18px 0;
}

.summary-row {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 14px;

    font-size: 14px;

    color: #555555;
}

.summary-row strong {
    color: #111111;
}

#checkoutShipping {
    max-width: 180px;

    text-align: right;

    font-size: 12px;
    line-height: 1.35;
}

.summary-total {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 0;

    font-size: 20px;
    font-weight: 800;

    color: #111111;
}

.summary-total strong {
    color: #00843d;
    font-size: 24px;
}


/* =====================================================
   BOTÓN CONFIRMAR
===================================================== */

.checkout-confirm-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: none;
    border-radius: 30px;

    padding: 15px 20px;

    background: #00843d;
    color: #ffffff;

    font-family: inherit;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 7px 18px rgba(0, 132, 61, 0.18);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.checkout-confirm-button:hover {
    background: #007336;
    transform: translateY(-1px);
}

.checkout-confirm-button span {
    font-size: 18px;
}

.checkout-confirm-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* =====================================================
   VOLVER
===================================================== */

.checkout-back {
    display: block;

    margin-top: 17px;

    text-align: center;

    color: #555555;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.checkout-back:hover {
    color: #00843d;
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 900px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
        width: 100%;
        box-sizing: border-box;
    }

}


/* =====================================================
   RESPONSIVE - CELULAR
===================================================== */

@media (max-width: 600px) {

    .checkout-page {
        padding: 35px 15px 55px;
    }

    .checkout-heading {
        margin-bottom: 25px;
    }

    .checkout-heading h1 {
        font-size: 30px;
    }

    .checkout-heading p {
        font-size: 14px;
        line-height: 1.4;
    }

    .checkout-card {
        padding: 20px;
    }

    .checkout-card h2 {
        font-size: 19px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group-full {
        grid-column: auto;
    }

    .checkout-summary {
        padding: 20px;
    }

    .checkout-summary h2 {
        font-size: 19px;
    }

    .checkout-product {
        grid-template-columns: 58px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .checkout-product-image {
        width: 58px;
        height: 58px;
    }

    .checkout-product-name {
        font-size: 13px;
    }

    .checkout-product-price {
        font-size: 13px;
    }

    .summary-total {
        font-size: 18px;
    }

    .summary-total strong {
        font-size: 22px;
    }

}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;

    border: 1px solid #dcdcdc;
    border-radius: 10px;

    background-color: #ffffff;

    padding: 12px 14px;

    font-family: inherit;
    font-size: 14px;
    color: #111111;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* =====================================================
   SELECT - CIUDAD
===================================================== */

.form-group select {
    height: 44px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    padding-right: 42px;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300843d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.form-group select:focus {
    border-color: #00843d;

    box-shadow:
        0 0 0 3px rgba(0, 132, 61, 0.08);
}


/* =====================================================
   INPUTS Y TEXTAREA AL HACER FOCUS
===================================================== */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00843d;

    box-shadow:
        0 0 0 3px rgba(0, 132, 61, 0.08);
}
/* =====================================================
   PÁGINA DE GRACIAS
===================================================== */

.thankyou-page {
    width: 100%;
    background: #ffffff;
    padding: 55px 20px 75px;
    box-sizing: border-box;
}

.thankyou-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* =====================================================
   CAFI
===================================================== */

.thankyou-cafi {
    width: 125px;
    height: 125px;
    margin: 0 auto 22px;

    border-radius: 50%;
    overflow: hidden;

    border: 2px solid #8a5cf6;

    background: #f7f4ff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-cafi img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =====================================================
   ENCABEZADO
===================================================== */

.thankyou-heading {
    text-align: center;
    margin-bottom: 30px;
}

.thankyou-heading h1 {
    margin: 0 0 9px;

    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;

    color: #111111;
}

.thankyou-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.5;

    color: #555555;
}


/* =====================================================
   ESTADO DEL PEDIDO
===================================================== */

.thankyou-status {
    width: 100%;
    box-sizing: border-box;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 19px 24px;

    margin-bottom: 30px;

    border-radius: 16px;

    background: #f3faf5;
}

.status-check {
    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #00843d;

    color: #00843d;

    font-size: 22px;
    font-weight: 800;
}

.status-content {
    min-width: 0;
}

.status-content p {
    margin: 0 0 3px;

    font-size: 16px;
    color: #333333;
}

.status-content strong {
    font-size: 16px;
    color: #00843d;
}


/* =====================================================
   TARJETAS
===================================================== */

.thankyou-card {
    width: 100%;
    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e3e8e4;
    border-radius: 17px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.045);

    padding: 30px;

    margin-bottom: 22px;
}


/* =====================================================
   ENCABEZADO RESUMEN
===================================================== */

.thankyou-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 25px;

    margin-bottom: 27px;
}

.thankyou-card-header h2,
.delivery-card h2 {
    margin: 0;

    font-size: 21px;
    line-height: 1.2;

    font-weight: 800;

    color: #111111;
}

.order-meta {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 4px;

    text-align: right;
}

.order-meta strong {
    color: #00843d;

    font-size: 15px;
}

.order-meta span {
    font-size: 13px;
    color: #555555;
}


/* =====================================================
   ENCABEZADO PRODUCTOS
===================================================== */

.order-products-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px 120px;

    gap: 15px;

    padding: 0 0 13px;

    border-bottom: 1px solid #e2e6e3;

    font-size: 13px;
    font-weight: 700;

    color: #555555;
}

.order-products-header span:nth-child(2),
.order-products-header span:nth-child(3) {
    text-align: right;
}


/* =====================================================
   PRODUCTOS
===================================================== */

.thankyou-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px 120px;

    align-items: center;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid #eeeeee;
}

.thankyou-product-info {
    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 0;
}

.thankyou-product-image {
    width: 65px;
    height: 65px;

    flex: 0 0 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7faf8;

    border-radius: 10px;

    overflow: hidden;
}

.thankyou-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

.thankyou-product-name {
    min-width: 0;
}

.thankyou-product-name strong {
    display: block;

    margin-bottom: 4px;

    font-size: 16px;
    line-height: 1.3;

    color: #111111;
}

.thankyou-product-name span {
    font-size: 13px;
    color: #666666;
}

.thankyou-product-quantity,
.thankyou-product-total {
    text-align: right;

    font-size: 15px;
    font-weight: 700;

    color: #222222;
}


/* =====================================================
   TOTALES
===================================================== */

.order-totals {
    width: 100%;
    max-width: 350px;

    margin: 20px 0 0 auto;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 11px;

    font-size: 15px;

    color: #555555;
}

.order-total-row strong {
    color: #111111;
}

.order-total-divider {
    width: 100%;
    height: 1px;

    background: #dfe5e1;

    margin: 17px 0;
}

.order-grand-total {
    margin-bottom: 0;

    font-size: 20px;
    font-weight: 800;

    color: #111111;
}

.order-grand-total strong {
    color: #00843d;

    font-size: 25px;
}


/* =====================================================
   MÉTODO DE PAGO
===================================================== */

.payment-method {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid #eeeeee;

    font-size: 15px;
}

.payment-method span {
    color: #333333;
}

.payment-method strong {
    color: #00843d;
}

.payment-note {
    margin: 7px 0 0;

    font-size: 14px;

    color: #555555;
}


/* =====================================================
   DATOS DE ENTREGA
===================================================== */

.delivery-card h2 {
    margin-bottom: 25px;
}

.delivery-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 50px;
    row-gap: 21px;
}

.delivery-field {
    min-width: 0;
}

.delivery-field span {
    display: block;

    margin-bottom: 5px;

    font-size: 12px;
    font-weight: 700;

    color: #555555;
}

.delivery-field strong {
    display: block;

    font-size: 15px;
    line-height: 1.4;

    color: #222222;

    font-weight: 500;

    word-break: break-word;
}

.delivery-field-full {
    grid-column: 1 / -1;
}


/* =====================================================
   ACCIONES
===================================================== */

.thankyou-actions {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 17px;

    margin-top: 28px;
}

.thankyou-store-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 250px;

    padding: 14px 25px;

    border-radius: 30px;

    background: #00843d;
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    box-shadow:
        0 7px 18px rgba(0, 132, 61, 0.18);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.thankyou-store-button:hover {
    background: #007336;

    transform: translateY(-1px);
}

.thankyou-store-button span {
    font-size: 18px;
}


/* =====================================================
   WHATSAPP
===================================================== */

.thankyou-whatsapp {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #555555;

    text-decoration: none;

    font-size: 14px;

    text-align: center;
}

.thankyou-whatsapp img {
    width: 23px;
    height: 23px;

    object-fit: contain;
}

.thankyou-whatsapp strong {
    color: #7650d8;
}

.thankyou-whatsapp:hover strong {
    color: #00843d;
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 750px) {

    .thankyou-page {
        padding: 45px 18px 60px;
    }

    .thankyou-heading h1 {
        font-size: 34px;
    }

    .thankyou-card {
        padding: 24px;
    }

    .delivery-grid {
        column-gap: 30px;
    }

}


/* =====================================================
   RESPONSIVE - CELULAR
===================================================== */

@media (max-width: 600px) {

    .thankyou-page {
        padding: 35px 15px 50px;
    }


    /* Cafi */

    .thankyou-cafi {
        width: 105px;
        height: 105px;

        margin-bottom: 18px;
    }


    /* Título */

    .thankyou-heading {
        margin-bottom: 23px;
    }

    .thankyou-heading h1 {
        font-size: 29px;
        line-height: 1.15;
    }

    .thankyou-heading p {
        font-size: 14px;
    }


    /* Estado */

    .thankyou-status {
        align-items: flex-start;

        padding: 16px;

        gap: 12px;
    }

    .status-check {
        width: 32px;
        height: 32px;

        font-size: 18px;
    }

    .status-content p,
    .status-content strong {
        font-size: 14px;
    }


    /* Tarjetas */

    .thankyou-card {
        padding: 19px;

        border-radius: 14px;
    }


    /* Resumen */

    .thankyou-card-header {
        flex-direction: column;

        gap: 12px;

        margin-bottom: 22px;
    }

    .thankyou-card-header h2,
    .delivery-card h2 {
        font-size: 19px;
    }

    .order-meta {
        align-items: flex-start;

        text-align: left;
    }


    /* Productos */

    .order-products-header {
        grid-template-columns: minmax(0, 1fr) 55px 85px;

        gap: 8px;

        font-size: 11px;
    }

    .thankyou-product {
        grid-template-columns: minmax(0, 1fr) 55px 85px;

        gap: 8px;

        padding: 14px 0;
    }

    .thankyou-product-info {
        gap: 9px;
    }

    .thankyou-product-image {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

    .thankyou-product-name strong {
        font-size: 13px;
    }

    .thankyou-product-name span {
        font-size: 11px;
    }

    .thankyou-product-quantity,
    .thankyou-product-total {
        font-size: 12px;
    }


    /* Totales */

    .order-totals {
        max-width: none;
    }

    .order-grand-total {
        font-size: 18px;
    }

    .order-grand-total strong {
        font-size: 22px;
    }


    /* Pago */

    .payment-method {
        flex-wrap: wrap;

        font-size: 14px;
    }


    /* Datos */

    .delivery-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .delivery-field-full {
        grid-column: auto;
    }


    /* Botón */

    .thankyou-store-button {
        width: 100%;
        min-width: 0;

        box-sizing: border-box;
    }

    .thankyou-whatsapp {
        font-size: 13px;

        line-height: 1.4;
    }

}

footer,
.site-footer,
.cahf-footer {
    background-color: #056b2f !important;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin: 25px 0 35px;
}

/* =====================================================
   BANNERS INFORMATIVOS - CAHF
===================================================== */

.cahf-info-banner {
    width: 100%;
    padding: 28px 20px;
    margin: 35px 0;
}

.cahf-info-banner-content {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 24px;

    padding: 28px 35px;

    border-radius: 20px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}

.cahf-benefits-banner .cahf-info-banner-content {
    background: linear-gradient(
        135deg,
        #eefaf3 0%,
        #ffffff 100%
    );

    border: 1px solid #d9eee1;
}

.cahf-how-banner .cahf-info-banner-content {
    background: linear-gradient(
        135deg,
        #eef8fc 0%,
        #ffffff 100%
    );

    border: 1px solid #d8eaf0;
}

.cahf-info-banner-icon {
    width: 64px;
    height: 64px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cahf-info-banner-text {
    flex: 1;
}

.cahf-info-banner-text h2 {
    margin: 0 0 8px;

    font-size: 24px;
    line-height: 1.25;

    color: #173b2b;
}

.cahf-info-banner-text p {
    margin: 0;

    font-size: 16px;
    line-height: 1.6;

    color: #52635a;
}

.cahf-info-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    flex-shrink: 0;

    padding: 14px 22px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;
    font-size: 15px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cahf-benefits-banner .cahf-info-banner-button {
    background: #173b2b;
    color: #ffffff;
}

.cahf-how-banner .cahf-info-banner-button {
    background: #1c6475;
    color: #ffffff;
}

.cahf-info-banner-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.15);
}

.cahf-info-banner-button span {
    font-size: 18px;
}


/* =====================================================
   BANNERS - CELULAR
===================================================== */

@media (max-width: 700px) {

    .cahf-info-banner {
        padding: 20px 15px;
        margin: 25px 0;
    }

    .cahf-info-banner-content {
        flex-direction: column;

        text-align: center;

        padding: 28px 22px;

        gap: 16px;

        border-radius: 18px;
    }

    .cahf-info-banner-icon {
        width: 58px;
        height: 58px;

        font-size: 30px;
    }

    .cahf-info-banner-text h2 {
        font-size: 21px;
    }

    .cahf-info-banner-text p {
        font-size: 15px;
        line-height: 1.5;
    }

    .cahf-info-banner-button {
        width: 100%;
        max-width: 280px;

        padding: 14px 20px;
    }

}

.product-old-price {
    position: relative;
    display: inline-block;

    margin: 0 0 2px;

    color: #888888;

    font-size: 14px;
    font-weight: 600;
}

.product-old-price::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background: #888888;
}