*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

#app {
    width: 100%;
    overflow-x: hidden;
    display: block;
}

:root {
    --teal: #00b8c8;
    --teal-dark: #007a87;
    --teal-light: #e0f7fa;
    --cream: #f7f5f0;
    --white: #ffffff;
    --dark: #1a2329;
    --mid: #4a5568;
    --light: #8a9bb0;
    --gold: #c8a84b;
    --border: rgba(0,184,200,0.2);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #003d45 0%, #007a87 45%, #00b8c8 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 8vw;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='28' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
        background-size: 80px 80px;
    }

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,184,200,0.2) 0%, transparent 70%);
    right: -100px;
    top: -100px;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}

    .hero-badge span {
        width: 6px;
        height: 6px;
        background: var(--teal);
        border-radius: 50%;
    }

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    color: white;
    line-height: 1.05;
    animation: fadeUp 0.8s 0.15s ease both;
}

    .hero h1 em {
        font-style: italic;
        color: #7ee8f3;
    }

.hero-sub {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 420px;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-cta {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
    background: white;
    color: var(--teal-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.1);
    }

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 36px;
    max-width: 340px;
    width: 100%;
}

    .hero-card h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 400;
        color: white;
        margin-bottom: 20px;
    }

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .benefit-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        color: rgba(255,255,255,0.85);
    }

        .benefit-list li::before {
            content: '';
            width: 24px;
            height: 24px;
            background: rgba(0,184,200,0.25);
            border: 1px solid rgba(0,184,200,0.5);
            border-radius: 50%;
            flex-shrink: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300b8c8' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

/* ── SECTION COMMON ── */
section {
    padding: 100px 8vw;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.15;
    max-width: 580px;
}

    .section-title em {
        font-style: italic;
        color: var(--teal-dark);
    }

/* ── TECHNOLOGY STRIP ── */
.tech-strip {
    background: var(--dark);
    padding: 28px 8vw;
    overflow: hidden;
}

.tech-marquee {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

    .tech-item .dot {
        width: 5px;
        height: 5px;
        background: var(--teal);
        border-radius: 50%;
    }

/* ── BENEFITS ── */
.benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    margin-top: 60px;
    border: 1px solid #e8eaed;
}

.benefit-card {
    padding: 36px 28px;
    background: white;
    border: 1px solid #e8eaed;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .benefit-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--teal);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .benefit-card:hover {
        background: #f8fffe;
    }

        .benefit-card:hover::after {
            transform: scaleX(1);
        }

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
}

.benefit-card h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.benefit-card p {
    font-size: 12px;
    color: var(--light);
    line-height: 1.6;
}

/* ── PRODUCTS ── */
.products {
    background: var(--cream);
}

.products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
}

    .products-header p {
        font-size: 14px;
        color: var(--mid);
        line-height: 1.75;
    }

/* ── PRODUCT CARD ── */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(0,60,70,0.12);
    }

.product-visual {
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .product-visual.homecare {
        background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    }

    .product-visual.berco {
        background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    }

    .product-visual.almofada {
        background: linear-gradient(135deg, #fff8e1 0%, #ffe082 60%);
    }

    .product-visual.capa {
        background: linear-gradient(135deg, #f3e5f5 0%, #ce93d8 60%);
    }

.product-emoji {
    font-size: 80px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
    transition: transform 0.4s;
}

.product-card:hover .product-emoji {
    transform: scale(1.1) rotate(-3deg);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--teal);
    color: white;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 500;
}

    .product-badge.premium {
        background: var(--gold);
    }

    .product-badge.new {
        background: #2e7d32;
    }

.product-body {
    padding: 28px;
}

    .product-body h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 400;
        color: var(--dark);
        margin-bottom: 4px;
    }

.product-dims {
    font-size: 11px;
    color: var(--light);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.product-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.tag {
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

    .tag.health {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .tag.safety {
        background: #fff3e0;
        color: #e65100;
    }

.product-pricing {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f8f8f8;
}

    .price-option:last-child {
        border-bottom: none;
    }

.price-label {
    font-size: 12px;
    color: var(--mid);
}

.price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--teal-dark);
}

    .price-value small {
        font-size: 13px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 400;
        color: var(--light);
    }

/* ── PRODUCT GRID LAYOUTS ── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-section {
    margin-bottom: 80px;
}

.product-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

    .product-section-title::before {
        content: '';
        width: 4px;
        height: 28px;
        background: var(--teal);
        border-radius: 2px;
    }

/* ── FEATURED CARD (wide) ── */
.product-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

    .product-card.featured .product-visual {
        height: auto;
        min-height: 280px;
    }

/* ── SCIENCE SECTION ── */
.science {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

    .science::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(0,184,200,0.15)'/%3E%3C/svg%3E");
    }

.science-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.science-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 48px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    color: var(--teal);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    max-width: 260px;
    line-height: 1.6;
}


.science .section-title {
    color: white;
    max-width: 460px;
}

    .science .section-title em {
        color: var(--teal);
    }

.science p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 20px;
}

.science-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.science-feat {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

    .science-feat h5 {
        font-size: 13px;
        color: var(--teal);
        margin-bottom: 6px;
        font-weight: 500;
    }

/* ── LAUDO CARD ── */
.laudo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

    .laudo-card:hover {
        transform: scale(1.02);
    }

    .laudo-card img {
        width: 100%;
        display: block;
        border-radius: 16px;
    }

.laudo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    transition: background 0.3s;
}

.laudo-card:hover .laudo-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,60,70,0.2) 100%);
}

.laudo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal);
    color: white;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

    .laudo-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: white;
        border-radius: 50%;
    }

.laudo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin-bottom: 6px;
}

.laudo-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
}

.laudo-corner-logo {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 9px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.08em;
}

.science-feat p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 0;
}
/* ── COMPARISON TABLE ── */
.compare {
    background: white;
}

.compare-table {
    margin-top: 56px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8eaed;
}

    .compare-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .compare-table thead tr {
        background: var(--dark);
    }

    .compare-table th {
        padding: 18px 24px;
        text-align: left;
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.7);
        font-weight: 400;
    }

        .compare-table th.ccore-col {
            background: var(--teal);
            color: white;
            text-align: center;
        }

        .compare-table th.foam-col {
            text-align: center;
        }

    .compare-table td {
        padding: 14px 24px;
        font-size: 13px;
        color: var(--mid);
        border-bottom: 1px solid #f0f0f0;
    }

        .compare-table td.ccore-val, .compare-table td.foam-val {
            text-align: center;
            font-size: 18px;
        }

        .compare-table td.ccore-val {
            background: rgba(0,184,200,0.05);
        }

    .compare-table tbody tr:last-child td {
        border-bottom: none;
    }

    .compare-table tbody tr:hover td {
        background: #fafafa;
    }

        .compare-table tbody tr:hover td.ccore-val {
            background: rgba(0,184,200,0.08);
        }

.check {
    color: var(--teal);
}

.cross {
    color: #e53e3e;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    padding: 60px 8vw;
    color: rgba(255,255,255,0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}

.footer-brand h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: white;
    font-weight: 300;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 280px;
}

footer h4 {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    footer ul li {
        font-size: 13px;
    }

        footer ul li a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

            footer ul li a:hover {
                color: var(--teal);
            }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-contact a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 13px;
    }

        .footer-contact a:hover {
            color: var(--teal);
        }

.teal-text {
    color: var(--teal);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 80px 6vw;
        gap: 48px;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .products-header, .science-grid, .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .product-card.featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    section {
        padding: 60px 5vw;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .science-features {
        grid-template-columns: 1fr;
    }
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,61,69,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: white;
    text-decoration: none;
}

    .nav-brand span {
        color: var(--teal);
    }

.nav-links {
    display: flex;
    gap: 32px;
}

    .nav-links a {
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: white;
        }

.nav-cta {
    background: var(--teal);
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
}

    .nav-cta:hover {
        background: var(--teal-dark) !important;
        color: white !important;
    }

@media (max-width: 700px) {
    .nav-links {
        display: none;
    }
}






.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white !important;
    padding: 9px 18px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
}

    .nav-whatsapp:hover {
        background: #1ebe5d;
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(37,211,102,0.35);
    }

/* ── CARROSSEL ── */
.carousel-section {
    background: var(--dark);
    padding: 60px 8vw;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .carousel-btn:hover {
        background: var(--teal);
        border-color: var(--teal);
        transform: translateY(-50%) scale(1.1);
    }

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

    .carousel-dot.active {
        background: var(--teal);
        width: 24px;
        border-radius: 4px;
    }

/* ── MESH SECTION ── */
.mesh-section {
    background: var(--cream);
    padding: 100px 8vw;
}

.mesh-eyebrow {
    margin-bottom: 60px;
}

/* Hero split */
.mesh-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 72px;
}

.mesh-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 40px;
}

    .mesh-intro strong {
        color: var(--teal-dark);
        font-weight: 600;
    }

.mesh-stat-row {
    display: flex;
    gap: 32px;
}

.mesh-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mesh-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--teal);
    line-height: 1;
}

.mesh-stat-label {
    font-size: 12px;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Fabric Visual */
.mesh-fabric-visual {
    position: relative;
    height: 300px;
    border-radius: 20px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.mesh-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,184,200,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(0,184,200,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    animation: meshShift 8s linear infinite;
}

@keyframes meshShift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 28px 28px;
    }
}

.mesh-center-badge {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(0,184,200,0.35);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
}

.mesh-badge-icon {
    font-size: 36px;
    margin-bottom: 4px;
}

.mesh-center-badge span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: white;
}

.mesh-center-badge small {
    font-size: 11px;
    color: var(--teal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mesh-arrow {
    position: absolute;
    font-size: 11px;
    color: var(--teal);
    letter-spacing: 0.06em;
    font-weight: 500;
    animation: arrowPulse 2s ease-in-out infinite;
}

.mesh-arrow-1 {
    bottom: 28px;
    left: 20px;
}

.mesh-arrow-2 {
    bottom: 28px;
    right: 20px;
}

.mesh-arrow-3 {
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Benefit Cards */
.mesh-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.mesh-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

    .mesh-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,60,70,0.1);
    }

.mesh-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.mesh-card-body h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.mesh-card-body p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.75;
}

/* Comparativo */
.mesh-compare {
    background: var(--dark);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
}

.mesh-compare-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    color: white;
    margin-bottom: 28px;
    text-align: center;
}

.mesh-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mesh-compare-col {
    border-radius: 12px;
    overflow: hidden;
}

.mesh-compare-header {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mesh-col-mesh .mesh-compare-header {
    background: var(--teal);
    color: white;
}

.mesh-col-conv .mesh-compare-header {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

.mesh-compare-col ul {
    list-style: none;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mesh-col-mesh ul {
    background: rgba(0,184,200,0.08);
    border: 1px solid rgba(0,184,200,0.2);
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.mesh-col-conv ul {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.mesh-col-mesh li {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.mesh-col-conv li {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* Callout */
.mesh-callout {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.mesh-callout-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.mesh-callout-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .mesh-callout-text strong {
        font-size: 15px;
        color: var(--dark);
    }

    .mesh-callout-text span {
        font-size: 13px;
        color: var(--mid);
        line-height: 1.6;
    }

.mesh-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
    flex-shrink: 0;
}

    .mesh-cta-btn:hover {
        background: #1ebe5d;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37,211,102,0.35);
    }

/* Responsive */
@media (max-width: 900px) {
    .mesh-hero {
        grid-template-columns: 1fr;
    }

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

    .mesh-compare-grid {
        grid-template-columns: 1fr;
    }

    .mesh-callout {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .mesh-cards {
        grid-template-columns: 1fr;
    }

    .mesh-stat-row {
        gap: 20px;
    }

    .mesh-compare {
        padding: 28px 20px;
    }
}

/* ── BENEFÍCIOS CLÍNICOS ── */
.clinical-block {
    margin-top: 80px;
    background: var(--dark);
    border-radius: 24px;
    padding: 60px 52px;
    position: relative;
    overflow: hidden;
}

    .clinical-block::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(0,184,200,0.12)'/%3E%3C/svg%3E");
        pointer-events: none;
    }

    .clinical-block::after {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,184,200,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

.clinical-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.clinical-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,184,200,0.15);
    border: 1px solid rgba(0,184,200,0.3);
    color: var(--teal);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    white-space: nowrap;
}

    .clinical-tag::before {
        content: '+';
        font-size: 14px;
        font-weight: 300;
    }

.clinical-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 300;
    color: white;
    line-height: 1.2;
}

    .clinical-title em {
        font-style: italic;
        color: var(--teal);
    }

/* Cards */
.clinical-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.clinical-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

    .clinical-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--teal), transparent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .clinical-card:hover {
        background: rgba(0,184,200,0.08);
        border-color: rgba(0,184,200,0.25);
        transform: translateY(-4px);
    }

        .clinical-card:hover::after {
            transform: scaleX(1);
        }

.clinical-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.clinical-line {
    width: 32px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.clinical-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.clinical-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
}

    .clinical-card p strong {
        color: rgba(255,255,255,0.9);
        font-weight: 500;
    }

/* Footer stat */
.clinical-footer {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

.clinical-footer-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.clinical-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: var(--teal);
    line-height: 1;
}

.clinical-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.clinical-footer-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.clinical-footer-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
}

    .clinical-footer-text strong {
        color: rgba(255,255,255,0.85);
        font-weight: 500;
    }

/* Responsive */
@media (max-width: 900px) {
    .clinical-block {
        padding: 40px 28px;
    }

    .clinical-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .clinical-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .clinical-footer-divider {
        width: 40px;
        height: 1px;
    }
}
/* ===== FULLSCREEN ===== */
.ccore-boot {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    background: #0f172a;
    overflow: hidden;
}

/* ===== BACKGROUND GLOW ===== */
.ccore-boot-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,200,255,0.25) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,100% {
        transform: scale(1);
        opacity: .6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* ===== CARD ===== */
.ccore-boot-card {
    position: relative;
    width: 380px;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ===== LOGO ===== */
.ccore-boot-mark img {
    width: 70px;
    margin-bottom: 20px;
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ===== TITLE ===== */
.ccore-boot-title strong {
    display: block;
    font-size: 22px;
    letter-spacing: 2px;
}

.ccore-boot-title span {
    display: block;
    font-size: 14px;
    opacity: .7;
}

.ccore-boot-sub {
    margin-top: 10px;
    font-size: 13px;
    opacity: .6;
}

/* ===== PROGRESS BAR ===== */
.ccore-boot-bar {
    margin: 25px 0;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.ccore-boot-bar-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 50px;
    animation: loadingBar 2s ease-in-out infinite;
}

@keyframes loadingBar {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* ===== PILLS ===== */
.ccore-boot-hints {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ccore-pill {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ===== FOOTER DOTS ===== */
.ccore-boot-dots i {
    width: 6px;
    height: 6px;
    margin: 0 3px;
    display: inline-block;
    background: #00c6ff;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

    .ccore-boot-dots i:nth-child(2) {
        animation-delay: .2s;
    }

    .ccore-boot-dots i:nth-child(3) {
        animation-delay: .4s;
    }

@keyframes blink {
    0%,100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}