/* ==========================================================================
   ODONTOLOGIA BATTESINI - FOLHA DE ESTILO PRINCIPAL (CLEAN & ULTRA-LEVE)
   Zero WordPress, Zero Elementor, Zero Bloat.
   ========================================================================== */

:root {
    --color-primary: #01A8D5;
    --color-primary-light: #45B9EF;
    --color-secondary: #037CA4;
    --color-footer-bottom: #339CC2;
    --color-accent-green: #4EC25F;
    --color-whatsapp: #00D681;
    --color-dark: #222222;
    --color-text: #555555;
    --color-text-light: #777777;
    --color-bg-light: #f7f9fb;
    --color-border: #e9e9e9;

    --font-heading: 'Sulphur Point', 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-serif: 'Roboto Slab', serif;

    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* Reset Básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e9e9e9;
    padding: 6px 0;
    font-size: 13px;
    color: #444444;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left .topbar-logo {
    height: 24px;
    width: auto;
    display: block;
}

.topbar-contact-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-contact-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555555;
    transition: color 0.2s ease;
}

.topbar-contact-list li a:hover {
    color: var(--color-primary);
}

.topbar-contact-list i {
    color: var(--color-primary);
    font-size: 14px;
}

.topbar-whatsapp-link i {
    color: #25D366;
}

.topbar-whatsapp-link strong {
    color: #222222;
}

/* ==========================================================================
   HEADER & LOGO BAR
   ========================================================================== */
.site-header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.header-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    position: relative;
}

.site-logo img {
    max-width: 190px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: max-width 0.2s ease;
}

/* Barra de Navegação */
.header-nav-bar {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background-color: #ffffff;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-header {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-light);
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.nav-link i {
    font-size: 11px;
    color: #101010;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.active > .nav-link {
    color: var(--color-accent-green);
}

.nav-item:hover > .nav-link i,
.nav-item.active > .nav-link i {
    color: var(--color-accent-green);
}

/* Submenu Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background-color: #f4f4f4;
    border: 1px solid #dadada;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown li a:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* Botão Mobile Toggle */
.mobile-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ccdae9;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    width: 44px;
    height: 40px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.hamburger-line {
    width: 22px;
    height: 3px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 2px;
    display: block;
}

.mobile-close-btn {
    display: none;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider-wrap {
    position: relative;
    width: 100%;
    background-color: #f0f0f0;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 420px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-slide a {
    display: block;
    width: 100%;
}

.hero-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.slider-bullets {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-bullet {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-bullet.active {
    background-color: var(--color-primary);
    transform: scale(1.15);
}

/* ==========================================================================
   SEÇÃO 1: SOBRE A CLÍNICA (DRA. DANIELA - DESIGN 1:1)
   ========================================================================== */
.section-about {
    padding: 70px 0 0;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;
    align-items: flex-end;
}

.about-img-wrap {
    position: relative;
    z-index: 20;
    margin-bottom: -72px;
    text-align: center;
}

.about-img-wrap img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 0 auto;
}

.about-text-wrap {
    padding-bottom: 50px;
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #646464;
}

.about-text-wrap p {
    margin-bottom: 22px;
}

.about-text-wrap strong {
    color: #000000;
    font-weight: 700;
}

/* ==========================================================================
   SEÇÃO 2: ESPECIALIDADES (GRID 3 COLUNAS - DESIGN 1:1)
   ========================================================================== */
.section-specialties {
    background-color: #f7f9fb;
    padding: 95px 0 80px;
    position: relative;
    z-index: 5;
}

.specialties-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    row-gap: 32px;
}

/* Bloco de Título (Item 1) */
.specialties-title-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 0;
}

.spec-main-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    line-height: 1.05;
    margin: 0 0 16px 0;
}

.spec-italic-word {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    font-style: italic;
    color: #4DA3E1;
    display: inline-block;
    transition: color 0.3s ease;
}

.specialties-title-block:hover .spec-italic-word {
    color: #000000;
}

.spec-intro-desc {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #565656;
    margin: 0;
    max-width: 290px;
}

/* Cards das Especialidades */
.spec-feature-card {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 24px 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spec-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Card destaque Invisalign (fundo azul suave) */
.spec-feature-card.invisalign-card {
    background-color: #e9f6fc;
    border: 1px solid #d4edf9;
}

/* Círculo do Ícone */
.spec-card-icon-wrap {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: -1px 7px 15px 0px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.spec-feature-card:hover .spec-card-icon-wrap {
    background-color: #128EE6;
    color: #ffffff;
}

.spec-card-body {
    flex: 1;
}

.spec-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.spec-card-desc {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #565656;
    margin: 0;
}

@media (max-width: 991px) {
    .specialties-row-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .section-about {
        padding: 50px 0 30px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .about-img-wrap {
        margin-bottom: 0;
    }
    .about-text-wrap {
        padding-bottom: 0;
        text-align: left;
    }
    .section-specialties {
        padding: 50px 0;
    }
    .specialties-row-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .specialties-title-block {
        text-align: center;
        align-items: center;
    }
    .spec-intro-desc {
        max-width: 100%;
    }
}

/* ==========================================================================
   SEÇÃO 3: NOSSA CLÍNICA (BANNER MOSAICO)
   ========================================================================== */
.section-clinic-banner {
    position: relative;
    background-image: url('../../uploads/nossa-clinica-scaled.jpg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 290px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.clinic-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #010202;
    opacity: 0.5;
    z-index: 1;
}

.clinic-banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.clinic-banner-content {
    max-width: 480px;
    text-align: center;
    margin-left: 4%;
}

.clinic-banner-title {
    font-family: 'Roboto', sans-serif;
    font-size: 58px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.05;
    margin: 0 0 14px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.clinic-banner-btn-wrap {
    display: flex;
    justify-content: center;
}

.btn-clinic-banner {
    display: inline-block;
    background-color: #4BABFF;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 44px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-clinic-banner:hover {
    background-color: #2657A8;
    color: #ffffff;
    transform: scale(1.04);
}

/* ==========================================================================
   SEÇÃO 4: INVISALIGN DESTAQUE
   ========================================================================== */
.section-invisalign-feat {
    background-image: linear-gradient(170deg, #84BAE8 0%, #1A729F 100%);
    padding: 65px 0 75px 0;
    position: relative;
    overflow: hidden;
}

.invisalign-feat-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.invisalign-feat-img {
    flex: 0 0 40%;
    text-align: center;
}

.invisalign-feat-img img {
    max-width: 100%;
    width: 380px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.invisalign-feat-img img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.invisalign-feat-content {
    flex: 1;
    color: #ffffff;
}

.invisalign-feat-content .invisalign-title {
    font-family: 'Poppins', sans-serif;
    font-size: 58px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 18px 0;
}

.invisalign-feat-content p {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.3px;
    color: #ffffff;
    margin: 0;
}

/* ==========================================================================
   SEÇÃO 5: ORIENTAÇÕES & INSTAGRAM
   ========================================================================== */
.section-orientations {
    padding: 70px 0;
    background-color: var(--color-bg-light);
}

.orientations-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.orientations-content .orient-subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.orientations-content .orient-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.orientations-content .orient-desc {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 28px;
}

.orientations-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.orientation-item-card {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid #edf2f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.orientation-item-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.orientation-icon img {
    width: 46px;
    height: 46px;
}

.orientation-text h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.orientation-text p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.5;
}

.instagram-col {
    text-align: center;
}

.instagram-col img {
    max-width: 320px;
    margin: 0 auto;
    transition: transform 0.25s ease;
}

.instagram-col img:hover {
    transform: scale(1.04);
}

/* ==========================================================================
   PÁGINAS INTERNAS (CABEÇALHO & CONTEÚDO)
   ========================================================================== */
.inner-page-header {
    background: linear-gradient(135deg, #037CA4 0%, #339CC2 100%);
    padding: 50px 0;
    color: #ffffff;
    text-align: center;
}

.inner-page-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.inner-page-subtitle {
    font-size: 16px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.inner-content-wrap {
    padding: 60px 0 80px;
}

.inner-content-body {
    background: #ffffff;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.inner-content-body p {
    margin-bottom: 22px;
}

.inner-content-body h2, .inner-content-body h3 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    margin: 30px 0 14px;
}

.inner-content-body ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 22px;
}

.inner-content-body ul li {
    margin-bottom: 8px;
}

/* Team Member Cards (Profissionais) */
.team-member-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.team-member-img {
    flex: 0 0 220px;
    text-align: center;
}

.team-member-img img {
    width: 200px;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member-info {
    flex: 1;
}

.cro-badge {
    display: inline-block;
    background-color: #e0f2fe;
    color: #01A8D5;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #037CA4;
    margin: 0 0 12px 0;
}

.member-credentials {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.member-credentials li {
    font-size: 15px;
    color: #374151;
    margin-bottom: 8px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-credentials li i {
    color: #4EC25F;
    font-size: 16px;
}

.content-media-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* ==========================================================================
   PÁGINA: PROFISSIONAIS (FIDELIDADE 1:1)
   ========================================================================== */
.page-profissionais-wrap {
    padding: 60px 0 90px;
    background-color: #ffffff;
}

.profissionais-header {
    text-align: center;
    margin-bottom: 50px;
}

.profissionais-dash {
    width: 44px;
    height: 1.5px;
    background-color: #6b7280;
    margin: 0 auto 12px;
}

.profissionais-title {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #74C6FE;
    margin: 0;
    line-height: 1.2;
}

.profissionais-cards-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 36px;
    max-width: 780px;
    margin: 0 auto;
}

.prof-card {
    background: #ffffff;
    width: 320px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.08);
    border-radius: 4px;
    padding: 22px 20px 28px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 15px 35px 0px rgba(0,0,0,0.12);
}

.prof-card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
}

.prof-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.prof-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.prof-card-dash {
    width: 18px;
    height: 1.5px;
    background-color: #6b7280;
    margin-bottom: 12px;
}

.prof-card-name {
    font-family: 'Lato', 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #74C6FE;
    margin: 0 0 16px 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.prof-card:hover .prof-card-name {
    color: #7E7F7F;
}

.prof-card-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.8;
    color: #9aa0a6;
    margin: 0 0 22px 0;
    flex: 1;
    text-align: center;
}

.prof-card-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.prof-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #cacaca;
    font-size: 14px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.prof-social-icon.fb:hover {
    color: #3b5998;
}

.prof-social-icon.ig:hover {
    color: #cc3333;
}

.prof-social-icon.in:hover {
    color: #0e76a8;
}

/* ==========================================================================
   PÁGINA: CONTATO & LOCALIZAÇÃO (REDESIGN MODERNO COM GPS)
   ========================================================================== */
.contact-page-wrapper {
    background-color: #f8fafc;
    padding-bottom: 80px;
}

.contact-hero-header {
    background: #ffffff;
    padding: 50px 0 40px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 45px;
}

.contact-header-dash {
    width: 44px;
    height: 2px;
    background-color: #01A8D5;
    margin: 0 auto 14px;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #037CA4;
    margin: 0 0 10px 0;
}

.contact-hero-desc {
    font-size: 16px;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-main-container {
    max-width: 1140px;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 35px;
    align-items: stretch;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.wa-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.map-icon {
    background-color: #e0f2fe;
    color: #0284c7;
}

.contact-card-content {
    flex: 1;
}

.card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #01A8D5;
    background: #f0f9ff;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
}

.card-text {
    font-size: 14.5px;
    color: #64748b;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

/* Botão WhatsApp em Ação */
.btn-wa-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-wa-action:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    color: #ffffff !important;
}

.btn-wa-action i {
    font-size: 22px;
}

.btn-wa-action small {
    font-size: 12px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 6px;
}

/* Endereço e Estacionamento */
.contact-address-text {
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 12px;
}

.contact-address-text strong {
    color: #0f172a;
    font-size: 16px;
}

.parking-info {
    font-size: 13.5px;
    color: #037CA4;
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Botões Como Chegar (Navegação GPS) */
.navigation-actions {
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px;
    border: 1px dashed #cbd5e1;
}

.nav-actions-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.nav-actions-label i {
    color: #01A8D5;
}

.nav-buttons-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-nav-app {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn-nav-app:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.btn-gmaps {
    background-color: #1a73e8;
    color: #ffffff !important;
}

.btn-waze {
    background-color: #33ccff;
    color: #04243b !important;
}

.btn-copy-address {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-address:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.btn-copy-address.copied {
    background: #dcfce7;
    color: #16a34a;
    border-color: #86efac;
}

/* Card Redes & Horários */
.extra-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 24px;
    gap: 20px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #475569;
}

.extra-icon {
    font-size: 20px;
    color: #01A8D5;
}

.extra-item a {
    color: #037CA4;
    font-weight: 600;
    text-decoration: none;
}

.extra-item a:hover {
    text-decoration: underline;
}

/* Card do Mapa */
.contact-map-column {
    display: flex;
}

.map-card-wrapper {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.map-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14.5px;
    color: #1e293b;
}

.map-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-expand-link {
    font-size: 13px;
    color: #01A8D5;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.map-expand-link:hover {
    text-decoration: underline;
}

.map-iframe-container {
    flex: 1;
    min-height: 380px;
    width: 100%;
}

.map-card-footer {
    padding: 16px 22px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.map-footer-text {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.btn-map-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #037CA4;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-map-route:hover {
    background-color: #01A8D5;
}

@media (max-width: 991px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
    }
    .map-iframe-container {
        min-height: 340px;
    }
    .extra-card {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .contact-hero-title {
        font-size: 30px;
    }
    .contact-card {
        padding: 20px;
        flex-direction: column;
    }
    .nav-buttons-wrap {
        flex-direction: column;
    }
    .btn-nav-app, .btn-copy-address {
        width: 100%;
        justify-content: center;
    }
    .btn-wa-action {
        width: 100%;
        justify-content: center;
    }
    .map-card-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-map-route {
        justify-content: center;
    }
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.site-footer {
    width: 100%;
}

.footer-main {
    background-color: var(--color-secondary);
    padding: 60px 0 40px;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 35px;
    align-items: flex-start;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
    color: #e5f2f7;
    margin-bottom: 18px;
}

.btn-ver-mapa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 9px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-ver-mapa:hover {
    background-color: var(--color-accent-green);
    transform: translateX(3px);
}

.footer-whatsapp a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 6px;
}

.footer-whatsapp i {
    color: #25D366;
    font-size: 18px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
}

.footer-invisalign-logo img {
    max-width: 140px;
    height: auto;
}

.footer-link-list li {
    margin-bottom: 10px;
}

.footer-link-list a {
    font-size: 14px;
    color: #e5f2f7;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-link-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Sub-rodapé */
.footer-bottom {
    background-color: var(--color-footer-bottom);
    padding: 16px 0;
    color: #ffffff;
    font-size: 13.5px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-inner a {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom-inner a:hover {
    text-decoration: underline;
}

/* WhatsApp Flutuante */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-whatsapp);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 16px rgba(0, 214, 129, 0.4);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(0, 214, 129, 0.6);
}

/* ==========================================================================
   RESPONSIVIDADE (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 991px) {
    .topbar {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -4px 0 20px rgba(0,0,0,0.12);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 20px 40px;
        transition: right 0.3s ease-in-out;
        z-index: 1050;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid #eeeeee;
        margin-bottom: 16px;
    }

    .mobile-nav-logo {
        max-width: 130px;
        height: auto;
    }

    .mobile-close-btn {
        display: block;
        background: none;
        border: none;
        font-size: 22px;
        color: #333333;
        cursor: pointer;
        padding: 4px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        justify-content: space-between;
        font-size: 16px;
        color: #1f2937;
    }

    .nav-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 10px 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f8fafc;
    }

    .nav-item.dropdown-open .nav-dropdown {
        display: block;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .about-grid,
    .orientations-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-clinic-banner {
        min-height: 240px;
    }

    .clinic-banner-content {
        margin-left: 0;
        max-width: 100%;
    }

    .clinic-banner-title {
        font-size: 42px;
    }

    .invisalign-feat-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .invisalign-feat-img {
        flex: 1 1 100%;
    }

    .invisalign-feat-img img {
        width: 320px;
    }

    .invisalign-feat-content .invisalign-title {
        font-size: 42px;
    }

    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .clinic-banner-title {
        font-size: 32px;
    }

    .btn-clinic-banner {
        padding: 5px 32px;
        font-size: 13px;
    }

    .invisalign-feat-img img {
        width: 260px;
    }

    .invisalign-feat-content .invisalign-title {
        font-size: 34px;
    }

    .invisalign-feat-content p {
        font-size: 14px;
        text-align: left;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .site-logo img {
        max-width: 160px;
    }
}
