/*
Theme Name: 4Health Alphaville
Description: Tema personalizado para o site 4Health Alphaville - Medicina Preventiva e Estética Avançada
Author: 4Health Team
Version: 1.0.0
Text Domain: 4health
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ===== SCROLL SUAVE ===== */
html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}


/* Main Navigation */
.main-nav {
    background: #fff;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: #333;
}

.logo-number {
    color: #25D366;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    margin: 0 20px;
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c5aa0;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #2c5aa0;
    padding-left: 25px;
}

.dropdown-menu li:first-child a {
    background: #2c5aa0;
    color: white;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dropdown-menu li:first-child a:hover {
    background: #1e3d6f;
    color: white;
    padding-left: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-cta {
    background: #2c5aa0;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
    color: white;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    background: #fff;
    min-height: 100vh;
    margin-top: 80px; /* Altura do header fixo */
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 50%, #0f1f3a 100%);
    position: relative;
    margin-top: -80px; /* Compensar margin do main-content */
}

.hero-image {
    width: 100%;
    height: 100%;
}

/* ===== WAVY DIVIDER ===== */
.wavy-divider {
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff"></path></svg>') center/cover no-repeat;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

/* ===== TÍTULOS DAS SEÇÕES ===== */
.section-title {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

/* ===== SEÇÃO QUEM SOMOS ===== */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.image-collage {
    position: relative;
    height: 400px;
}

.image-placeholder {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-1 {
    top: 20px;
    left: 50px;
    z-index: 3;
}

.image-2 {
    bottom: 50px;
    left: 20px;
    z-index: 2;
}

.image-3 {
    top: 100px;
    right: 30px;
    z-index: 1;
}

.golden-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M20,50 Q50,20 80,50 T140,50 T200,50" stroke="%23D4AF37" stroke-width="3" fill="none" opacity="0.6"/></svg>') center/contain no-repeat;
    z-index: 4;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ===== SEÇÃO FOTOS DA CLÍNICA ===== */
.clinic-photos-section {
    padding: 80px 0;
    background: white;
}

.clinic-photos-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.photos-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.photo-item {
    flex: 0 0 calc(33.333% - 14px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.photo-item.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Botões do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 90, 160, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(44, 90, 160, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.photo-placeholder {
    flex: 0 0 300px;
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #2c5aa0;
}

/* Estilos para dots dos carrosséis */
.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dots .dot.active {
    background: #2c5aa0;
}

/* ===== SEÇÃO EQUIPE ===== */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-member-placeholder {
    width: 120px;
    height: 120px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member-placeholder:hover {
    transform: scale(1.05);
}

.team-member-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    z-index: 100;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    display: block;
}

.team-member-circle:hover {
    transform: scale(1.05);
    border-color: #2c5aa0;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.team-member-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-circle:hover img {
    transform: scale(1.1);
}

.featured-member {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.featured-member h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c5aa0;
}

.member-credentials {
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4AF37;
}

.featured-member p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}


/* ===== SEÇÃO TRATAMENTOS ===== */
.treatments-section {
    padding: 80px 0;
    background: white;
}

.treatments-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex !important; /* Mostrar cards lado a lado */
    gap: 30px; /* Espaçamento entre os cards */
    justify-content: center;
    flex-wrap: wrap; /* Para mobile, os cards vão quebrar linha */
}

/* Forçar flexbox no treatments-owl */
#treatments-owl {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    justify-content: center !important;
    align-items: stretch !important;
}

.clinic-photos-carousel {
    display: block !important; /* Garantir que não fique escondido */
}

/* Garantir que os containers dos carrosséis sempre sejam visíveis */
.owl-carousel {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Tratamentos - mostrar lado a lado */
#treatments-owl.owl-carousel {
    display: flex !important;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Desktop - garantir 3 colunas lado a lado */
@media (min-width: 769px) {
    #treatments-owl.owl-carousel {
        display: flex !important;
        flex-direction: row !important;
    }
    
    #treatments-owl .treatment-card {
        flex: 0 1 calc(33.333% - 20px) !important;
        min-width: 280px !important;
        max-width: 350px !important;
    }
}

.treatments-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.treatments-carousel .carousel-btn {
    background: rgba(44, 90, 160, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.treatments-carousel .carousel-btn:hover {
    background: rgba(44, 90, 160, 1);
    transform: scale(1.1);
}

.treatments-carousel .carousel-prev {
    margin-left: 20px;
}

.treatments-carousel .carousel-next {
    margin-right: 20px;
}

.treatments-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* ===== CARROSSEL DE FOTOS DA CLÍNICA ===== */
.clinic-photos-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.clinic-photos-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.clinic-photos-carousel .carousel-btn {
    background: rgba(44, 90, 160, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.clinic-photos-carousel .carousel-btn:hover {
    background: rgba(44, 90, 160, 1);
    transform: scale(1.1);
}

.clinic-photos-carousel .carousel-prev {
    margin-left: 20px;
}

.clinic-photos-carousel .carousel-next {
    margin-right: 20px;
}

.clinic-photos-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.treatments-container {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.treatment-card {
    display: block; /* Sempre visível */
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

/* Navegação simples do carrossel */
.simple-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
}

.simple-btn {
    background: #2c5aa0;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.simple-btn:hover {
    background: #1e3f73;
    transform: scale(1.1);
}

.carousel-info {
    font-size: 16px;
    font-weight: 600;
    color: #2c5aa0;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 20px;
}

/* Estilos para navegação do carrossel de fotos */
.photos-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.photos-btn {
    background: #2c5aa0;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.photos-btn:hover {
    background: #1e3f73;
    transform: scale(1.1);
}

.photos-info {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Garantir que as fotos sejam visíveis */
#clinic-photos-owl .photo-item {
    display: none;
}

#clinic-photos-owl .photo-item:nth-child(1),
#clinic-photos-owl .photo-item:nth-child(2),
#clinic-photos-owl .photo-item:nth-child(3) {
    display: block;
}

/* Garantir que os cards de tratamento sejam visíveis lado a lado */
#treatments-owl .treatment-card {
    display: block !important;
    opacity: 1 !important;
    flex: 1 1 auto;
    min-width: 280px;
    max-width: 350px;
}

.photos-container {
    cursor: grab;
}

.photos-container:active {
    cursor: grabbing;
}

.treatments-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.treatment-card.dark {
    background: #2c3e50;
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.treatment-card.dark:hover {
    transform: translateY(-5px);
}

.treatment-card.dark h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.treatment-card.dark p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ecf0f1;
}

.treatment-btn {
    display: inline-block;
    background: #D4AF37;
    color: #2c3e50;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.treatment-btn:hover {
    background: #B8941F;
    transform: translateY(-2px);
}

/* ===== SEÇÃO WHATSAPP ===== */
.whatsapp-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.whatsapp-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 30px 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== SEÇÃO LOCALIZAÇÃO ===== */
.location-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #2c5aa0;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-section h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-brand .footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-brand .footer-logo .logo-number {
    color: #25D366;
}

.footer-description {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D4AF37;
    transform: translateY(-3px);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact .contact-item i {
    color: #D4AF37;
    margin-right: 10px;
    margin-top: 5px;
    width: 20px;
}

.footer-contact .contact-item div {
    flex: 1;
}

.footer-contact .contact-item strong {
    display: block;
    color: #D4AF37;
    margin-bottom: 5px;
}

.footer-contact .contact-item p {
    margin: 0;
    color: #ecf0f1;
}

.schedule span {
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #ecf0f1;
}

.footer-bottom p {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links-bottom a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
}

.footer-links-bottom a:hover {
    text-decoration: underline;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1e3d6f;
    color: white;
}

/* ===== MENU MOBILE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #2c5aa0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #2c5aa0;
    color: white;
}

.mobile-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-logo .logo-number {
    color: #D4AF37;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #2c5aa0;
    padding-left: 30px;
}

.mobile-dropdown .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown .dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    background: #f8f9fa;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-dropdown-menu a {
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    color: #666;
}

.mobile-dropdown-menu a:hover {
    background: #e9ecef;
    color: #2c5aa0;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-btn-cta {
    display: block;
    width: 100%;
    background: #2c5aa0;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-btn-cta:hover {
    background: #1e3d6f;
    color: white;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Clinic Photos Carousel Mobile */
    .photo-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .photo-item img {
        height: 200px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .btn-cta {
        display: none;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-collage {
        height: 300px;
    }
    
    .image-placeholder {
        width: 100px;
        height: 100px;
        font-size: 10px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .team-member-placeholder {
        width: 80px;
        height: 80px;
        font-size: 10px;
    }
    
    .treatments-container {
        flex-direction: column;
    }
    
    .treatment-card.dark {
        flex: 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    /* About Section Mobile */
    .about-text p {
        font-size: 14px;
    }
    
    /* Team Section Mobile */
    .featured-member {
        padding: 20px;
    }
    
    .member-details h3 {
        font-size: 1.5rem;
    }
    
    
    /* Treatments Mobile */
    .treatments-carousel,
    #treatments-owl.owl-carousel {
        padding: 0 10px;
        flex-direction: column; /* Empilhar verticalmente em mobile */
        gap: 20px;
    }
    
    .treatment-card,
    #treatments-owl .treatment-card {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 100% !important;
    }
    
    /* WhatsApp Section Mobile */
    .whatsapp-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .whatsapp-text h2 {
        font-size: 1.5rem;
    }
    
    /* Map Mobile */
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .main-header {
        position: relative;
    }
    
    
    .main-nav {
        padding: 10px 0;
    }
    
    /* Clinic Photos Carousel Small Mobile */
    .photo-item {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .photos-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .mobile-menu-content {
        width: 100%;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .mobile-dropdown-menu a {
        padding: 10px 15px 10px 30px;
        font-size: 13px;
    }
    
    .mobile-menu-footer {
        padding: 15px;
    }
    
    .mobile-btn-cta {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Hero Section Small Mobile */
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }
    
    /* Section Titles Small Mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    /* About Section Small Mobile */
    .image-collage {
        height: 250px;
    }
    
    .image-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .about-text p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* Team Section Small Mobile */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .team-member-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .featured-member {
        padding: 15px;
    }
    
    .member-details h3 {
        font-size: 1.3rem;
    }
    
    .member-details p {
        font-size: 13px;
    }
    
    
    /* Treatments Small Mobile */
    .treatment-card.dark {
        padding: 20px 15px;
    }
    
    .treatment-card.dark h3 {
        font-size: 1.2rem;
    }
    
    .treatment-card.dark p {
        font-size: 13px;
    }
    
    /* WhatsApp Small Mobile */
    .whatsapp-text h2 {
        font-size: 1.3rem;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Map Small Mobile */
    .map-container iframe {
        height: 250px;
    }
    
    /* Footer Small Mobile */
    .footer-content {
        padding: 40px 0;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-contact .contact-item {
        gap: 10px;
    }
    
    .footer-contact .contact-item i {
        font-size: 16px;
    }
    
    .footer-contact .contact-item strong {
        font-size: 14px;
    }
    
    .footer-contact .contact-item p {
        font-size: 12px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 5px;
    }
    
    /* WhatsApp Float Small Mobile */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .back-to-top {
        bottom: 70px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== PÁGINA DE RESULTADOS ===== */
.results-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.results-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.results-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
    font-weight: 500;
}

.results-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.results-filters {
    padding: 60px 0;
    background: #f8f9fa;
}

.filters-container h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c5aa0;
    font-size: 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: white;
    border: 2px solid #2c5aa0;
    color: #2c5aa0;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.results-gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.result-item:hover .result-image img {
    transform: scale(1.05);
}

.result-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(44, 90, 160, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.result-info {
    padding: 20px;
    text-align: center;
}

.result-info h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.result-info p {
    color: #666;
    font-size: 14px;
}

.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.author-info h4 {
    color: #2c5aa0;
    margin-bottom: 5px;
}

.author-info span {
    color: #D4AF37;
    font-weight: 600;
    font-size: 14px;
}

.results-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-phone {
    background: #D4AF37;
    color: #2c5aa0;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: #B8941F;
    transform: translateY(-2px);
    color: #2c5aa0;
}

/* Responsividade para Resultados */
@media (max-width: 768px) {
    .results-title {
        font-size: 2.5rem;
    }

    .results-subtitle {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        justify-content: center;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-whatsapp,
    .btn-phone {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Animações para Resultados */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PÁGINAS DE BLOG ===== */
.site-main {
    padding: 40px 0;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.posts-container {
    display: grid;
    gap: 40px;
}

.post-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

.post-content-wrapper {
    padding: 30px;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.entry-title a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #1e3d6f;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: #1e3d6f;
}

.entry-content {
    line-height: 1.6;
    color: #555;
}

.entry-content p {
    margin-bottom: 15px;
}

.entry-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2c5aa0;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
    color: white;
}

.page-links {
    margin: 30px 0;
    text-align: center;
}

.page-links a {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: #1e3d6f;
}

.pagination {
    margin: 50px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination .nav-links a,
.pagination .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #2c5aa0;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .nav-links a:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.pagination .nav-links .current {
    background: #2c5aa0;
    color: white;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.no-results .page-title {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 2rem;
}

.no-results .page-content {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.no-results .page-content a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.no-results .page-content a:hover {
    text-decoration: underline;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsividade para Blog */
@media (max-width: 768px) {
    .post-header,
    .post-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagination .nav-links {
        gap: 5px;
    }
    
    .pagination .nav-links a,
    .pagination .nav-links span {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
