.elementor-194 .elementor-element.elementor-element-c6543fc{--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;}.elementor-194 .elementor-element.elementor-element-78b3710{--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;}.elementor-194 .elementor-element.elementor-element-85fcef9{--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;}.elementor-194 .elementor-element.elementor-element-71305d2{--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;}/* Start custom CSS for html, class: .elementor-element-af779fc *//* --- Estilos do Slider Principal (Home) --- */

/* --- Estilos do Botão Laranja (Slider) --- */

.adv-btn {
    display: inline-flex;
    align-items: center;
    background-color: #FE3D00;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(254, 61, 0, 0.4);
    margin-top: 10px;
}

.adv-btn:hover {
    background-color: #d13200;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(254, 61, 0, 0.5);
    color: #ffffff;
}

/* Seta do botão com animação no hover */
.adv-btn .arrow-icon {
    margin-left: 15px;
    background-color: #ffffff;
    color: #FE3D00;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.adv-btn:hover .arrow-icon {
    transform: translateX(5px); /* Empurra a seta levemente para o lado */
}

/* Botão no Celular */
@media (max-width: 480px) {
    .adv-btn { 
        width: 100%; 
        justify-content: center; 
        padding: 14px 20px;
    }
}
.home-hero-slider {
    margin-top: -175px; /* Compensa o menu fixo */
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa 100% da altura da tela */
    min-height: 650px;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
    background-color: #061C2D;
}

/* Estilo individual de cada Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0; /* Começa invisível */
    transition: opacity 0.8s ease-in-out; /* Transição suave de fade */
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 200px 20px 100px 20px; /* Padding superior longo para não esconder no menu */
}

/* Slide Ativo */
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Conteúdo dentro do slide */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    color: #ffffff;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.hero-slide.active .hero-content {
    transform: translateY(0); /* Anima o texto subindo suavemente ao trocar o slide */
}

/* Badge (Etiqueta) */
.hero-badge {
    display: inline-block;
    background-color: rgba(254, 61, 0, 0.15);
    color: #FF8560;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(254, 61, 0, 0.3);
}

/* Título */
.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title strong {
    font-weight: 800;
    color: #ffffff;
}

/* Linha laranja */
.hero-divider {
    height: 4px;
    width: 70px;
    background-color: #FE3D00;
    margin-bottom: 25px;
    border-radius: 2px;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
    color: #E2E8F0;
}

/* Botões de navegação (Setas) */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.slider-nav:hover {
    background-color: #FE3D00;
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

/* Bolinhas de paginação */
.slider-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #FE3D00;
    transform: scale(1.3);
}

/* --- Responsividade --- */
@media (max-width: 900px) {
    .hero-slide {
        background-position: right center; /* Ajusta o foco da imagem no mobile */
        padding-top: 150px;
        justify-content: center;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title { font-size: 2.8rem; }
    .slider-nav { display: none; } /* Esconde as setas no celular para não poluir, deixa só bolinhas */
}

@media (max-width: 480px) {
    .home-hero-slider { min-height: 600px; height: auto; }
    .hero-slide { padding-top: 180px; padding-bottom: 80px; position: relative; opacity: 1; display: none; 
        padding-top:350px !important;
    }
    .hero-slide.active { display: flex; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; text-align: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-608266f *//* --- Seção Sobre Nós --- */

.sobre-nos-section {
    padding: 100px 20px;
    background-color: #F8FAFC; /* Um cinza bem claro para diferenciar da seção branca de áreas */
    font-family: 'DM Sans', sans-serif;
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Intro e Textos Institucionais */
.sobre-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background-color: rgba(254, 61, 0, 0.1);
    color: #FE3D00;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.sobre-main-title {
    font-size: 2.6rem;
    color: #061C2D;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sobre-main-title strong {
    color: #FE3D00;
}

.sobre-description {
    font-size: 1.1rem;
    color: #5A6A78;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Grid de Sócios */
.socios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Cards dos Sócios */
.socio-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(6, 28, 45, 0.08);
    border-top: 4px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
}

.socio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 28, 45, 0.12);
    border-top-color: #FE3D00;
}

.socio-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.socio-name {
    font-size: 1.6rem;
    color: #061C2D;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.socio-role {
    font-size: 0.9rem;
    color: #FE3D00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.socio-resume {
    font-size: 1.05rem;
    color: #061C2D;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Lista de Atributos do Sócio */
.socio-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.socio-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.socio-features-list li:last-child {
    margin-bottom: 0;
}

.socio-features-list li i {
    color: #FE3D00;
    font-size: 1.2rem;
    margin-top: 4px;
    min-width: 20px;
    text-align: center;
}

.socio-features-list li div {
    font-size: 0.95rem;
    color: #5A6A78;
    line-height: 1.6;
}

.socio-features-list li strong {
    color: #061C2D;
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .socios-grid {
        grid-template-columns: 1fr; /* Empilha os cards no tablet/mobile */
        gap: 30px;
    }
    
    .sobre-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .sobre-nos-section {
        padding: 60px 20px;
    }
    
    .sobre-main-title {
        font-size: 1.8rem;
    }
    
    .socio-card {
        padding: 25px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ea42de6 *//* --- Seção de Áreas de Atuação (Home) --- */

.home-areas-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden; /* Evita que a decoração vaze a tela */
}

.home-areas-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- Lado Esquerdo: Conteúdo e Lista --- */
.home-areas-content {
    flex: 1;
    max-width: 550px;
}

.areas-main-title {
    font-size: 2.2rem;
    color: #061C2D;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.areas-divider {
    height: 3px;
    width: 60px;
    background-color: #FE3D00;
    margin-bottom: 40px;
    border-radius: 2px;
}

.areas-list {
    display: flex;
    flex-direction: column;
}

/* Item da lista (Link interativo) */
.area-item {
    display: block;
    text-decoration: none;
    padding: 25px 0;
    border-bottom: 1px solid #E0E5E9;
    transition: padding-left 0.3s ease;
}

.area-item:first-child {
    border-top: 1px solid #E0E5E9;
}

.area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.area-header h3 {
    font-size: 1.4rem;
    color: #061C2D;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.area-icon {
    font-size: 1.6rem;
    color: #FE3D00;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
}

.area-item p {
    font-size: 1rem;
    color: #5A6A78;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* Efeito Hover do Item */
.area-item:hover {
    padding-left: 15px;
    border-bottom-color: #FE3D00;
}

.area-item:hover .area-header h3 {
    color: #FE3D00;
}

.area-item:hover .area-icon {
    transform: rotate(90deg);
}

/* --- Lado Direito: Imagem com Aros em formato Til (~) --- */
.home-areas-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Imagem Principal */
.areas-image {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 30px; /* Corte Folha/Gota moderno */
    z-index: 2;
    position: relative;
    box-shadow: 0 20px 50px rgba(6, 28, 45, 0.15);
    /* Como sua imagem nova já é cinza, não usaremos grayscale aqui.
       Vamos apenas adicionar um ganho de cor (saturate) no hover */
    transition: filter 0.5s ease;
}

.home-areas-image-wrapper:hover .areas-image {
    filter: saturate(140%); /* Realça as cores da foto ao passar o mouse */
}

/* --- Forma Decorativa de TIL (~) --- */
.decorative-tilde {
    position: absolute;
    width: 140%; /* Aumenta a área para abraçar bem a foto */
    height: 140%;
    z-index: 1;
    
    /* Aqui está o segredo: Um SVG desenhando duas curvas suaves tipo "Til", 
       uma na cor laranja e a outra na cor azul escura. */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3C!-- Linha Laranja --%3E%3Cpath d='M 0 70 C 30 -10, 70 110, 100 30' fill='none' stroke='%23FE3D00' stroke-width='1.5' stroke-linecap='round' /%3E%3C!-- Linha Azul (Levemente abaixo) --%3E%3Cpath d='M 0 80 C 30 0, 70 120, 100 40' fill='none' stroke='%23061C2D' stroke-width='1.5' stroke-linecap='round' /%3E%3C/svg%3E");
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
    /* Pequeno ajuste de rotação para deixar o ~ num ângulo mais dinâmico */
    transform: rotate(-10deg);
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .home-areas-container {
        flex-direction: column;
    }
    
    .home-areas-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .home-areas-image-wrapper {
        min-height: 400px;
        width: 100%;
    }

    .areas-image {
        width: 250px;
        height: 250px;
    }
    
    .decorative-tilde {
        width: 110%;
        height: 140%;
    }
}

@media (max-width: 480px) {
    .home-areas-section {
        padding: 60px 20px;
    }
    
    .areas-main-title {
        font-size: 1.8rem;
    }

    .area-header h3 {
        font-size: 1.2rem;
    }

    .areas-image {
        width: 200px;
        height: 200px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d910fe2 *//* --- Seção Atendimento Brasil --- */

.brasil-atendimento-section {
    padding: 100px 20px;
    background-color: #061C2D; /* Fundo azul escuro para dar contraste com o mapa */
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
}

.brasil-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Lado do Texto */
.brasil-content {
    flex: 1;
    z-index: 2;
}

.brasil-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.brasil-title strong {
    color: #FE3D00; /* Destaque no Brasil em Laranja */
}

.brasil-description {
    font-size: 1.1rem;
    color: #E2E8F0;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Lista de diferenciais */
.brasil-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.brasil-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.brasil-features li i {
    color: #FE3D00;
    font-size: 1.4rem;
    margin-top: 3px;
}

.brasil-features li strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.brasil-features li div {
    font-size: 0.95rem;
    color: #CBD5E0;
    line-height: 1.5;
}

/* Lado do Mapa */
.brasil-visual {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brasil-map-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(254, 61, 0, 0.2)); /* Sombra leve laranja */
    transition: transform 0.5s ease;
}

/* Efeito de brilho atrás do mapa */
.map-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 61, 0, 0.15) 0%, rgba(6, 28, 45, 0) 70%);
    z-index: 1;
}

.brasil-visual:hover .brasil-map-img {
    transform: scale(1.03); /* Leve zoom no mapa ao passar o mouse */
}

/* --- Responsividade --- */

@media (max-width: 992px) {
    .brasil-container {
        flex-direction: column;
        text-align: center;
    }

    .brasil-description {
        margin-left: auto;
        margin-right: auto;
    }

    .brasil-features li {
        text-align: left;
    }

    .brasil-visual {
        order: -1; /* Mapa aparece antes do texto no mobile */
        margin-bottom: 40px;
    }
    
    .brasil-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .brasil-atendimento-section {
        padding: 60px 20px;
    }

    .brasil-title {
        font-size: 1.8rem;
    }
}/* End custom CSS */