/* Reset e configurações básicas */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Tema solicitado: parcial (menos preto, mais “leve”) */
    --bg: #141622;
    --bg-2: #0b0b10;
    --card: rgba(255, 255, 255, 0.06);
    --card-2: rgba(255, 255, 255, 0.08);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.12);

    --primary: #dc2626;   /* vermelho */
    --primary-2: #b91c1c; /* vermelho escuro */
    --shadow: rgba(0, 0, 0, 0.5);
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
}


/* Container principal */
.page-container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.header {
    background-color: rgba(7, 7, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 25px -20px rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}


.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: #dc2626;
}

.nav-links {
    display: none;
    gap: 32px;
}

.nav-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.25s ease;
    position: relative;
}



.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #dc2626;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff2a2a;
    text-shadow:
        0 0 8px rgba(255, 42, 42, 0.65),
        0 0 18px rgba(220, 38, 38, 0.55),
        0 0 28px rgba(239, 68, 68, 0.45);
}

.nav-link:hover::after {
    width: 100%;
    box-shadow: 0 0 14px rgba(255, 42, 42, 0.85);
}



.nav-cta-button {
    display: none;
    background-color: #dc2626;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta-button:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #1f2937;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: rgba(7, 7, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 25px -20px rgba(0, 0, 0, 0.8);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
}


.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: #1f2937;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #dc2626;
}

.mobile-nav-cta {
    background-color: #dc2626;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    color: white;
    padding: 120px 0 70px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;

    /* Novo design completo do topo (imagem do fundo mantida) */
    background:
        radial-gradient(1000px 420px at 20% 0%, rgba(220, 38, 38, 0.62) 0%, rgba(220, 38, 38, 0) 60%),
        radial-gradient(850px 360px at 85% 10%, rgba(239, 68, 68, 0.28) 0%, rgba(239, 68, 68, 0) 55%),
        radial-gradient(650px 260px at 60% 30%, rgba(59, 130, 246, 0.20) 0%, rgba(59, 130, 246, 0) 60%),
        linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(239, 68, 68, 0.55) 40%, rgba(16, 185, 129, 0.10) 100%);
}

/* Hero internamente com “grid” (texto + stats mais modernos) */
#inicio .hero-content {
    align-items: flex-start;
}

.hero-content {
    gap: 26px;
}

.hero-text {
    text-align: left;
}

@media (max-width: 767px) {
    .hero {
        padding: 105px 0 60px;
    }

    .hero-text {
        text-align: center;
    }
}




.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;

    /* Imagem do fundo: aumentar para mostrar a imagem inteira (sem cortar) */
    background:
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%),
        url("Imagem para site LifeTrack_files/36d82529-fa27-4781-8549-406c781fc609.png");

    /* preencher TODO o espaço (sem “espaçamento”) */
    background-size: cover;
    background-position: center;

    background-position: center;
    background-repeat: no-repeat;

    /* sem scale para não “zoomar” e cortar */
    transform: none;

    /* Forçar preenchimento total */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Embaçar a camada inteira do fundo */
    filter: blur(6px);
    transform: scale(1.08);
}


/* Overlay extra para garantir legibilidade */
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40);
}


/* garante que conteúdo fique acima */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-background {
    z-index: 0;
}

.hero-content {
    z-index: 2;
    position: relative;
}





.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    background-color: white;
    color: #dc2626;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.cta-button-secondary {
    background-color: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary:hover {
    background-color: white;
    color: #dc2626;
}

.hero-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
    width: 100%;
}

.hero-stat-mini {
    position: relative;
    text-align: center;
    padding: 18px 10px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(420px 120px at 50% 0%, rgba(220, 38, 38, 0.30) 0%, rgba(220, 38, 38, 0) 55%),
        linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.30) 100%);
    box-shadow:
        0 18px 55px -45px rgba(0,0,0,0.95),
        0 0 0 1px rgba(220, 38, 38, 0.10);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-stat-mini::before {
    content: '';
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(220px 90px at 50% 0%, rgba(239, 68, 68, 0.55) 0%, rgba(239, 68, 68, 0) 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.hero-stat-mini::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.hero-stat-mini:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 30px 95px -65px rgba(0,0,0,0.98),
        0 0 0 1px rgba(220, 38, 38, 0.18);
}

.hero-stat-mini:hover::before {
    opacity: 1;
}

.hero-stat-mini:hover::after {
    transform: translateX(120%);
}

.hero-stat-mini .stat-number {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow:
        0 12px 26px rgba(220, 38, 38, 0.35),
        0 0 22px rgba(239, 68, 68, 0.25);
}

.hero-stat-mini .stat-number[data-decimal="true"] {
    font-size: 30px;
}

.hero-stat-mini .stat-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    opacity: 0.92;
    color: rgba(255,255,255,0.86);
}

@media (max-width: 767px) {
    .hero-stats-mini {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-stat-mini {
        padding: 16px 10px;
        min-width: 0;
    }

    .hero-stat-mini .stat-number {
        font-size: 36px;
    }
}




.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Desativar de vez o SVG/duplicação (mantém o HTML, mas tira do layout) */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Segurança extra: caso o navegador/DOM continue renderizando o SVG */
.hero-image-wrapper svg {
    display: none !important;
}



.hero-logo {
    max-width: 100%;
    height: auto;
    width: 500px;
}

/* ============================================
   FEATURES SECTION
============================================ */
.features {
    padding: 84px 0;

    /* upgrade de fundo e legibilidade */
    background:
        radial-gradient(900px 280px at 10% 10%, rgba(220, 38, 38, 0.25) 0%, rgba(220, 38, 38, 0) 60%),
        radial-gradient(700px 260px at 90% 0%, rgba(239, 68, 68, 0.20) 0%, rgba(239, 68, 68, 0) 55%),
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);

    position: relative;
}

.features-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 30px 26px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 18px 45px -30px rgba(0,0,0,0.95),
        0 0 0 1px rgba(220, 38, 38, 0.10);

    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(600px 140px at 50% 0%, rgba(220, 38, 38, 0.22) 0%, rgba(220, 38, 38, 0) 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 26px 70px -40px rgba(0,0,0,0.95),
        0 0 0 1px rgba(220, 38, 38, 0.25);
    border-color: rgba(255, 255, 255, 0.20);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;

    background: linear-gradient(135deg, rgba(220, 38, 38, 0.22) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 10px 25px -18px rgba(220, 38, 38, 0.65),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.feature-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15.5px;
    line-height: 1.65;
}



/* ============================================
   HOW IT WORKS SECTION
============================================ */
.how-it-works {
    padding: 110px 0;
    position: relative;
    overflow: hidden;

    /* preto com contraste premium (vermelho só como acento sutil) */
    background:
        radial-gradient(900px 320px at 18% 10%, rgba(220, 38, 38, 0.18) 0%, rgba(220, 38, 38, 0) 66%),
        radial-gradient(650px 280px at 82% 10%, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 58%),
        radial-gradient(500px 220px at 50% 70%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg, #0b0c12 0%, rgba(185, 28, 28, 0.30) 42%, #0f1018 100%);
}



.how-it-works::before {
    content: '';
    position: absolute;
    inset: -2px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.10) 35%, rgba(255,255,255,0) 70%);
    filter: blur(16px);
    opacity: 0.55;
    pointer-events: none;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}




.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: var(--text);
    margin-bottom: 16px;
}

/* Título “Fale Conosco” */
#contato .section-title {
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(220, 38, 38, 0.25);
}



/* Ajuste pedido: títulos e subtítulos do bloco “Como Funciona” com texto preto */
.how-it-works-title,
.how-it-works-subtitle {
    color: #000 !important;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    opacity: 0.8;
    color: var(--muted);
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 26px 0;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 26px;
    bottom: 26px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(220,38,38,0.85), rgba(255,255,255,0.10), rgba(239,68,68,0.80));
    box-shadow: 0 0 28px rgba(220,38,38,0.35);
    opacity: 0.9;
    border-radius: 999px;
    pointer-events: none;
}

.step-card {
    position: relative;
    width: 100%;
    max-width: 340px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 30px 26px 28px;
    text-align: left;

    box-shadow:
        0 26px 70px -55px rgba(0, 0, 0, 0.98),
        0 0 0 1px rgba(220,38,38,0.12);

    backdrop-filter: blur(12px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
    background:
        radial-gradient(520px 160px at 20% 0%, rgba(220,38,38,0.45) 0%, rgba(220,38,38,0) 55%),
        radial-gradient(420px 180px at 80% 40%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 40px 110px -70px rgba(0, 0, 0, 0.98),
        0 0 0 1px rgba(220,38,38,0.22);
    background: rgba(0, 0, 0, 0.52);
}

.step-card:hover::before {
    opacity: 1;
}


/* Caixas do “Como Funciona” (Escolha clínica / Marque seu horário / Receba lembretes) */
.how-it-works .steps-container .step-card {
    /* remove o style antigo para não sobrescrever o novo layout */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}





.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(220,38,38,0.95), rgba(239,68,68,0.75));
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 14px 40px rgba(220,38,38,0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: -0.02em;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.step-icon i {
    font-size: 22px;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(220,38,38,0.35);
}

.step-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.94);
}

.step-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    max-width: 26ch;
}

.step-connector {
    color: rgba(255,255,255,0.85);
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 55px -50px rgba(0,0,0,0.9);
}



/* Diversificação de cores dentro do “Como Funciona” */
.how-it-works .steps-container .step-card:nth-of-type(1) .step-number {
    background: linear-gradient(135deg, rgba(220,38,38,0.98), rgba(239,68,68,0.80));
    box-shadow: 0 14px 40px rgba(220,38,38,0.42);
    color: #fff;
}

.how-it-works .steps-container .step-card:nth-of-type(1) .step-icon {
    border-color: rgba(220,38,38,0.35);
    background: rgba(220,38,38,0.10);
}

.how-it-works .steps-container .step-connector:nth-of-type(1) {
    border-color: rgba(220,38,38,0.28);
    background: rgba(220,38,38,0.08);
}


/* Padronização: número do passo 1 em branco */
/* (Mantido via regra anterior; este bloco só garante consistência) */
.how-it-works .steps-container .step-card:nth-of-type(1) .step-number {
    color: #ffffff;
}

.how-it-works .steps-container .step-card:nth-of-type(1) .step-icon {
    background: rgba(220,38,38,0.10);
}


/* Passo 2 - azul */
/* Passo 2 - cores normais (vermelho) */
.how-it-works .steps-container .step-card:nth-of-type(2) .step-number {
    background: linear-gradient(135deg, rgba(220,38,38,0.95), rgba(239,68,68,0.65));
    box-shadow: 0 14px 40px rgba(220,38,38,0.32);
}

.how-it-works .steps-container .step-card:nth-of-type(2) .step-icon {
    border-color: rgba(220,38,38,0.35);
    background: rgba(220,38,38,0.10);
}


.how-it-works .steps-container .step-connector:nth-of-type(2) {
    color: #ffffff;
}



/* Passo 3 - cores normais (vermelho) */
.how-it-works .steps-container .step-card:nth-of-type(3) .step-number {
    background: linear-gradient(135deg, rgba(220,38,38,0.95), rgba(239,68,68,0.55));
    box-shadow: 0 14px 40px rgba(239,68,68,0.26);
}

.how-it-works .steps-container .step-card:nth-of-type(3) .step-icon {
    border-color: rgba(220,38,38,0.35);
    background: rgba(220,38,38,0.10);
}







/* ============================================
   PLANS SECTION
============================================ */
.plans-section {
    padding: 120px 0;

    /* fundo premium + menos “apagado” */
    background:
        radial-gradient(1000px 260px at 15% 0%, rgba(220, 38, 38, 0.42) 0%, rgba(220, 38, 38, 0) 58%),
        radial-gradient(800px 240px at 85% 15%, rgba(239, 68, 68, 0.30) 0%, rgba(239, 68, 68, 0) 60%),
        radial-gradient(600px 200px at 50% 5%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.00) 100%);
    position: relative;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}


.plan-card {
    /* Base “neon card” (contraste alto dentro dos planos) */
    background: rgba(0, 0, 0, 0.35);
    border-radius: 18px;
    padding: 44px 28px;
    text-align: center;

    /* contorno será animado no hover */
    border: 1px solid rgba(255, 255, 255, 0.14);

    position: relative;
    overflow: visible;


    box-shadow:
        0 18px 55px -35px rgba(0, 0, 0, 0.98),
        0 0 0 1px rgba(255, 255, 255, 0.03);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

/* Neon glow layer */
.plan-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
    background:
        radial-gradient(520px 140px at 55% 0%, rgba(220, 38, 38, 0.55) 0%, rgba(220, 38, 38, 0) 60%),
        radial-gradient(420px 180px at 20% 20%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 60%),
        radial-gradient(420px 180px at 80% 40%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 60%);
}

.plan-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 60%);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 26px 90px -55px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 32px rgba(220, 38, 38, 0.30);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover::after {
    opacity: 1;
}



/* (removido) versão antiga do ::before para evitar conflito */




.plan-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 26px 90px -55px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(220, 38, 38, 0.22);
}


.plan-card.plan-featured {
    border-color: rgba(220, 38, 38, 0.55);
    box-shadow:
        0 28px 95px -60px rgba(0,0,0,0.98),
        0 0 0 1px rgba(220, 38, 38, 0.30);
    transform: translateY(-2px);
}

.plan-card.plan-featured:hover {
    transform: translateY(-10px);
}



.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
    /* evita corte em alguns browsers quando o card tem overflow hidden */
    max-width: calc(100% - 24px);
}

.plan-name {

    font-size: 24px;
    font-weight: 800;
    color: rgba(255,255,255,0.98);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 24px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

.price-value {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 8px 22px rgba(220,38,38,0.35);
}

.price-period {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-left: 4px;
}

.plan-description {
    color: rgba(255,255,255,0.78);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    padding: 0 4px;
}


.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.82);
}


.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #34d399;
    font-size: 14px;
}

.plan-features li i.fa-times {
    color: rgba(255,255,255,0.35);
}

.plan-features li span {
    color: rgba(255,255,255,0.75);
}


.plan-button {
    width: 100%;
    padding: 16px 32px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: #b91c1c;
}

.plan-button-featured {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.plan-button-featured:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    font-size: 24px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================
   HERO STATS (topo: 5+ clínicas / 500+ pacientes / 4.9 nota)
============================================ */
.hero-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
    width: 100%;
}

.hero-stat-mini {
    position: relative;
    text-align: center;
    padding: 18px 10px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(420px 120px at 50% 0%, rgba(220, 38, 38, 0.30) 0%, rgba(220, 38, 38, 0) 55%),
        linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.30) 100%);
    box-shadow:
        0 18px 55px -45px rgba(0,0,0,0.95),
        0 0 0 1px rgba(220, 38, 38, 0.10);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-stat-mini::before {
    content: '';
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(220px 90px at 50% 0%, rgba(239, 68, 68, 0.55) 0%, rgba(239, 68, 68, 0) 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.hero-stat-mini:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 30px 95px -65px rgba(0,0,0,0.98),
        0 0 0 1px rgba(220, 38, 38, 0.18);
}

.hero-stat-mini:hover::before {
    opacity: 1;
}

.hero-stat-mini::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.hero-stat-mini:hover::after {
    transform: translateX(120%);
}

.hero-stat-mini .stat-number {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow:
        0 12px 26px rgba(220, 38, 38, 0.35),
        0 0 22px rgba(239, 68, 68, 0.25);
}

.hero-stat-mini .stat-number[data-decimal="true"] {
    font-size: 30px;
}

.hero-stat-mini .stat-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    opacity: 0.92;
    color: rgba(255,255,255,0.86);
}

@media (max-width: 767px) {
    .hero-stats-mini {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-stat-mini {
        padding: 16px 10px;
    }

    .hero-stat-mini .stat-number {
        font-size: 36px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 100%);
    overflow: hidden;
}


.testimonials-slider {
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    min-width: 350px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    margin-right: 4px;
}

.testimonial-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.testimonial-info span {
    font-size: 14px;
    color: #6b7280;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #dc2626;
    border-radius: 50%;
    color: #dc2626;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: #dc2626;
    color: white;
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #dc2626;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: 100px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #dc2626;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #dc2626;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 16px;
}

/* ============================================
   CONTACT SECTION (Fale Conosco - Design reformulado)
============================================ */
.contact-section {
    padding: 110px 0;

    /* Fundo escuro premium (sem branco) */
    background:
        radial-gradient(900px 380px at 10% 10%, rgba(220, 38, 38, 0.35) 0%, rgba(220, 38, 38, 0) 60%),
        radial-gradient(700px 340px at 90% 0%, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0) 55%),
        radial-gradient(600px 260px at 40% 90%, rgba(239, 68, 68, 0.20) 0%, rgba(239, 68, 68, 0) 60%),
        linear-gradient(180deg, #0f1018 0%, #0a0b10 100%);

    position: relative;
    overflow: hidden;
}

/* Brilho/neon adicional no fundo */
.contact-section::before {
    content: '';
    position: absolute;
    inset: -2px;
    background:
        linear-gradient(90deg, rgba(220, 38, 38, 0.0) 0%, rgba(220, 38, 38, 0.15) 35%, rgba(59, 130, 246, 0.12) 65%, rgba(59, 130, 246, 0.0) 100%);
    filter: blur(20px);
    opacity: 0.55;
    pointer-events: none;
}

.contact-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Cards de contato */
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);

    padding: 26px;
    border-radius: 16px;

    box-shadow:
        0 18px 55px -40px rgba(0,0,0,0.95),
        0 0 0 1px rgba(220, 38, 38, 0.10);

    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 26px 90px -55px rgba(0,0,0,0.98),
        0 0 0 1px rgba(220, 38, 38, 0.25);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;

    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 16px 40px -30px rgba(220,38,38,0.7),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.contact-icon i {
    font-size: 20px;
    color: #ff4b4b;
    text-shadow: 0 0 18px rgba(220, 38, 38, 0.35);
}

.contact-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    margin-bottom: 8px;
}

.contact-details p {
    color: rgba(255,255,255,0.70);
    font-size: 14px;
    line-height: 1.65;
}

.whatsapp-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 10px 30px -15px rgba(16,185,129,0.7);
}

.whatsapp-card {
    border-left: 4px solid #10b981;
}

/* Container do form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);

    padding: 42px;
    border-radius: 20px;

    box-shadow:
        0 30px 120px -70px rgba(0,0,0,0.95),
        0 0 0 1px rgba(220, 38, 38, 0.10);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255,255,255,0.92);

    font-size: 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(220, 38, 38, 0.65);
    box-shadow:
        0 0 0 3px rgba(220, 38, 38, 0.18),
        0 0 26px rgba(220, 38, 38, 0.22);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    padding: 16px 32px;

    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border: none;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 700;
    cursor: pointer;

    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    box-shadow:
        0 18px 55px -35px rgba(220,38,38,0.8),
        0 0 0 1px rgba(255,255,255,0.08);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 26px 90px -55px rgba(220,38,38,0.95),
        0 0 0 1px rgba(255,255,255,0.12);
    filter: saturate(1.05);
}


/* ============================================
   FOOTER
============================================ */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.footer-desc {
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #dc2626;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .nav-cta-button {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-content {
        flex-direction: row;
    }
    
    .hero-text {
        width: 50%;
        text-align: left;
        margin-bottom: 0;
    }
    
    .hero-subtitle {
        margin-left: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-stats-mini {
        justify-content: flex-start;
    }
    
    .hero-image {
        width: 50%;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    
    .step-connector {
        margin-top: 40px;
    }
    
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonial-card {
        min-width: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 12px;
    }
    
    .features-title,
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }

    /* Destaques do topo */
    .hero-buttons {
        gap: 12px;
        justify-content: center;
    }

    .hero-content {
        gap: 18px;
    }

    .hero-stats-mini {
        justify-content: center;
        gap: 12px;
    }

    .hero-stat-mini {
        min-width: 0;
        padding: 16px 10px;
    }

    .stat-number {
        font-size: 36px;
    }
    
    .plan-card.plan-featured {
        transform: none;
    }
    
    .plan-card.plan-featured:hover {
        transform: translateY(-8px);
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .contact-form-container {
        padding: 24px;
    }

    /* Ajustes adicionais para o contato reformulado */
    .contact-grid {
        gap: 28px;
    }

    .contact-card {
        padding: 20px;
    }
}




/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.step-card,
.plan-card,
.testimonial-card,
.contact-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(3) { animation-delay: 0.2s; }
.step-card:nth-child(5) { animation-delay: 0.3s; }

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* AI Chat Bubble - Pretty Version */
.chat-bubble {
    position: fixed !important;
    bottom: 24px !important;
    right: 20px !important;
    left: auto !important;
    width: 68px;
    height: 68px;
    background: linear-gradient(145deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatPulse 3s ease-in-out infinite;
    box-shadow: 
        0 10px 30px rgba(220,38,38,0.5),
        inset 0 2px 4px rgba(255,255,255,0.3),
        0 0 20px rgba(220,38,38,0.4);
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    visibility: visible !important;
}

.chat-bubble::before {
    content: 'Fale com IA 🤖';
    position: absolute;
    bottom: 80px;
    right: -10px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220,38,38,0.4);
    pointer-events: none;
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: 70px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #dc2626;
    opacity: 0;
    transition: all 0.3s ease;
}

.chat-bubble:hover::before,
.chat-bubble:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.chat-bubble:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(220,38,38,0.6),
        inset 0 2px 6px rgba(255,255,255,0.4),
        0 0 40px rgba(220,38,38,0.6);
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.chat-bubble img.bubble-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.chat-bubble:hover img.bubble-icon {
    transform: scale(1.1);
}

.chat-bubble span {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .chat-bubble {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .chat-bubble::before {
        font-size: 13px;
        padding: 8px 12px;
        right: -5px;
        bottom: 75px;
    }
}