@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
    /* Linus Mais — branco, cinza e vermelho nos detalhes */
    --color-primary: #B91C1C;
    --color-primary-light: #DC2626;
    --color-secondary: #6b7280;
    --color-accent: #e5e7eb;
    --color-dark: #1f2937;
    --color-light: #ffffff;
    --color-gray: #6b7280;
    --color-gray-light: #9ca3af;
    --color-bg-light: #f9fafb;
    --color-bg-soft: #f3f4f6;
    --color-surface: #ffffff;
    --color-surface-elevated: #ffffff;
    --color-border: #e5e7eb;
    --color-border-strong: #d1d5db;
    
    /* Spacing & Borders */
    --section-padding: clamp(48px, 8vw, 100px) 0;
    --container-padding: clamp(16px, 4vw, 24px);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --header-height: 72px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    padding-top: var(--header-height);
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(26px, 4.5vw, 42px);
    color: var(--color-dark);
    margin-bottom: clamp(16px, 3vw, 24px);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: var(--section-padding);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Header & Nav */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5100;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--color-border);
}

#header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    position: relative;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 32px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-secondary);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-img--horizontal {
    height: 38px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.nav-cta--mobile {
    display: none;
}

.btn-accent {
    background: var(--color-dark);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
}

.btn-accent:hover {
    background: white;
    color: var(--color-dark);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--color-dark);
    color: white;
}

.btn-primary:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ========== Hero — primeira dobra (banner + faixa de benefícios) ========== */
.hero-fold {
    height: calc(100vh - var(--header-height));
    height: calc(100svh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    scroll-margin-top: var(--header-height);
}

.hero-banner {
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    background-color: #ffffff;
    background-image:
        linear-gradient(
            100deg,
            #ffffff 0%,
            #ffffff 38%,
            rgba(255, 255, 255, 0.97) 48%,
            rgba(255, 255, 255, 0.75) 58%,
            rgba(255, 255, 255, 0.25) 72%,
            transparent 85%
        ),
        url('../img/bg_coracao_linus_mais.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.hero-banner__slider {
    position: relative;
    z-index: 1;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(8px, 1.2vh, 16px) 0 clamp(6px, 1vh, 12px);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.5vw, 32px);
    align-items: center;
    width: 100%;
    max-height: 100%;
    min-height: 0;
    overflow: hidden;
}

.hero-slide__content {
    min-height: 0;
    overflow: hidden;
}

.hero-slide__title {
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: clamp(12px, 2.5vh, 24px);
    letter-spacing: -0.03em;
}

.hero-slide__title-accent {
    color: var(--color-primary);
}

.hero-slide__price {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-secondary);
    margin-bottom: clamp(14px, 2.5vh, 28px);
    font-weight: 500;
}

.hero-slide__price strong {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.hero-slide__price span {
    font-size: 18px;
    color: var(--color-gray-light);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--color-dark);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--color-primary);
    color: white;
}

/* Visual: cartão + cards de preço */
.hero-slide__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    max-height: min(36vh, 280px);
    overflow: hidden;
}

.hero-slide__card {
    max-width: min(300px, 34vw);
    max-height: min(32vh, 240px);
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
    position: relative;
    z-index: 2;
}

.hero-slide__impact {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.55;
    color: var(--color-secondary);
    margin-bottom: clamp(14px, 2.5vh, 24px);
    max-width: 480px;
}

.hero-slide__inner--brand {
    grid-template-columns: 1.05fr 0.95fr;
}

.hero-slide__visual--brand {
    justify-content: flex-start;
    max-height: min(44vh, 360px);
}

.hero-slide__content--brand {
    text-align: left;
}

.hero-slide__content--brand .hero-slide__impact {
    max-width: none;
}

.hero-slide__brand-logo {
    display: block;
    height: clamp(120px, 24vh, 240px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: none;
}

.hero-price-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-price-card {
    position: absolute;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: clamp(10px, 1.5vw, 16px) clamp(12px, 2vw, 20px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    min-width: clamp(110px, 12vw, 140px);
    max-width: 160px;
    z-index: 3;
    top: 8%;
    left: 0;
}

.hero-price-card--secondary {
    bottom: 5%;
    right: 0;
    top: auto;
    left: auto;
}

.hero-price-card__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray-light);
    margin-bottom: 6px;
}

.hero-price-card__from {
    display: block;
    font-size: 10px;
    color: var(--color-gray-light);
    margin-bottom: 2px;
}

.hero-price-card__value {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.hero-price-card__value .currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 6px;
}

.hero-price-card__value .amount {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: -2px;
}

.hero-price-card__value .amount--text {
    font-size: clamp(26px, 3.5vw, 42px);
    color: var(--color-primary);
}

.hero-price-card__desc {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-top: 4px;
}

/* Controles do slider */
.hero-banner__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 4px 0 10px;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    background: transparent;
}

.hero-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border-strong);
    background: white;
    color: var(--color-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.hero-nav:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--color-border-strong);
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.hero-dot.is-active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Faixa de benefícios — rodapé da 1ª dobra */
.hero-benefits-strip {
    flex-shrink: 0;
    background: white;
    border-top: 1px solid var(--color-border);
    padding: 12px 0 14px;
    position: relative;
    z-index: 5;
    overflow: visible;
}

.hero-benefits-strip .container {
    overflow: visible;
}

.hero-benefits-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-benefits-track::-webkit-scrollbar {
    display: none;
}

.hero-benefit-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 8px;
    min-width: 120px;
    max-width: 145px;
    padding: 12px 10px;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    scroll-snap-align: start;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-benefit-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(185, 28, 28, 0.08);
}

.hero-benefit-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 18px;
}

.hero-benefit-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.hero-benefit-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    text-align: center;
}

.hero-benefit-desc {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    color: var(--color-gray);
    text-align: center;
}

.cards-stack {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    width: 320px;
    border-radius: var(--radius-md);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.45);
    transition: transform 0.5s ease;
}

.card-top {
    transform: rotate(-10deg) translateY(-20px) translateX(-20px);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.card-bottom {
    transform: rotate(5deg) translateY(40px) translateX(40px);
    z-index: 1;
    opacity: 0.9;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}


.hero-card {
    background: var(--color-surface-elevated);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.hero-card .label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gray);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-card .price {
    font-size: 42px;
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
}

.hero-card .price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gray);
}

.hero-card .benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary-light);
}

.hero-card .benefit i {
    font-size: 18px;
}



.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
    z-index: 1;
    position: relative;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* Feature Grid */
.features {
    background: var(--color-surface);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--color-surface-elevated);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}



.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(185, 28, 28, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--color-primary-light);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.feature-card p {
    color: var(--color-gray);
    font-size: 14px;
}

/* Apresentação do cartão */
.card-intro {
    background: var(--color-bg-soft);
    position: relative;
    z-index: 10;
}

.card-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

/* Stat Cards (Left) */
.card-intro__content {
    padding-right: 40px;
}

.card-intro__logo {
    display: block;
    height: 42px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 20px;
}

.card-intro__content h2 {
    font-size: clamp(26px, 4.5vw, 42px);
    margin: 20px 0;
    color: var(--color-dark);
}

.card-intro__content p {
    color: var(--color-gray);
    margin-bottom: 40px;
}

.stat-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-elevated);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.stat-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.stat-card h3 {
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.stat-card span {
    font-size: 12px;
    color: var(--color-gray);
    display: block;
}

.stat-card-highlight {
    background: rgba(185, 28, 28, 0.15);
    border: 1px solid var(--color-primary);
}

.stat-card-highlight i {
    color: var(--color-primary-light);
    opacity: 1;
}

.stat-card-highlight h3 {
    color: var(--color-primary-light);
}

.card-intro__quote {
    border-left: 3px solid var(--color-primary);
    padding-left: 24px;
    margin-top: 40px;
}

.card-intro__quote p {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 0;
}

/* Vantagens do cartão (coluna direita) */
.card-advantages {
    background: var(--color-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: var(--shadow-md);
}

.card-advantages__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-align: center;
}

.card-advantages__list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.card-advantage {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.card-advantage__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-primary);
    font-size: 18px;
}

.card-advantage__text {
    flex: 1;
    min-width: 0;
}

.card-advantage strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2px;
    line-height: 1.35;
}

.card-advantage__text span {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-gray);
}

.card-advantages__actions {
    display: flex;
    justify-content: center;
}

.card-advantages__actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.stat-card-highlight i {
    color: var(--color-primary);
    background: rgba(185, 28, 28, 0.08);
    border-radius: 10px;
}

.stat-card-highlight h3 {
    color: var(--color-primary);
}

/* Formulário (legado — removido da página) */
.lead-form-premium {
    background: var(--color-surface-elevated);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-strong);
    background: var(--color-bg-soft);
    color: var(--color-dark);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--color-gray);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.2);
}

.form-label-bold {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
    color: var(--color-dark);
}

.form-lgpd {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: flex-start;
}

.form-lgpd input {
    margin-top: 4px;
    width: auto;
    accent-color: var(--color-primary);
}

.form-lgpd label a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.form-lgpd label a:hover {
    color: var(--color-primary-light);
}

.form-lgpd label {
    font-size: 11px;
    color: var(--color-gray);
    line-height: 1.4;
}

.form-group-flex {
    display: flex;
    gap: 12px;
}

.btn-premium {
    background: var(--color-dark);
    color: white;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--color-gray);
}

.split-grid.reverse {
    direction: rtl;
}

.split-grid.reverse .split-content {
    direction: ltr;
}

.split-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.split-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-visual img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(185, 28, 28, 0.2);
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-soft {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.05); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0.4; }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.heart-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.heart-1 {
    top: 15%;
    left: 5%;
    width: 60px;
    animation: float 8s ease-in-out infinite;
}

.heart-2 {
    bottom: 20%;
    left: 40%;
    width: 40px;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.heart-pulse {
    top: 50%;
    right: 5%;
    width: 300px;
    opacity: 0.05;
    animation: pulse-soft 4s ease-in-out infinite;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.section-badge {
    text-align: center;
    color: var(--color-gray);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    transition: opacity 0.3s ease;
}

.partner-logos img {
    height: 56px;
    width: auto;
    opacity: 0.95;
}

/* Pricing Plans Section */
/* ========== Cobertura Clínica Linus ========== */
.clinic-coverage {
    background: var(--color-light);
}

#clinica-linus {
    border-top: 4px solid var(--color-primary);
    border-bottom: 4px solid var(--color-primary);
    box-shadow:
        inset 0 6px 10px -6px rgba(185, 28, 28, 0.35),
        inset 0 -6px 10px -6px rgba(185, 28, 28, 0.35);
}

.clinic-coverage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

.clinic-coverage__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.clinic-coverage__brand {
    display: inline-block;
    margin-bottom: 8px;
}

.clinic-coverage__brand:hover {
    opacity: 0.85;
}

.clinic-coverage__logo {
    display: block;
    height: 52px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.clinic-coverage__since {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.clinic-coverage__title {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
    color: var(--color-dark);
}

.clinic-coverage__lead {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 20px;
    max-width: 480px;
}

.clinic-coverage__list {
    list-style: disc;
    padding-left: 1.2em;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.clinic-coverage__list li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-dark);
}

.btn-clinic-site {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-dark);
    color: var(--color-light);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
}

.btn-clinic-site:hover {
    background: var(--color-primary);
    color: var(--color-light);
}

.clinic-coverage__carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.clinic-coverage__slides {
    position: relative;
    width: 100%;
    min-height: 220px;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.clinic-coverage__slide {
    display: none;
    position: absolute;
    inset: 0;
    align-items: stretch;
}

.clinic-coverage__slide.is-active {
    display: flex;
}

.clinic-coverage__slide-body {
    padding: 28px 32px;
    width: 100%;
}

.clinic-coverage__slide-meta {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.clinic-coverage__slide-body h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.clinic-coverage__slide-address {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.clinic-coverage__slide-hours {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray);
}

.clinic-coverage__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border-strong);
    background: var(--color-light);
    color: var(--color-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-coverage__nav:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.clinic-coverage__nav--prev {
    left: -12px;
}

.clinic-coverage__nav--next {
    right: -12px;
}

.clinic-coverage__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

.clinic-coverage__dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background: var(--color-border-strong);
    padding: 0;
    cursor: pointer;
}

.clinic-coverage__dot.is-active {
    background: var(--color-primary);
}

.pricing-plans {
    padding: 80px 0;
    background: var(--color-bg-soft);
    scroll-margin-top: 90px;
}

.pricing-plans__header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-plans__title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 10px 18px;
    margin-bottom: 12px;
    line-height: 1;
}

.pricing-plans__heading-text {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.pricing-plans__logo {
    height: clamp(85px, 6vw, 76px);
    width: auto;
    display: block;
    align-self: baseline;
    transform: translateY(0.28em);
}

.pricing-plans__header p {
    font-size: 18px;
    color: var(--color-secondary);
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 28px;
}

.pricing-grid--dual {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.plan-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    color: var(--color-dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.plan-card__badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.plan-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.plan-card--highlight .plan-card__icon,
.plan-card--featured .plan-card__icon {
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

.plan-card__name {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.plan-card__tier {
    font-size: 14px;
    color: var(--color-gray-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-card__price {
    margin-bottom: 16px;
}

.plan-card__amount {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.plan-card__amount--sm {
    font-size: 26px;
}

.plan-card--highlight .plan-card__amount,
.plan-card--featured .plan-card__amount {
    color: white;
}

.plan-card__period {
    font-size: 13px;
    color: var(--color-gray-light);
    font-weight: 500;
}

.plan-card--highlight .plan-card__period,
.plan-card--featured .plan-card__period {
    color: rgba(255, 255, 255, 0.75);
}

.plan-card__divider {
    border: none;
    height: 1px;
    background: var(--color-border);
    margin: 0 0 20px;
}

.plan-card--highlight .plan-card__divider,
.plan-card--featured .plan-card__divider {
    background: rgba(255, 255, 255, 0.2);
}

.plan-features {
    flex: 1;
    margin-bottom: 24px;
}

.plan-features__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.plan-features__item i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 1px;
}

.plan-features__item--yes i {
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
}

.plan-features__item--no {
    color: var(--color-gray-light);
}

.plan-features__item--no i {
    background: var(--color-bg-soft);
    color: var(--color-gray-light);
}

.plan-card--highlight .plan-features__item,
.plan-card--featured .plan-features__item {
    color: rgba(255, 255, 255, 0.9);
}

.plan-card--highlight .plan-features__item--yes i,
.plan-card--featured .plan-features__item--yes i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.plan-card--highlight .plan-features__item--no,
.plan-card--featured .plan-features__item--no {
    color: rgba(255, 255, 255, 0.5);
}

.btn-plan {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    background: var(--color-dark);
    color: white;
    border: 2px solid var(--color-dark);
    margin-top: auto;
}

.btn-plan:hover {
    background: white;
    color: var(--color-dark);
    border-color: var(--color-primary);
}

.btn-plan--inverse {
    background: white;
    color: var(--color-dark);
    border-color: white;
}

.btn-plan--inverse:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Card destacado — cinza escuro */
.plan-card--highlight,
.plan-card--featured {
    overflow: hidden;
}

.plan-card--highlight {
    background: #4b5563;
    border-color: #4b5563;
    color: white;
}

.plan-card--highlight .plan-card__name,
.plan-card--highlight .plan-card__tier {
    color: white;
}

.plan-card--highlight .plan-card__tier {
    opacity: 0.8;
}

.plan-card--highlight::before,
.plan-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
}

/* Card premium — cinza muito escuro */
.plan-card--featured {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: white;
}

.plan-card--featured .plan-card__name,
.plan-card--featured .plan-card__tier {
    color: white;
}

.plan-card--featured .plan-card__tier {
    opacity: 0.75;
}

.plan-card--enterprise {
    border-color: var(--color-border);
}

.plan-card--enterprise .plan-card__icon {
    background: rgba(185, 28, 28, 0.08);
    color: var(--color-primary);
}

.payment-methods {
    margin-bottom: 24px;
    padding: 24px 28px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.payment-methods__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.payment-methods__text {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 16px;
}

.payment-methods__brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-methods__brands li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-methods__brands img {
    display: block;
    height: 28px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
}

.plan-enterprise {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-enterprise:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(185, 28, 28, 0.08);
}

.plan-enterprise__content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.plan-enterprise__content p {
    font-size: 14px;
    color: var(--color-secondary);
    margin: 0;
}

.plan-enterprise__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.plan-enterprise:hover .plan-enterprise__arrow {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Price Compare Section */
.price-compare {
    padding: 80px 0;
    background: white;
}

.price-compare__title {
    text-align: center;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.35;
}

.compare-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 6px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-full);
    max-width: 520px;
    margin: 0 auto 40px;
}

.compare-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--color-secondary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.compare-tab i {
    font-size: 15px;
}

.compare-tab:hover {
    color: var(--color-dark);
}

.compare-tab.is-active {
    background: var(--color-dark);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.compare-tab.is-active i {
    color: var(--color-primary-light);
}

.compare-panel {
    display: none;
}

.compare-panel.is-active {
    display: block;
    animation: compareFadeIn 0.35s ease;
}

@keyframes compareFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 300px) 1fr;
    gap: 20px;
    align-items: start;
}

.compare-list {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--color-border);
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
}

.compare-row__price {
    text-align: right;
    min-width: 88px;
}

.compare-row__label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--color-gray-light);
    margin-bottom: 2px;
}

.compare-row__price--new .compare-row__label {
    color: var(--color-primary);
}

.compare-row__value {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-secondary);
}

.compare-row__value s {
    font-weight: 500;
    color: var(--color-gray-light);
}

.compare-row__price--new .compare-row__value {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary);
}

/* Featured carousel center */
.compare-featured {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compare-featured__slides {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.compare-featured__slide {
    display: none;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-color: var(--color-bg-soft);
}

.compare-featured__slide.is-active {
    display: block;
}

.compare-featured__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.compare-featured__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.compare-featured__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px 20px 20px;
    color: white;
}

.compare-featured__category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.compare-featured__content h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 6px 0 8px;
    color: white;
}

.compare-featured__content p {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.compare-featured__content p strong {
    color: white;
}

.btn-compare-cta {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: background 0.25s ease;
}

.btn-compare-cta:hover {
    background: var(--color-primary-light);
}

.compare-featured__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--color-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.compare-featured__nav:hover {
    background: var(--color-primary);
    color: white;
}

.compare-featured__nav--prev {
    left: -14px;
}

.compare-featured__nav--next {
    right: -14px;
}

.compare-featured__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.compare-featured__dot {
    width: 28px;
    height: 4px;
    border: none;
    border-radius: 2px;
    background: var(--color-border-strong);
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease;
}

.compare-featured__dot.is-active {
    background: var(--color-primary);
}

.price-compare__footnote {
    text-align: center;
    font-size: 11px;
    color: var(--color-gray-light);
    margin-top: 24px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--color-bg-soft);
}

.faq .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq__title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--color-gray-light);
    margin-bottom: 32px;
    text-align: left;
    width: 100%;
    max-width: 800px;
}

.faq-accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border-strong);
    background: transparent;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border-strong);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::marker {
    display: none;
}

.faq-item__question:hover {
    color: var(--color-primary);
}

.faq-item__icon {
    flex-shrink: 0;
    font-size: 14px;
    color: var(--color-gray-light);
    transition: transform 0.25s ease, color 0.2s ease;
}

.faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-item__answer {
    padding: 0 4px 22px;
    animation: faqOpen 0.25s ease;
}

.faq-item__answer p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-secondary);
    margin: 0;
    max-width: 820px;
}

.faq-item__answer a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-item__answer a:hover {
    color: var(--color-primary-light);
}

.faq-item__answer strong {
    color: var(--color-dark);
    font-weight: 700;
}

@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits Showcase Section */
.benefits-showcase {
    background: var(--color-bg-light);
}

.benefits-showcase h2 {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(260px, 400px) 1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.app-mockup-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.app-mockup-wrapper > img {
    width: 100%;
    max-width: 320px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

.app-stores {
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.app-stores__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.app-stores__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.app-stores__link {
    display: block;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.app-stores__link:hover {
    opacity: 0.8;
}

.app-stores__link img {
    display: block;
    height: 40px;
    width: auto;
}

.benefit-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
}

.benefit-card-detailed {
    background: var(--color-surface-elevated);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card-detailed i {
    font-size: 24px;
    color: var(--color-primary-light);
    margin-bottom: 24px;
    opacity: 0.95;
}

.benefit-card-detailed h4 {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.benefit-card-detailed .value-info {
    margin-top: auto;
    padding-top: 15px;
}

.benefit-card-detailed .value-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 1.5px;
    display: block;
}

.benefit-card-detailed .value-amount {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-top: 4px;
}

.benefit-card-detailed:hover {
    border-color: rgba(185, 28, 28, 0.5);
    box-shadow: 0 10px 24px rgba(185, 28, 28, 0.12);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-soft);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid--dual {
        max-width: 720px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .compare-featured {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    .compare-featured__nav--prev {
        left: 8px;
    }

    .compare-featured__nav--next {
        right: 8px;
    }
}

@media (max-width: 600px) {
    .pricing-grid,
    .pricing-grid--dual {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-enterprise {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

@media (min-width: 1100px) {
    .hero-benefits-track {
        overflow-x: visible;
        justify-content: space-between;
    }

    .hero-benefit-item {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }
}

/* Desktop com viewport baixa — evita sobreposição do conteúdo */
@media (max-height: 900px) and (min-width: 993px) {
    .hero-slide__title {
        font-size: clamp(24px, 3.2vw, 36px);
        margin-bottom: clamp(8px, 1.2vh, 16px);
    }

    .hero-slide__price {
        margin-bottom: clamp(10px, 1.5vh, 18px);
    }

    .hero-slide__price strong {
        font-size: clamp(24px, 3.5vw, 32px);
    }

    .hero-slide__impact {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .hero-slide__visual {
        max-height: min(28vh, 210px);
    }

    .hero-slide__visual--brand {
        max-height: min(32vh, 240px);
    }

    .hero-slide__card {
        max-height: min(24vh, 180px);
        max-width: min(260px, 30vw);
    }

    .hero-slide__brand-logo {
        height: clamp(90px, 20vh, 160px);
    }

    .btn-hero {
        padding: 12px 28px;
        font-size: 14px;
    }

    .hero-banner__controls {
        padding: 4px 0 8px;
    }
}

@media (max-height: 760px) and (min-width: 993px) {
    .hero-slide__title {
        font-size: clamp(22px, 2.8vw, 30px);
        margin-bottom: 8px;
    }

    .hero-slide__price {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .hero-slide__price strong {
        font-size: clamp(22px, 3vw, 28px);
    }

    .hero-slide__visual {
        max-height: min(24vh, 170px);
    }

    .hero-slide__card {
        max-height: min(20vh, 150px);
    }

    .hero-slide__brand-logo {
        height: clamp(72px, 16vh, 120px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        background-image:
            linear-gradient(
                180deg,
                #ffffff 0%,
                rgba(255, 255, 255, 0.95) 35%,
                rgba(255, 255, 255, 0.7) 55%,
                rgba(255, 255, 255, 0.35) 75%
            ),
            url('../img/bg_coracao_linus_mais.png');
        background-position: center top, center center;
        background-size: auto, cover;
    }

    .hero-slide__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-banner {
        grid-template-rows: minmax(0, 1fr) auto;
        overflow: hidden;
    }

    .hero-fold {
        overflow: hidden;
    }

    .hero-banner__slider {
        display: grid;
        grid-template-areas: 'stack';
        min-height: clamp(400px, 52svh, 560px);
        height: auto;
        overflow: hidden;
    }

    .hero-slide {
        grid-area: stack;
        position: relative;
        inset: auto;
        height: auto;
        min-height: 100%;
        max-height: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 12px 0 16px;
        overflow: hidden;
    }

    .hero-slide:not(.is-active) {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    .hero-slide.is-active {
        position: relative;
        z-index: 2;
    }

    .hero-slide__inner {
        position: relative;
        z-index: 2;
    }

    .hero-slide__content {
        order: 1;
    }

    .hero-slide__visual {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        max-height: min(38vh, 280px);
        min-height: 0;
        margin-top: 8px;
        padding: 4px 0 8px;
        overflow: hidden;
    }

    .hero-slide__card {
        order: -1;
        max-height: min(24vh, 220px);
        max-width: min(260px, 62vw);
    }

    .hero-price-cards {
        position: static;
        inset: auto;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: clamp(8px, 2.5vw, 12px);
        width: 100%;
        max-width: min(340px, 92vw);
        pointer-events: none;
    }

    .hero-price-card,
    .hero-price-card--secondary {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: 10px 12px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-price-card__value {
        justify-content: center;
        align-items: center;
    }

    .hero-price-card__label {
        font-size: 10px;
        margin-bottom: 4px;
        width: 100%;
        text-align: center;
    }

    .hero-price-card__from {
        font-size: 9px;
        width: 100%;
        text-align: center;
    }

    .hero-price-card__value .currency {
        font-size: 14px;
        margin-top: 0;
    }

    .hero-price-card__desc {
        font-size: 10px;
        margin-top: 2px;
        width: 100%;
        text-align: center;
    }

    .hero-slide__inner--brand {
        grid-template-columns: 1fr;
    }

    .hero-slide--brand .hero-slide__visual--brand {
        order: 1;
        justify-content: center;
        max-height: none;
    }

    .hero-slide--brand .hero-slide__content--brand {
        order: 2;
        text-align: center;
    }

    .hero-slide__brand-logo {
        height: clamp(110px, 20vh, 180px);
        margin: 0 auto;
    }

    .hero-slide--brand .hero-slide__impact {
        margin-left: auto;
        margin-right: auto;
        max-width: 480px;
    }

    .split-grid, .card-intro__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .card-intro__grid {
        gap: 40px;
    }

    .stat-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-intro__logo {
        margin-left: auto;
        margin-right: auto;
    }

    .card-intro__quote {
        text-align: left;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-showcase h2 {
        margin-bottom: 40px;
    }

    .card-intro__content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .card-advantages {
        padding: 24px 20px;
        text-align: left;
    }

    .card-advantage {
        align-items: center;
    }

    .card-advantages__actions .btn {
        max-width: none;
    }

    .lead-form-premium {
        padding: 30px 20px;
    }

    .form-group-flex {
        flex-direction: column;
    }

    .form-group-flex select {
        width: 100% !important;
    }
    
    .benefits-grid-2x2 {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .lead-form-container p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clinic-coverage__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .clinic-coverage__content {
        text-align: center;
    }

    .clinic-coverage__brand {
        justify-content: center;
    }

    .clinic-coverage__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .clinic-coverage__list {
        text-align: left;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .clinic-coverage__carousel {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .clinic-coverage__nav--prev {
        left: 8px;
    }

    .clinic-coverage__nav--next {
        right: 8px;
    }
}

@media (min-width: 993px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: var(--header-height);
        justify-content: center;
        pointer-events: none;
        z-index: 5150;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: none;
        padding: 0;
        overflow: visible;
    }

    .nav-menu .nav-links {
        pointer-events: auto;
    }
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 24px var(--container-padding) 32px;
        background: #ffffff;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
        z-index: 5000;
        border-top: 1px solid var(--color-border);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    }

    body.nav-open .nav-menu {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        top: var(--header-height);
        background: rgba(31, 41, 55, 0.45);
        z-index: 4999;
        pointer-events: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open main,
    body.nav-open .hero-fold,
    body.nav-open .hero-banner,
    body.nav-open .hero-banner__slider {
        z-index: auto;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links a {
        display: block;
        padding: 16px 4px;
        font-size: 16px;
    }

    .nav-cta--desktop {
        display: none;
    }

    .nav-cta--mobile {
        display: block;
        width: 100%;
        margin-top: 24px;
    }

    .nav-cta--mobile .btn {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 768px) {
    #header {
        padding: 10px 0;
    }

    .logo-img--horizontal {
        height: 32px;
        max-width: 160px;
    }

    .hero-fold {
        height: auto;
        min-height: calc(100svh - var(--header-height));
        overflow: visible;
    }

    .hero-banner {
        min-height: 0;
        flex: 1 1 auto;
        overflow: visible;
    }

    .hero-banner__slider {
        min-height: clamp(380px, 50svh, 500px);
    }

    .hero-slide.is-active {
        padding: 10px 0 14px;
    }

    .hero-slide__title {
        font-size: clamp(22px, 6vw, 26px);
    }

    .hero-slide__price strong {
        font-size: clamp(24px, 7vw, 28px);
    }

    .hero-slide__visual {
        max-height: min(34vh, 240px);
        min-height: 0;
        gap: 10px;
    }

    .hero-slide__card {
        max-height: min(28vh, 200px);
        max-width: min(240px, 68vw);
    }

    .hero-price-cards {
        max-width: min(320px, 94vw);
        gap: 8px;
    }

    .hero-price-card,
    .hero-price-card--secondary {
        padding: 8px 10px;
    }

    .hero-price-card__value .amount {
        font-size: clamp(22px, 7vw, 28px);
        letter-spacing: -1px;
    }

    .hero-price-card__value .amount--text {
        font-size: clamp(20px, 6.5vw, 26px);
    }

    .hero-banner__controls {
        gap: 16px;
        padding: 6px 0 12px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-benefits-strip {
        padding: 10px 0 12px;
    }

    .hero-benefit-item {
        min-width: 118px;
        max-width: 140px;
        padding: 10px 8px;
    }

    .hero-benefit-title {
        font-size: 12px;
    }

    .btn-hero {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 320px;
    }

    .card-intro__content {
        margin-bottom: 32px;
    }

    .card-intro__content p {
        margin-bottom: 28px;
    }

    .stat-cards-grid {
        grid-template-columns: 1fr;
    }

    .price-compare {
        padding: clamp(48px, 8vw, 80px) 0;
    }

    .compare-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        max-width: 100%;
        border-radius: var(--radius-md);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .compare-tabs::-webkit-scrollbar {
        display: none;
    }

    .compare-tab {
        flex: 0 0 auto;
        font-size: 13px;
        padding: 10px 16px;
    }

    .compare-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
        text-align: center;
        padding: 14px 12px;
    }

    .compare-row__name {
        grid-column: 1 / -1;
        font-size: 14px;
        font-weight: 800;
        text-align: center;
        padding-bottom: 8px;
        margin-bottom: 2px;
        border-bottom: 1px solid var(--color-border);
    }

    .compare-row__price {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 2px;
        min-width: 0;
    }

    .compare-row__label {
        font-size: 9px;
        letter-spacing: 0.4px;
    }

    .compare-row__value {
        font-size: 13px;
    }

    .compare-row__price--new .compare-row__value {
        font-size: 14px;
    }

    .compare-featured {
        max-width: 100%;
    }

    .compare-featured__slides {
        min-height: 320px;
    }

    .pricing-plans__header {
        margin-bottom: 32px;
    }

    .pricing-plans__logo {
        height: clamp(56px, 14vw, 72px);
    }

    .plan-card {
        padding: 24px 18px 20px;
    }

    .plan-card__amount {
        font-size: 28px;
    }

    .clinic-coverage__slide-body {
        padding: 22px 18px;
    }

    .clinic-coverage__nav {
        width: 36px;
        height: 36px;
    }

    .benefit-detailed-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .benefit-card-detailed {
        align-items: center;
        text-align: center;
        padding: 22px 18px;
    }

    .benefit-card-detailed i {
        margin-bottom: 14px;
    }

    .benefit-card-detailed h4 {
        font-size: 15px;
        text-align: center;
        margin-bottom: 10px;
    }

    .benefit-card-detailed .value-info {
        width: 100%;
        text-align: center;
        padding-top: 12px;
    }

    .benefit-card-detailed .value-label {
        letter-spacing: 1px;
    }

    .showcase-grid {
        gap: 32px;
    }

    .app-mockup-wrapper > img {
        max-width: min(240px, 70vw);
    }

    .app-stores {
        max-width: 100%;
    }

    .app-stores__links {
        flex-direction: column;
    }

    .faq {
        padding: clamp(48px, 8vw, 80px) 0;
    }

    .faq-item__question {
        font-size: 15px;
        padding: 18px 2px;
        gap: 12px;
    }

    .final-cta .btn-large {
        width: 100%;
        max-width: 360px;
        padding: 16px 24px;
        font-size: 16px;
    }

    .footer-grid {
        gap: 28px;
        margin-bottom: 40px;
    }

    .footer-legal__disclaimer {
        font-size: 11px;
        line-height: 1.55;
    }

    .privacy-policy__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent__actions .btn-cookie {
        flex: 1 1 auto;
        width: 100%;
        text-align: center;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    body.has-cookie-consent .whatsapp-float {
        bottom: 140px;
    }

    .cookie-consent {
        padding: 16px var(--container-padding);
    }
}

@media (max-width: 480px) {
    .hero-slide__inner {
        gap: 16px;
    }

    .hero-slide__visual {
        min-height: 220px;
    }

    .hero-price-cards {
        flex-direction: row;
    }

    .hero-price-card__label {
        font-size: 9px;
        letter-spacing: 0.3px;
    }

    .hero-price-card__value .amount {
        font-size: 22px;
    }

    .hero-price-card__value .amount--text {
        font-size: 20px;
    }

    .compare-row {
        padding: 12px 10px;
        gap: 8px 10px;
    }

    .compare-row__name {
        font-size: 13px;
    }

    .compare-row__value {
        font-size: 12px;
    }

    .compare-row__price--new .compare-row__value {
        font-size: 13px;
    }

    .benefit-detailed-grid {
        max-width: 100%;
    }

    .benefit-card-detailed {
        padding: 20px 16px;
    }

    .plan-card__badge {
        position: static;
        display: inline-block;
        margin-bottom: 12px;
    }

    .payment-methods {
        padding: 20px 16px;
    }

    .payment-methods__brands {
        gap: 12px 16px;
    }

    .payment-methods__brands img {
        height: 24px;
    }
}


/* Final CTA Section */
.final-cta {
    background: var(--color-bg-soft);
    color: var(--color-dark);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.final-cta h2 {
    color: var(--color-dark);
    font-size: clamp(26px, 5vw, 48px);
    margin-bottom: clamp(16px, 3vw, 24px);
}

/* Privacidade / LGPD (rodapé) */
.privacy-policy {
    border-top: 1px solid var(--color-border);
    padding: 20px 0 0;
    margin-bottom: 28px;
    scroll-margin-top: 90px;
}

.privacy-policy__summary {
    list-style: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray);
    padding: 0 0 16px;
    user-select: none;
}

.privacy-policy__summary::-webkit-details-marker {
    display: none;
}

.privacy-policy__summary::after {
    content: '+';
    float: right;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-light);
    line-height: 1.2;
}

.privacy-policy[open] .privacy-policy__summary::after {
    content: '−';
}

.privacy-policy[open] .privacy-policy__summary {
    color: var(--color-dark);
    margin-bottom: 4px;
}

.privacy-policy__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    padding-bottom: 20px;
}

.privacy-policy__grid h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.privacy-policy__grid p {
    font-size: 12px;
    line-height: 1.55;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.privacy-policy__grid p:last-child {
    margin-bottom: 0;
}

.privacy-policy__reopen {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: underline;
    cursor: pointer;
}

.privacy-policy__reopen:hover {
    color: var(--color-primary-light);
}

/* Banner de cookies */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--color-light);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    padding: 20px 0;
    transform: translateY(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
}

.cookie-consent.is-visible {
    transform: translateY(0);
    visibility: visible;
}

body.has-cookie-consent {
    padding-bottom: 0;
}

.cookie-consent__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
}

.cookie-consent__content {
    flex: 1 1 320px;
    max-width: 720px;
}

.cookie-consent__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.cookie-consent__text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--color-gray);
    margin: 0;
}

.cookie-consent__text a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-cookie--outline {
    background: var(--color-light);
    color: var(--color-dark);
    border-color: var(--color-border-strong);
}

.btn-cookie--outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-cookie--primary {
    background: var(--color-primary);
    color: var(--color-light);
}

.btn-cookie--primary:hover {
    background: var(--color-primary-light);
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1990;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, bottom 0.35s ease;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

body.has-cookie-consent .whatsapp-float {
    bottom: 120px;
}

@media (min-width: 993px) {
    .whatsapp-float {
        right: 300px;
    }
}

/* Footer */
.site-footer {
    background: var(--color-bg-soft);
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
}

.site-footer p {
    color: var(--color-gray);
    font-size: 14px;
}

.site-footer h4 {
    margin-bottom: 20px;
    color: var(--color-dark);
    font-size: 15px;
}

.site-footer ul {
    color: var(--color-gray);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer a:hover {
    color: var(--color-primary-light);
}

.footer-legal {
    border-top: 1px solid var(--color-border);
    padding-top: 28px;
    margin-bottom: 28px;
}

.footer-legal__notice {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-legal__disclaimer {
    font-size: 11px;
    line-height: 1.55;
    color: var(--color-gray);
    margin: 0;
    max-width: 960px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    text-align: center;
    color: var(--color-gray);
    font-size: 12px;
}


.final-cta p {
    font-size: 20px;
    color: var(--color-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}
