/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variáveis de cores */
:root {
    --primary-blue: #0D6EFD;
    --light-blue: #E9F2FF;
    --dark-blue: #0B5ED7;
    --text-dark: #212529;
    --text-medium: #6C757D;
    --text-light: #6C757D;
    --background-light: #F8F9FA;
    --white: #FFFFFF;
    --black: #000000;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.cta-button:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* Sobre Section */
.sobre-section {
    padding: 80px 0;
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--background-light);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.service-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.service-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Quando Agendar Section */
.quando-agendar-section {
    padding: 80px 0;
    background: var(--background-light);
}

.quando-agendar-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    color: white;
    font-size: 1.8rem;
}

.card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Temas Section */
.temas-section {
    padding: 80px 0;
    background: var(--background-light);
}

.temas-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.temas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tema-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.tema-card:hover {
    transform: translateY(-5px);
}

.tema-image {
    height: 200px;
    overflow: hidden;
}

.tema-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tema-card:hover .tema-image img {
    transform: scale(1.05);
}

.tema-card h3 {
    padding: 20px;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
}



/* Revista Section */
.revista-section {
    padding: 80px 0;
    background: var(--background-light);
    text-align: center;
}

.revista-section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.revista-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.revista-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.revista-cover {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.revista-cover:hover {
    transform: translateY(-5px);
}

/* Depoimentos Section */
.depoimentos-section {
    padding: 80px 0;
    background: var(--white);
}

.depoimentos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--primary-blue);
}

.depoimento p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.depoimento-author {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Agendar Section */
.agendar-section {
    padding: 80px 0;
    background: var(--primary-blue);
    text-align: center;
}

.agendar-section h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-button-final {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-disclaimer {
    margin: 20px 0;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links a {
    color: var(--primary-blue);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-icons {
        justify-content: center;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 15px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .temas-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}


/* Estilos para contadores de estatísticas */
.stats-container {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 5px;
    font-weight: 500;
}

/* Estilos para subtítulos de seção */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Atualização dos cards de temas */
.tema-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tema-card:hover {
    transform: translateY(-5px);
}

.tema-image {
    height: 200px;
    overflow: hidden;
}

.tema-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tema-card:hover .tema-image img {
    transform: scale(1.05);
}

.tema-content {
    padding: 20px;
    flex-grow: 1;
}

.tema-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.tema-content p {
    color: var(--text-medium);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsividade para estatísticas */
@media (max-width: 768px) {
    .stats-container {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-contacts {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Atualização do grid de contatos do rodapé */
.footer-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}



/* Conheça Meu Consultório Section */
.consultorio-section {
    padding: 80px 0;
    background: var(--white);
}

.consultorio-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.consultorio-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.consultorio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.consultorio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.consultorio-image:hover {
    transform: scale(1.05);
}




/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-blue);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin: 0;
    padding: 25px 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(13, 110, 253, 0.05);
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}



/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    line-height: 1;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
        font-size: 24px;
    }
}



.footer-contacts .contact-item a {
    color: var(--white);
}

