/* ===== VARIÁVEIS ===== */
:root {
    --primary: #1e3a5f;
    --primary-dark: #152a45;
    --secondary: #e8b84a;
    --secondary-light: #f0c96a;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevenir overflow horizontal */
html, body {
    overflow-x: hidden;
}

ul {
    list-style: none;
}

/* ===== UTILITÁRIOS ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

.btn-link {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--primary);
}

.btn-link i {
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Logo maior no desktop */
@media (min-width: 769px) {
    .logo img {
        height: 70px;
    }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    font-weight: 400;
    font-size: 1rem;
    color: var(--gray-600);
}

/* ===== PLACEHOLDERS DE IMAGEM ===== */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: var(--radius);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.image-placeholder span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.image-placeholder.small {
    min-height: 200px;
}

.image-placeholder.small i {
    font-size: 3rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--primary);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/fundo.PNG');
    background-size: cover;
    background-position: center 15%;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-200);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* ===== ESPECIALIDADES ===== */
.especialidades {
    padding: 100px 0;
    background: var(--gray-100);
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.especialidade-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.especialidade-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.especialidade-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.especialidade-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.especialidade-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.especialidade-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* ===== SOBRE ===== */
.sobre {
    padding: 100px 0;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 450px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--primary);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.sobre-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    color: var(--primary);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.sobre-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sobre-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.sobre-lista {
    margin: 30px 0;
}

.sobre-lista li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.sobre-lista i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ===== EQUIPE ===== */
.equipe {
    padding: 100px 0;
    background: var(--gray-100);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.dentista-card {
    background: var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dentista-image {
    height: 300px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dentista-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.dentista-info {
    padding: 30px;
    text-align: center;
    background: var(--primary);
}

.dentista-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--white);
}

.dentista-especialidade {
    color: var(--secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.dentista-cro {
    color: var(--gray-300);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.dentista-info p {
    color: var(--gray-300);
    margin-bottom: 20px;
}

.dentista-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.2rem;
}

.dentista-social a:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.diferencial-item {
    text-align: center;
    color: var(--white);
}

.diferencial-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.diferencial-item h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.diferencial-item p {
    color: var(--gray-200);
    font-size: 0.95rem;
}


/* ===== BLOG ===== */
.blog {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-categoria {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-link:hover .btn-link {
    color: var(--primary);
}

.blog-card-link:hover .btn-link i {
    transform: translateX(5px);
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--secondary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===== CONTATO ===== */
.contato {
    background: var(--gray-100);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contato-mapa {
    position: relative;
    background: var(--gray-200);
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.mapa-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    max-width: 280px;
    transition: var(--transition);
}

.mapa-overlay:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.mapa-info strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.mapa-info span {
    display: block;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.mapa-link {
    color: var(--secondary) !important;
    font-weight: 600;
    margin-top: 10px;
}

.mapa-link i {
    margin-right: 5px;
}

.contato-content {
    padding: 60px 50px;
    background: var(--white);
}

.contato-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contato-info-box {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.contato-info-box h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contato-info-box p {
    color: var(--gray-800);
    margin-bottom: 5px;
}

.horarios {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    color: var(--gray-800);
}

.horario-item span:last-child {
    color: var(--gray-600);
}

.contato-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-logo-text span {
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--gray-300);
}

.footer-brand p {
    color: var(--gray-300);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links a,
.footer-especialidades a {
    display: block;
    color: var(--gray-300);
    margin-bottom: 12px;
}

.footer-links a:hover,
.footer-especialidades a:hover {
    color: var(--secondary);
}

.footer-contato a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    margin-bottom: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contato a:hover {
    color: var(--secondary);
}

.footer-contato i {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.footer-credits {
    margin-top: 8px;
    font-size: 0.85rem;
}

.footer-bottom .owlin-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #FFD700,
                 0 0 10px #FFD700,
                 0 0 20px #FFD700,
                 0 0 40px #FFD700;
}

.footer-bottom .owlin-link:hover {
    color: #FFFF00;
    text-shadow: 0 0 10px #FFFF00,
                 0 0 20px #FFFF00,
                 0 0 30px #FFFF00,
                 0 0 50px #FFFF00;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--gray-800);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* ===== RESPONSIVO ===== */

/* Tablet */
@media (max-width: 1024px) {
    .especialidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contato-mapa {
        min-height: 400px;
        order: 2;
    }
    
    .contato-mapa iframe {
        min-height: 400px;
    }
    
    .contato-content {
        order: 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Tipografia Mobile */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Header Mobile */
    .header .container {
        padding: 12px 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 15px;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        opacity: 0;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
    }
    
    .nav-cta {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    /* Especialidades Mobile */
    .especialidades {
        padding: 60px 0;
    }
    
    .especialidades-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .especialidade-card {
        padding: 30px 20px;
    }
    
    .especialidade-icon {
        width: 70px;
        height: 70px;
    }
    
    .especialidade-icon i {
        font-size: 1.8rem;
    }
    
    .especialidade-card h3 {
        font-size: 1.2rem;
    }
    
    /* Sobre Mobile */
    .sobre {
        padding: 60px 0;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sobre-image {
        text-align: center;
    }
    
    .carousel-inner {
        height: 280px;
    }
    
    .carousel-btn {
        width: 38px;
        height: 38px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .sobre-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .sobre-content p {
        text-align: center;
    }
    
    .sobre-lista {
        margin: 20px 0;
    }
    
    .sobre-lista li {
        font-size: 0.95rem;
    }
    
    .sobre-content .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Equipe Mobile */
    .equipe {
        padding: 60px 0;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .dentista-image {
        height: 250px;
    }
    
    .dentista-info {
        padding: 20px;
    }
    
    .dentista-info h3 {
        font-size: 1.3rem;
    }
    
    .dentista-info p {
        font-size: 0.9rem;
    }
    
    /* Diferenciais Mobile */
    .diferenciais {
        padding: 50px 0;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .diferencial-item i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .diferencial-item h3 {
        font-size: 1rem;
    }
    
    .diferencial-item p {
        font-size: 0.85rem;
    }
    
    /* Blog Mobile */
    .blog {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    /* FAQ Mobile */
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 0;
        font-size: 1rem;
        gap: 15px;
    }
    
    .faq-question span {
        flex: 1;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    /* Contato Mobile */
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contato-mapa {
        min-height: 300px;
        order: 2;
    }
    
    .contato-mapa iframe {
        min-height: 300px;
    }
    
    .mapa-overlay {
        top: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 15px;
    }
    
    .mapa-info strong {
        font-size: 1rem;
    }
    
    .mapa-info span {
        font-size: 0.85rem;
    }
    
    .contato-content {
        padding: 40px 20px;
        order: 1;
    }
    
    .contato-content h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .contato-info-box {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .horario-item {
        font-size: 0.95rem;
    }
    
    .contato-buttons .btn {
        padding: 14px 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contato a {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 20px 15px;
        font-size: 0.85rem;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .diferencial-item {
        padding: 0 20px;
    }
    
    .dentista-image {
        height: 220px;
    }
    
    .sobre-content h2,
    .contato-content h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .especialidade-card {
        padding: 25px 15px;
    }
    
    .contato-content {
        padding: 30px 15px;
    }
}