@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0066cc;
    --primary-dark: #004c99;
    --secondary: #00b4d8;
    --dark: #1e2a3e;
    --light: #f8f9fa;
    --whatsapp: #25d366;
    --whatsapp-dark: #128C7E;
    --gray-100: #f8f9fc;
    --gray-200: #eef2ff;
    --shadow-sm: 0 2px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 30px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
    line-height: 1.5;
}

.navbar {
    background-color: white !important;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary) !important;
}

.navbar-brand i { color: var(--primary); }

.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    margin: 0 0.5rem;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

.hero-section {
    background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
    padding: 100px 0;
}

.text-highlight { color: var(--primary); }

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.02);
}

.btn-outline-light {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--primary);
    color: white;
}

.card-exame {
    background: white;
    border-radius: 24px;
    padding: 2rem 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
    height: 100%;
    text-align: center;
}

.card-exame:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-exame i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.diferencial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    height: 100%;
    text-align: center;
}

.depoimento-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 2rem;
    border-left: 5px solid var(--primary);
    height: 100%;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s;
    /* NOVAS PROPRIEDADES */
    border: none;
    outline: none;
    text-decoration: none;
}

/* Para o ícone dentro do link */
.whatsapp-float i {
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    /* Melhora a renderização */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-dark);
    color: white;
    text-decoration: none;
}

/* Remove qualquer contorno ao clicar/focar */
.whatsapp-float:focus,
.whatsapp-float:active {
    outline: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

footer {
    background-color: var(--dark);
    color: #b0c4de;
}

footer a {
    color: #b0c4de;
    text-decoration: none;
}

footer a:hover { color: white; }

@media (max-width: 768px) {
    .hero-section { padding: 60px 0; text-align: center; }
    .navbar-brand { font-size: 1.5rem; }
}


/* ========== RESULTADOS ONLINE (bloco extraído) ========== */
.results-section {
    background: linear-gradient(135deg, var(--blue-pale, #E3F2FD), var(--teal-pale, #E0F2F1));
    padding: 90px 0;
}
.results-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 36px;
}
.res-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 18px 20px;
    border-left: 4px solid var(--primary, #0066cc);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.2s;
}
.res-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.res-ic {
    width: 46px;
    height: 46px;
    background: var(--blue-pale, #E3F2FD);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #0066cc);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.2s;
}
.res-item:hover .res-ic {
    background: var(--primary, #0066cc);
    color: white;
}
.res-txt h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text, #1A2340);
    margin-bottom: 3px;
}
.res-txt p {
    font-size: 0.86rem;
    color: var(--text-light, #4A5678);
}
.results-img-wrap {
    position: relative;
}
.results-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.results-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 13px;
}
.rb-emoji { font-size: 1.8rem; }
.rb-txt h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text, #1A2340);
}
.rb-txt p { font-size: 0.74rem; color: var(--text-light, #4A5678); }

@media (max-width: 992px) {
    .results-inner { grid-template-columns: 1fr; gap: 50px; }
    .results-img-wrap { display: none; }
}
@media (max-width: 768px) {
    .results-section { padding: 60px 0; }
    .res-item { padding: 14px 16px; }
}


.sec-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-pale, #E3F2FD);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary, #0066cc);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.sec-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--blue-dark, #0D47A1);
    line-height: 1.12;
    margin-bottom: 16px;
}
.sec-title em {
    font-style: italic;
    color: var(--teal, #00897B);
}
.sec-sub {
    font-size: 1.05rem;
    color: var(--text-light, #4A5678);
    line-height: 1.85;
}

