.elementor-5741 .elementor-element.elementor-element-1324359{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-5741 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 *//* -------------------------------------------------------------
   1. CONFIGURAÇÕES GERAIS DE RESET
------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   2. SISTEMA DE CONTRASTE (DIRETRIZES DO DR.)
------------------------------------------------------------- */
/* Configuração para seções com Fundo Branco */
.sec-bg-white {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 7%;
}
.sec-bg-white .sec-title {
    color: #0A2441;
}
.sec-bg-white .sec-subtitle {
    color: #475569;
}

/* Configuração para seções com Fundo Azul Escuro */
.sec-bg-blue {
    background-color: #0A2441;
    color: #ffffff;
    padding: 80px 7%;
}
.sec-bg-blue .sec-title,
.sec-bg-blue .sec-subtitle {
    color: #ffffff;
}

/* Elementos de Texto Comuns */
.sec-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title-left {
    text-align: left !important;
    margin-bottom: 20px !important;
}

.sec-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.9;
}

/* -------------------------------------------------------------
   3. BOTÕES E COMPONENTES GERAIS
------------------------------------------------------------- */
.btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 35px;
}

.hero-btn-left {
    justify-content: flex-start;
}

.btn-cta {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 550px;
}

.btn-cta:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Marcação para inserção de mídia futura */
.img-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

/* -------------------------------------------------------------
   4. ESTILIZAÇÃO DETALHADA DAS SEÇÕES
------------------------------------------------------------- */

/* Seção 1: Hero */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 4%;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-support-text {
    font-size: 1.25rem;
    color: #25D366;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-subheadline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
    border-left: 3px solid #ffffff;
    padding-left: 15px;
}

.hero-section .img-placeholder {
    height: 450px;
    border-radius: 20px;
}

.hero-section .img-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Seção 2: Sobre */
.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image-wrapper .img-placeholder {
    height: 480px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: none;
}

.about-image-wrapper .img-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-image-wrapper .about-image {
    border-radius: 20px
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #334155;
    text-align: justify;
}

/* Seção 3: Diferenciais */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-card {
    background-color: #ffffff;
    color: #000000;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
}

.diff-icon {
    font-size: 2rem;
    color: #0A2441;
    margin-bottom: 15px;
}

.diff-card h3 {
    font-size: 1.2rem;
    color: #0A2441;
    margin-bottom: 12px;
    font-weight: 700;
}

.diff-card p {
    font-size: 0.95rem;
    color: #475569;
}

/* Seção 4: Protocolos */
.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.protocol-box {
    border-left: 4px solid #0A2441;
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.protocol-box h3 {
    font-size: 1.3rem;
    color: #0A2441;
    margin-bottom: 10px;
}

.protocol-box p {
    font-size: 1rem;
    color: #334155;
}

/* Seção 5: Jornada */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 12px;
    position: relative;
}

.journey-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #25D366;
    line-height: 1;
    margin-bottom: 15px;
}

.journey-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.journey-card p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Seção 6: Valores */
.footer-border {
    border-bottom: 4px solid #0A2441;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.price-card h3 {
    font-size: 1.3rem;
    color: #0A2441;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0A2441;
    margin-bottom: 15px;
}

.compact-price {
    font-size: 1.6rem !important;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
}

.price-card p {
    font-size: 0.95rem;
    color: #64748b;
}

/* -------------------------------------------------------------
   5. BOTÃO FLUTUANTE DO WHATSAPP
------------------------------------------------------------- */
.wpp-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wpp-floating:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* -------------------------------------------------------------
   6. RESPONSIVIDADE EM DISPOSITIVOS MÓVEIS
------------------------------------------------------------- */
@media (max-width: 768px) {
    .hero-container, .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .title-left {
        text-align: center !important;
    }
    .hero-btn-left {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-subheadline {
        border-left: none;
        padding-left: 0;
    }
    .sec-title {
        font-size: 1.8rem;
    }
    .sec-bg-white, .sec-bg-blue {
        padding: 50px 5%;
    }
    .hero-section .img-placeholder {
        height: 300px;
    }
    .about-image-wrapper .img-placeholder {
        height: 350px;
    }
}

/* -------------------------------------------------------------
   6. RESPONSIVIDADE EM DISPOSITIVOS MÓVEIS (ATUALIZADO)
------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Transforma o grid da primeira seção em flexbox vertical */
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    /* Força a foto a vir primeiro no mobile */
    .hero-image-wrapper {
        order: 1;
    }

    /* Força o texto a vir depois da foto no mobile */
    .hero-text-wrapper {
        order: 2;
    }

    /* Restante dos ajustes mobile */
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .title-left {
        text-align: center !important;
    }
    .hero-btn-left {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-subheadline {
        border-left: none;
        padding-left: 0;
    }
    .sec-title {
        font-size: 1.8rem;
    }
    .sec-bg-white, .sec-bg-blue {
        padding: 50px 5%;
    }
    .about-image-wrapper .img-placeholder {
        height: 350px;
    }

}

/* --- Ajustes da Imagem da Seção Hero --- */
.hero-img {
    width: 100%;
    max-width: 400px; /* Controla o tamanho máximo. Diminua esse valor se quiser ainda menor */
    height: auto;      /* Garante a redução proporcional */
    border-radius: 20px; /* Curvatura das bordas */
    object-fit: cover;
    display: block;
    margin: 0 auto;    /* Centraliza a imagem caso precise */
}

/* --- Ajustes da Imagem da Seção About --- */
.about-img {
    width: 100%;
    max-width: 380px; /* Controla o tamanho máximo. Ajuste conforme achar melhor */
    height: auto;      /* Garante a redução proporcional */
    border-radius: 20px; /* Curvatura das bordas */
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Mantém a sombra elegante que estava no placeholder */
    display: block;
    margin: 0 auto;
}

        .footer-container {
            max-width: 1200px;
            margin: 1rem auto;
        }

        .footer-title {
            text-align: center;
            color: #0A2441;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
        }

        /* Grid dos 3 Cards superiores */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .info-card {
            background: #0A2441;
            border-radius: 16px;
            padding: 30px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #f1f5f9;
        }

        .icon-wrapper {
            background-color: #ffffff;
            color: white;
            border-radius: 12px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon-wrapper .material-symbols-outined {
            font-size: 26px;
        }
        
        .icon-wrapper .material-icons {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: #0a2441; /* 👈 COLOQUE A COR AQUI (Ex: #ffffff é branco) */
}

        .card-content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .card-label {
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-text {
            color: #ffffff;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 600;
        }

        /* Container do Mapa */
        .map-container {
            width: 100%;
            height: 450px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #f1f5f9;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Responsividade para telas menores */
        @media (max-width: 768px) {
            .footer-title {
                font-size: 1.6rem;
            }
            .info-card {
                padding: 20px;
            }
            .map-container {
                height: 350px;
            }
            
            .footer-container {
            max-width: 1200px;
            margin: 0rem auto;
        }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a024d0 *//* garante que não vai surgir barra horizontal */
html, body { overflow-x: hidden; }

.btn-whatsapp{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

.btn-whatsapp:before,
.btn-whatsapp:after{
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  inset: -20px;              /* no lugar de left/right/top/bottom */
  animation: animate 1.5s linear infinite;
  opacity: 0;
  pointer-events: none;
}

.pulsaDelay:after{ animation-delay: 0.5s; }

@keyframes animate{
  0%{ transform: scale(0.5); opacity: 0; }
  50%{ opacity: 1; }
  100%{ transform: scale(1.2); opacity: 0; }
}/* End custom CSS */