.elementor-94330 .elementor-element.elementor-element-3452fb7{--display:flex;--background-transition:0.3s;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94330 .elementor-element.elementor-element-373bc8a{--display:flex;--background-transition:0.3s;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94330 .elementor-element.elementor-element-d60d591{--display:flex;--background-transition:0.3s;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94330 .elementor-element.elementor-element-4bebe53{--display:flex;--background-transition:0.3s;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94330 .elementor-element.elementor-element-c42cad5{--display:flex;--background-transition:0.3s;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94330 .elementor-element.elementor-element-7485856{--display:flex;--background-transition:0.3s;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94330 .elementor-element.elementor-element-4cc1e62{--display:flex;--background-transition:0.3s;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-3452fb7 *//* =========================================
   HERO SECTION - DEFINITIVA
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    /* Substituímos a dependência estrita do 100vh por paddings seguros */
    height: auto;
    min-height: 100vh;
    padding-bottom: 80px; /* Garante uma margem de respiro no final da seção */
    background-image: url('https://mrgdigital.com.br/wp-content/uploads/2026/04/consultorio-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.navbar {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center; /* Centraliza verticalmente no desktop */
    justify-content: space-between;
    gap: 40px;
    color: #ffffff;
    margin-top: 40px; /* Descola o conteúdo da navbar */
}

/* Coluna A: Texto */
.hero-text {
    flex: 1;
    padding-right: 20px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-text .services-list {
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Coluna B: Vídeo */
.hero-video-column {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center; /* Impede que o container estique desproporcionalmente */
}

.video-container {
    width: 100%;
    max-width: 320px;
    /* A MÁGICA ACONTECE AQUI: Força a proporção vertical (9:16) */
    aspect-ratio: 9 / 16;
    height: auto; 
    border-radius: 20px;
    border: 4px solid #066734;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    background: #000;
    /* Garante que o container não encolha (bug do flexbox) */
    flex-shrink: 0; 
}

.presentation-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo preencher todo o espaço reservado */
    display: block;
}

/* =========================================
   RESPONSIVIDADE (Mobile e Tablets)
   ========================================= */
@media (max-width: 992px) {
    .hero-section {
        padding-bottom: 60px; /* Reduz um pouco o respiro no mobile */
    }

    .hero-content {
        flex-direction: column; /* Coloca o vídeo embaixo do texto */
        text-align: center;
        padding-top: 20px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-video-column {
        justify-content: center;
        width: 100%;
    }

    .video-container {
        max-width: 280px; /* Deixa o vídeo um pouco menor no celular */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-de2e645 *//* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 100px 0;
    background-color: #f9f9f9; /* Fundo levemente cinza para destacar os cards brancos */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #066734; /* Seu verde principal */
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #066734; /* Destaque verde no hover */
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Ajustes para Mobile */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* Coluna única no celular */
    }

    .service-card {
        padding: 30px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-373bc8a *//* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa 100% da altura da tela */
    min-height: 600px;
    /* Imagem de fundo do consultório fornecida */
    background-image: url('https://mrgdigital.com.br/wp-content/uploads/2026/04/consultorio-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Sobreposição escura para destacar a logo e os textos brancos */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* 65% de opacidade preta */
    z-index: 1;
}

/* Barra de Navegação */
.navbar {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.logo {
    max-width: 220px;
    height: auto;
    display: block;
}

/* Conteúdo da Hero */
.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alinhado à esquerda, visual moderno */
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 700px;
}

.hero-content .services-list {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

/* Botão CTA com a cor verde do briefing */
.cta-button {
    display: inline-block;
    background-color: #066734; /* Cor verde especificada */
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px; /* Bordas arredondadas para um visual mais amigável */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(6, 103, 52, 0.4);
}

.cta-button:hover {
    background-color: #055229; /* Tom de verde um pouco mais escuro no hover */
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVIDADE (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: center; /* Centraliza a logo no mobile */
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-content .services-list {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e1e5f8e *//* =========================================
   CTA DARK SECTION (Pré-Rodapé)
   ========================================= */
.cta-dark-section {
    background-color: #1a1a1a; /* Fundo escuro para gerar o contraste */
    padding: 100px 0;
}

.cta-card {
    background-color: #ffffff; /* Card branco */
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-top: 8px solid #066734; /* Detalhe com a cor principal */
    position: relative;
    /* Faz o card "subir" um pouco visualmente */
    transform: translateY(-20px); 
}

.cta-card h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Cor oficial do WhatsApp para maior reconhecimento */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Ajustes para Mobile */
@media (max-width: 768px) {
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-d60d591 *//* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa 100% da altura da tela */
    min-height: 600px;
    /* Imagem de fundo do consultório fornecida */
    background-image: url('https://mrgdigital.com.br/wp-content/uploads/2026/04/consultorio-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Sobreposição escura para destacar a logo e os textos brancos */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* 65% de opacidade preta */
    z-index: 1;
}

/* Barra de Navegação */
.navbar {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.logo {
    max-width: 220px;
    height: auto;
    display: block;
}

/* Conteúdo da Hero */
.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alinhado à esquerda, visual moderno */
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 700px;
}

.hero-content .services-list {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

/* Botão CTA com a cor verde do briefing */
.cta-button {
    display: inline-block;
    background-color: #066734; /* Cor verde especificada */
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px; /* Bordas arredondadas para um visual mais amigável */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(6, 103, 52, 0.4);
}

.cta-button:hover {
    background-color: #055229; /* Tom de verde um pouco mais escuro no hover */
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVIDADE (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: center; /* Centraliza a logo no mobile */
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-content .services-list {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8f1a8e9 *//* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-choose-us {
    padding: 100px 0;
    background-color: #ffffff;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 2.5rem;
    color: #066734;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(6, 103, 52, 0.1); /* Verde bem clarinho para o número */
    display: block;
    margin-bottom: -20px;
}

.feature-text h3 {
    font-size: 1.8rem;
    color: #066734;
    margin-bottom: 15px;
    position: relative;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.feature-image {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.final-quote {
    text-align: center;
    margin-top: 100px;
    padding: 40px;
    background-color: #f0f7f3;
    border-radius: 15px;
    border-left: 5px solid #066734;
}

.final-quote p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #066734;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .feature-image img {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-4bebe53 *//* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa 100% da altura da tela */
    min-height: 600px;
    /* Imagem de fundo do consultório fornecida */
    background-image: url('https://mrgdigital.com.br/wp-content/uploads/2026/04/consultorio-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Sobreposição escura para destacar a logo e os textos brancos */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* 65% de opacidade preta */
    z-index: 1;
}

/* Barra de Navegação */
.navbar {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.logo {
    max-width: 220px;
    height: auto;
    display: block;
}

/* Conteúdo da Hero */
.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alinhado à esquerda, visual moderno */
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 700px;
}

.hero-content .services-list {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

/* Botão CTA com a cor verde do briefing */
.cta-button {
    display: inline-block;
    background-color: #066734; /* Cor verde especificada */
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px; /* Bordas arredondadas para um visual mais amigável */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(6, 103, 52, 0.4);
}

.cta-button:hover {
    background-color: #055229; /* Tom de verde um pouco mais escuro no hover */
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVIDADE (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: center; /* Centraliza a logo no mobile */
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-content .services-list {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-18dc042 *//* =========================================
   ABOUT PROFESSIONAL SECTION
   ========================================= */
.about-professional {
    padding: 120px 0;
    background-color: #fdfdfd;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0px #066734; /* Detalhe em verde atrás da foto */
    display: block;
}

.about-text {
    flex: 1.2;
}

.badge {
    display: inline-block;
    background-color: rgba(6, 103, 52, 0.1);
    color: #066734;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Caixa de Estatísticas */
.stats-box {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    padding: 25px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #066734;
}

.stat-desc {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
}

.professional-description {
    margin-bottom: 30px;
}

/* CTA Secundário dentro da secção */
.secondary-cta {
    margin-top: 20px;
    background-color: #066734;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background-color: #044d27;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .about-image img {
        box-shadow: 10px 10px 0px #066734;
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-box {
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-c42cad5 *//* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa 100% da altura da tela */
    min-height: 600px;
    /* Imagem de fundo do consultório fornecida */
    background-image: url('https://mrgdigital.com.br/wp-content/uploads/2026/04/consultorio-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Sobreposição escura para destacar a logo e os textos brancos */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* 65% de opacidade preta */
    z-index: 1;
}

/* Barra de Navegação */
.navbar {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.logo {
    max-width: 220px;
    height: auto;
    display: block;
}

/* Conteúdo da Hero */
.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alinhado à esquerda, visual moderno */
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 700px;
}

.hero-content .services-list {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

/* Botão CTA com a cor verde do briefing */
.cta-button {
    display: inline-block;
    background-color: #066734; /* Cor verde especificada */
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px; /* Bordas arredondadas para um visual mais amigável */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(6, 103, 52, 0.4);
}

.cta-button:hover {
    background-color: #055229; /* Tom de verde um pouco mais escuro no hover */
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVIDADE (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: center; /* Centraliza a logo no mobile */
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-content .services-list {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3a676b7 *//* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #066734; /* Verde principal */
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background-color: rgba(6, 103, 52, 0.1);
    color: #066734;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.client-details h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 3px;
    font-weight: 700;
}

.client-details span {
    font-size: 0.9rem;
    color: #777;
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-7485856 *//* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa 100% da altura da tela */
    min-height: 600px;
    /* Imagem de fundo do consultório fornecida */
    background-image: url('https://mrgdigital.com.br/wp-content/uploads/2026/04/consultorio-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Sobreposição escura para destacar a logo e os textos brancos */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* 65% de opacidade preta */
    z-index: 1;
}

/* Barra de Navegação */
.navbar {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.logo {
    max-width: 220px;
    height: auto;
    display: block;
}

/* Conteúdo da Hero */
.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alinhado à esquerda, visual moderno */
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 700px;
}

.hero-content .services-list {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

/* Botão CTA com a cor verde do briefing */
.cta-button {
    display: inline-block;
    background-color: #066734; /* Cor verde especificada */
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px; /* Bordas arredondadas para um visual mais amigável */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(6, 103, 52, 0.4);
}

.cta-button:hover {
    background-color: #055229; /* Tom de verde um pouco mais escuro no hover */
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVIDADE (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: center; /* Centraliza a logo no mobile */
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-content .services-list {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eda4cd6 *//* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.faq-item h3 {
    color: #066734;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background-color: #1a1a1a; /* Fundo escuro para destacar a logo */
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #066734;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #bbb;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #066734;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    background: #066734;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.google-maps-btn a {
    color: #bbb;
    font-size: 0.9rem;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto 20px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-4cc1e62 *//* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa 100% da altura da tela */
    min-height: 600px;
    /* Imagem de fundo do consultório fornecida */
    background-image: url('https://mrgdigital.com.br/wp-content/uploads/2026/04/consultorio-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Sobreposição escura para destacar a logo e os textos brancos */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* 65% de opacidade preta */
    z-index: 1;
}

/* Barra de Navegação */
.navbar {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.logo {
    max-width: 220px;
    height: auto;
    display: block;
}

/* Conteúdo da Hero */
.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alinhado à esquerda, visual moderno */
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 700px;
}

.hero-content .services-list {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

/* Botão CTA com a cor verde do briefing */
.cta-button {
    display: inline-block;
    background-color: #066734; /* Cor verde especificada */
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px; /* Bordas arredondadas para um visual mais amigável */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(6, 103, 52, 0.4);
}

.cta-button:hover {
    background-color: #055229; /* Tom de verde um pouco mais escuro no hover */
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVIDADE (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: center; /* Centraliza a logo no mobile */
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-content .services-list {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}/* End custom CSS */