/* Importando fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&family=Montserrat:wght@400;500;600;700&display=swap');

/* Variáveis de cores */
:root {
    --primary-color: #5D4037; /* Marrom principal */
    --secondary-color: #8D6E63; /* Marrom secundário */
    --accent-color: #D7CCC8; /* Cor de destaque */
    --text-color: rgb(56, 56, 56); /* Cor de texto principal - alterada para cinza */
    --light-color: rgb(237, 237, 236); /* Cor clara para fundos */
    --white-color: #FFFFFF; /* Branco puro */
    --button-color: rgb(87, 114, 75); /* Cor verde para botões */
}

/* Reset e estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Menu de Navegação */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin: 5px 0;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu li a {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--button-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover:after {
    width: 100%;
}

.nav-cta {
    background-color: var(--button-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    margin-left: 10px;
}

.nav-cta:hover {
    background-color: var(--primary-color);
}

.nav-menu li a.nav-cta:after {
    display: none;
}

.menu-toggle {
    display: none; /* Oculto por padrão no desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 40px;
    width: 40px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    left: 0;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

/* Responsividade do menu */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .menu-toggle.active .hamburger:before {
        transform: translateX(-50%) rotate(45deg);
        top: 0;
    }
    
    .menu-toggle.active .hamburger:after {
        transform: translateX(-50%) rotate(-45deg);
        top: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px; /* Ajustado para não cobrir o CRM */
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px); /* Ajustado para não cobrir o CRM */
        background-color: var(--white-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 30px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu li a {
        font-size: 18px;
    }
    
    .nav-cta {
        margin: 20px 0 0 0;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-right: 15px;
    font-size: 14px;
    text-align: center;
}

.btn-primary {
    background-color: var(--button-color);
    color: rgb(237, 237, 236);
    border: 2px solid var(--button-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--button-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--button-color);
    border: 2px solid var(--button-color);
}

.btn-secondary:hover {
    background-color: var(--button-color);
    color: rgb(237, 237, 236);
}

/* Seção Hero */
.hero-section {
    background-color: var(--light-color);
    padding: 120px 0 80px 0;
    overflow: hidden;
    margin-top: 0;
}

/* Utilitários */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline;
    }
}

/* Estilos para o texto do CRM */
.crm-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Ajustes para o desktop */
@media (min-width: 769px) {
    .hero-mobile-image {
        display: none;
    }
    
    .hero-content .mobile-title {
        display: none;
    }
    
    .hero-content .mobile-crm {
        display: none;
    }
    
    .hero-content .desktop-title {
        display: block;
    }
    
    .desktop-crm {
        margin-bottom: 5px;
    }
    
    .desktop-section-title {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 20px;
        position: relative;
    }
    
    .desktop-section-title .title-icon {
        position: relative;
        top: -10px;
        margin-right: 10px;
    }
}

.hero-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    text-align: left;
}

.hero-content h1 {
    font-family: 'Antic Didone', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--text-color);
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 600;
}

.hero-content h3 {
    font-family: 'Antic Didone', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 600px;
}

.hero-content p:last-of-type {
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }
    
    .feedback-slide {
        width: 100%;
        flex: 0 0 100%;
        margin: 0;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* Título mobile */
    .hero-content .mobile-title {
        order: 1;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
        font-family: 'Antic Didone', serif;
        display: block;
    }
    
    /* CRM no mobile */
    .hero-content .mobile-crm {
        order: 2;
        margin-bottom: 15px;
        text-align: center;
    }
    
    /* Esconder título desktop no mobile */
    .hero-content .desktop-title {
        display: none;
    }
    
    /* Esconder a imagem desktop no mobile */
    .hero-container .hero-image {
        display: none;
    }
    
    /* Mostrar e estilizar a imagem mobile */
    .hero-mobile-image {
        display: block;
        order: 3;
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
        text-align: center;
    }
    
    .hero-mobile-image img {
        max-width: 100%;
        display: block;
        margin-bottom: 15px;
    }
    
    /* Estilizar o botão mobile */
    .mobile-button {
        margin: 15px 0 20px;
        text-align: center;
    }
    
    .mobile-button .btn {
        display: inline-block;
        margin: 0 auto;
    }
    
    /* Segundo h2 (antigo h1) */
    .hero-content h2:not(.desktop-title) {
        order: 4;
        font-size: 28px;
        font-weight: 600;
        margin-top: 20px;
        font-family: 'Antic Didone', serif;
    }
    
    /* Mostrar os parágrafos, mas esconder o botão original */
    .hero-content p:not(.crm-info) {
        order: 5;
        display: block;
        margin-top: 15px;
    }
    
    .hero-buttons {
        display: none;
    }
    
    /* Esconder o texto original do h2 no mobile */
    .hero-content h2 span {
        display: none;
    }
    
    .for-whom-section .section-title {
        justify-content: center;
        position: relative;
    }
    
    .for-whom-section .section-title h2 {
        text-align: center;
    }
    
    .for-whom-section .title-icon {
        position: absolute;
        top: -15px;
        left: -15px;
        margin-right: 0;
        margin-left: 0;
    }
}

/* Seção Tratamentos */
.treatments-section {
    background-color: var(--light-color);
    padding: 80px 0;
    width: 100%;
}

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

.treatments-section .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.treatments-section .section-title h2 {
    font-family: 'Antic Didone', serif;
    font-size: 42px;
    color: var(--text-color);
    font-weight: normal;
    margin-bottom: 15px;
}



.treatments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.treatment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    margin-bottom: 30px;
    min-height: 220px;
}

.treatment-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: var(--text-color);
    max-width: 180px;
    line-height: 1.4;
    margin-top: 0;
}

.treatments-buttons {
    margin-top: 40px;
}

/* Seção Feedback dos Pacientes */
.feedback-section {
    background-color: var(--light-bg-color);
    padding: 80px 0;
    width: 100%;
}

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

/* Carrossel de Feedback */
.feedback-carousel {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 40px auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    flex-wrap: nowrap;
}

.feedback-slide {
    width: 31%;
    flex: 0 0 31%;
    padding: 25px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 320px;
    margin: 0 1.166%;
}

@media (max-width: 768px) {
    .feedback-slide {
        width: 100%;
        flex: 0 0 100%;
        margin: 0;
    }
}

.feedback-stars {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.feedback-content {
    font-style: italic;
    overflow: hidden;
    flex-grow: 1;
    margin-bottom: 20px;
}

.feedback-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.feedback-author {
    font-weight: 600;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: auto;
}

.feedback-author p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--text-color);
    margin: 0;
    text-align: right;
}

.feedback-author .feedback-date {
    font-weight: 400;
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.carousel-control {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--button-color);
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    color: var(--primary-color);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--button-color);
    transform: scale(1.2);
}

/* Responsividade para a seção de tratamentos */
@media (max-width: 768px) {
    .treatments-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .treatment-item {
        width: 100%;
        max-width: 280px;
        margin-bottom: 0;
    }
    
    .treatment-image {
        width: 180px;
        height: 180px;
    }
    
    .treatment-item h3 {
        font-size: 18px;
        margin-top: 15px;
        max-width: 240px;
    }
    
    /* Responsividade para a seção de feedback */
    .feedback-section .section-title h2 {
        font-size: 32px;
    }
    
    .feedback-carousel {
        max-width: 90%;
    }
    
    .feedback-slide {
        flex: 0 0 100%;
        margin: 0;
        padding: 20px;
        height: auto;
        min-height: 250px;
    }
    
    .feedback-stars {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .feedback-content {
        margin: 15px 0;
    }
    
    .feedback-content p {
        font-size: 15px;
    }
    
    .feedback-author p {
        font-size: 16px;
        margin-top: 10px;
    }
    
    .carousel-controls {
        margin-top: 20px;
    }
    
    .title-underline {
        width: 250px;
    }
}

/* Seção Apresentação */
.about-section {
    background-color: rgb(237, 237, 236);
    padding: 80px 0;
    width: 100%;
}

/* Seção Por que escolher a Dra. Ana Lydia? */
.why-choose-section {
    background-color: #e4d8cf;
    padding: 80px 0;
    width: 100%;
}

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

.why-choose-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.why-choose-section .title-icon {
    margin-right: 15px;
}

.why-choose-section .title-icon-img {
    width: 40px;
    height: 40px;
}

.why-choose-section .section-title h2 {
    font-family: 'Antic Didone', serif;
    font-size: 42px;
    color: var(--text-color);
    font-weight: normal;
    margin: 0;
}

.why-choose-section .section-title .accent-color {
    color: var(--accent-color);
}

.why-choose-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
    align-items: flex-start;
}

.why-choose-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding-right: 20px;
}

.why-choose-text p {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.why-choose-text .intro-text {
    font-weight: 500;
}

.why-choose-button {
    margin-top: 30px;
}

.why-choose-features {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    margin-top: 0;
}

.feature-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;
}

/* Responsividade para a seção Por que escolher */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-section .section-title {
        margin-bottom: 30px;
    }
    
    .why-choose-section .title-icon-img {
        width: 30px;
        height: 30px;
    }
    
    .why-choose-section .section-title h2 {
        font-size: 32px;
    }
    
    .why-choose-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-choose-text {
        max-width: 100%;
        padding-right: 0;
    }
    
    .why-choose-button {
        display: flex;
        justify-content: center;
    }
    
    .why-choose-features {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .why-choose-text p {
        font-size: 15px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        padding: 12px;
    }
    
    .feature-content h3 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 14px;
        margin-bottom: 0;
    }
}

.about-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.about-image {
    width: 40%;
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
}

.about-content {
    width: 60%;
    padding: 40px 50px;
    background-color: rgb(205, 214, 223);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-content h2 {
    font-family: 'Antic Didone', serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: normal;
}

.about-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: normal;
    text-align: left;
}

.about-content ul {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
    padding-left: 20px;
    text-align: left;
}

.about-content li {
    margin-bottom: 10px;
    position: relative;
}

.crm-info {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: normal;
}

.about-button {
    margin-top: 30px;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        width: 70%;
        margin: 0 auto 30px auto;
        padding-right: 0;
    }
    
    .about-content {
        padding: 35px;
        width: 100%;
        margin: 0 auto;
        border-radius: 16px;
    }
    
    .about-content h2 {
        text-align: center;
    }
    
    .about-content ul {
        text-align: left;
        padding-left: 20px;
    }
    
    .about-button {
        text-align: center;
    }
}

/* Seção Para Quem é o Atendimento */
.for-whom-section {
    background-color: var(--light-color);
    padding: 80px 0;
    width: 100%;
}

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

.section-title {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section-title h2 {
    font-family: 'Antic Didone', serif;
    font-size: 42px;
    color: var(--text-color);
    font-weight: normal;
    position: relative;
    margin: 0;
    padding: 0;
}

.title-icon {
    position: relative;
    margin-right: 5px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    top: -25px;
}

.title-icon-img {
    height: 45px;
    width: auto;
}

.accent-color {
    color: var(--button-color);
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
    margin-top: 50px;
}

.for-whom-buttons {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.for-whom-card {
    display: flex;
    position: relative;
}

.card-image {
    width: 50%;
    position: relative;
}

.card-image img {
    width: 100%;
    height: auto;
}

.card-text {
    width: 50%;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
}

/* Responsividade para a seção Para Quem */
@media (max-width: 992px) {
    .for-whom-section {
        padding: 60px 0;
    }
    
    .for-whom-grid {
        grid-gap: 40px;
    }
}

@media (max-width: 768px) {
    .for-whom-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .title-icon-img {
        height: 35px;
    }
    
    .for-whom-card {
        flex-direction: row;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Responsividade para iPhone e dispositivos pequenos */
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-image {
        display: none; /* Oculta a imagem na versão mobile */
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        width: 100%;
    }
    
    /* Ajustes específicos para a seção Para Quem é o Atendimento */
    .for-whom-section {
        padding: 40px 0;
    }
    
    .for-whom-container {
        padding: 0 15px;
    }
    
    .section-title {
        margin-bottom: 25px;
    }
    
    .title-icon {
        top: -25px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .title-icon-img {
        height: 30px;
    }
    
    .for-whom-grid {
        grid-gap: 25px;
        margin-top: 30px;
    }
    
    .for-whom-card {
        flex-direction: row;
    }
    
    .card-image {
        width: 40%;
    }
    
    .card-text {
        width: 60%;
        padding: 0 10px;
    }
    
    .card-text p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-content {
        padding: 20px;
        width: 90%;
        margin: 0 auto;
    }
    
    .about-content h2 {
        font-size: 30px;
    }
    
    .about-content p,
    .about-content ul {
        font-size: 15px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .section-title h2 {
        font-size: 24px;
    }
    
    .title-icon-img {
        height: 25px;
    }
    
    .for-whom-card {
        margin: 0 auto;
    }
    
    .card-image {
        width: 35%;
    }
    
    .card-text {
        width: 65%;
    }
    
    .card-text p {
        font-size: 13px;
    }
}

/* Seção Meu Consultório */
.office-section {
    padding: 60px 0;
    background-color: var(--white-color);
}

.office-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.office-description {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    padding: 0 20px;
}

.office-description p {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.office-description .intro-text {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
}

.office-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #ffffff;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

/* Responsividade para a galeria */
@media (max-width: 768px) {
    .gallery-item {
        width: 45%;
    }
    
    .gallery-img {
        height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .office-gallery {
        padding: 0 5px;
    }
    
    .gallery-item {
        width: 100%;
        margin-bottom: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .gallery-img {
        height: auto;
        max-height: 350px;
        object-fit: contain;
        background-color: #f9f9f9;
        padding: 5px;
    }
    
    .office-description {
        padding: 0 10px;
    }
}

/* Estilos da seção de contato e localização */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 0 30px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-item p, 
.contact-item a {
    font-size: 16px;
    color: var(--text-color-light);
    line-height: 1.6;
}

.contact-item a {
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.address-link {
    display: inline-block;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilos do rodapé */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-social a {
    color: white;
    font-size: 24px;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
}

.footer-social a:hover {
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* Botão flutuante de WhatsApp */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

#whatsapp-button i {
    font-size: 30px;
}

#whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Responsividade para contato e rodapé */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    #whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    #whatsapp-button i {
        font-size: 26px;
    }
}
