/* ==========================================================================
   INTERFONE DE FONTES PREMIUM (INTER + MONTSERRAT PARA TÍTULOS)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    /* Corta qualquer barra de rolagem horizontal e joga o conteúdo de volta pro lugar */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   HERO SECTION CORRIGIDA (SEM QUEBRA HORIZONTAL)
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('Imgs_Site/HOME_.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(3, 7, 18, 0.4) 0%,
            rgba(3, 7, 18, 0) 50%,
            rgba(3, 7, 18, 0.6) 100%
            /* Corrigido de 100-percent para 100% */
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ajuste fino do texto de introdução superior */
.hero .badge {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    /* Espaçamento gringo sofisticado */
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Título Imponente, Nítido e Limpo com Montserrat Proporcional */
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 86px;
    color: #ffffff;
    font-weight: 300;
    /* Peso máximo, mas proporcional verticalmente */
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    /* Apenas para descolar suavemente dos feixes */
}

/* Subtítulo convertido em TEXTO BRANCO PURO, sem caixa, sem fundo horroroso */
.hero .subtitle {
    display: block;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;

    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    /* Leve e elegante para contrastar com o peso do h1 */
    letter-spacing: 6px;
    /* High-end tech vibe */
    text-transform: uppercase;
    opacity: 0.95;
    margin-top: 10px;
}

/* Correções de responsividade para o texto não encavalar no mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 54px;
        letter-spacing: -1px;
    }

    .hero .subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hero .badge {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* APLICANDO A VIBE GEOMÉTRICA DA WALKWAY NOS TÍTULOS */
h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    /* Força o visual UltraBold do elemento inspect */
    letter-spacing: -0.5px;
    /* Deixa as letras geometricamente mais próximas e elegantes */
}

/* ==========================================================================
   HEADER PREMIUM (ESTILO FLUTUANTE CLEAN)
   ========================================================================== */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Garante que ele segue o tamanho exato da tela */
    background-color: transparent;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
}

/* Tamanho controlado do logo para não estourar a proporção do menu */
.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
    /* Espaçamento limpo entre os links */
}

nav ul li a {
    color: #ffffff;
    /* Texto puramente branco */
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.85;
    /* Visual levemente suavizado padrão Apple */
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 1;
    /* Acende 100% no hover de forma minimalista */
}

/* Opcional: Pequeno destaque elegante para o 'Fale Conosco' sem criar botões pesados */
.nav-contact-link {
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: border-color 0.3s ease !important;
}

.nav-contact-link:hover {
    border-color: #ffffff;
}

/* Ajuste fino na Hero para acomodar o cabeçalho absolute */
.hero {
    padding-top: 0;
    /* O header absoluto não ocupa espaço físico, o padding não é mais necessário */
}

/* ==========================================================================
   ABOUT SECTION (RESTRUTURADA CONFORME IMAGEM 3)
   ========================================================================== */
.about {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Lado Esquerdo: Área do Logo Grande */
.about-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-side img {
    width: 100%;
    max-width: 420px;
    /* Mantém a proporção do logo elegante na esquerda */
    height: auto;
    object-fit: contain;
}

/* Lado Direito: Textos */
.about-text-side {
    flex: 1.2;
}

.about-text-side h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-text-side p {
    font-family: 'Inter', sans-serif;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-text-side strong {
    color: #1e293b;
    font-weight: 600;
}

/* Alinhamento do Fundador com Foto em Círculo (Imagem 3) */
.founder-badge-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

/* Foto do Jeferson em Círculo Perfeito */
.founder-avatar {
    width: 55px;
    height: 55px;
    overflow: hidden;
    border-radius: 50%;
    /* Garante o formato circular */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ajusta a foto preenchendo o círculo sem achatar */
}

.founder-info strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
}

.founder-info span {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    font-size: 13px;
}

/* Botão Azul Moderno (Inspirado na imagem real) */
.btn-blue-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2563eb;
    /* Azul corporativo idêntico ao da tela */
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
}

.btn-blue-modern i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.btn-blue-modern:hover {
    background-color: #1d4ed8;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.btn-blue-modern:hover i {
    transform: translateX(3px);
}

/* ==========================================================================
   CARDS DE SERVIÇOS HORIZONTAIS (CORREÇÃO DE VAZAMENTO)
   ========================================================================== */
.featured-services {
    padding: 80px 0;
    background-color: #ffffff;
    width: 100%;
}

.service-card-horizontal {
    display: flex;
    width: 100%;
    background-color: #f8fafc;
    /* Fundo cinza claro idêntico ao localhost */
    border-radius: 16px;
    overflow: hidden;
    /* Corta qualquer imagem que tente vazar pelas bordas */
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
}

.service-card-horizontal.reverse {
    flex-direction: row-reverse;
}

/* Lado do Conteúdo */
.card-content-side {
    flex: 1;
    /* Ocupa exatamente 50% do card */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.card-content-side h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.card-content-side p {
    font-family: 'Inter', sans-serif;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Botão Saiba Mais Minimalista */
.btn-card-action {
    display: inline-block;
    background-color: #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-card-action:hover {
    background-color: #cbd5e1;
    color: #0f172a;
}

/* Torna os logos/imagens internas das seções em zigue-zague maiores */
.card-image-side {
    flex: 1;
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    /* Harmoniza o container do logo */
}

.card-image-side img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centralização absoluta cirúrgica */
    width: 90% !important;
    /* Aumentado o preenchimento proporcional do logo */
    height: 90% !important;
    object-fit: contain !important;
    /* Garante que o logo cresça sem cortar as bordas */
}



/* SERVIÇOS EM ZIG-ZAG */
.featured-services {
    padding: 0 0 120px 0;
    background-color: #fff;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-text h3 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 15px;
}

.service-text p {
    color: #475569;
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-block;
    background-color: #f1f5f9;
    color: #334155;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

/* ==========================================================================
   GRID DE SERVIÇOS (ESTILO COMPATÍVEL COM IMAGEM 3 - ACETINADO)
   ========================================================================== */
.grid-services {
    padding: 120px 0;
    background-image: url('Imgs_Site/vorticeAzul.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}

/* Título alinhado à esquerda e com recuo proporcional (estilo imagem 3) */
.section-title-left {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* Cards Translúcidos Acetinados (Efeito Vidro / Glassmorphism) */
.service-card {
    background-color: rgba(15, 23, 42, 0.65);
    /* Fundo escuro sutilmente transparente */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    /* Faz o efeito "acetinado" desfocando o vorticeAzul atrás */
    -webkit-backdrop-filter: blur(8px);
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    background-color: rgba(15, 23, 42, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
    /* Acende uma leve borda azulada no hover */
}

/* Ícones Azuis discretos alinhados com o texto */
.card-icon {
    font-size: 28px;
    color: #3b82f6;
    margin-bottom: 18px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
    /* Cinza claro de alta leitura sobre fundo escuro */
    font-size: 14px;
    line-height: 1.6;
}

/* Container do botão inferior */
.center-btn {
    text-align: center;
    margin-top: 50px;
}

/* Botão Roxo Vibrante idêntico ao da imagem 3 */
.btn-purple-modern {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    /* Roxo/Índigo acetinado */
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-purple-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(79, 70, 229, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title-left {
        font-size: 26px;
        text-align: center;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   SEÇÃO CREDIBILIDADE & INOVAÇÃO (MANTENDO O PADDING EXCELENTE DE 15PX)
   ========================================================================== */
.credibility {
    padding: 100px 0;
    background-color: #f1f5f9;
    width: 100%;
}

.credibility-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.credibility-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.credibility-text-side h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.credibility-text-side p {
    font-family: 'Inter', sans-serif;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-blue-consultant {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
    transition: background-color 0.2s;
}

.btn-blue-consultant:hover {
    background-color: #2563eb;
}

.credibility-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.credibility-stack {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: auto;
    background-color: #ffffff;
    border-radius: 18px;
    padding: 15px;
    /* Padding ideal de 15px */
    box-shadow: 0 10px 10px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credibility-stack .img-main-lamp {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    margin: 0;
}

.badge-processos-unico {
    display: none !important;
}

/* ==========================================================================
   ESTEIRA CONTÍNUA DE LOGOS PARCEIROS (IMAGENS MAIORES EM TODA A VIEW)
   ========================================================================== */
.partners-marquee {
    padding: 60px 0;
    /* Aumentado o respiro para acomodar os logos maiores */
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
    width: 100%;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 110px;
    /* Excelente distanciamento entre marcas */
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track img {
    height: 52px;
    /* De 48px para 52px para garantir o tamanho imponente desejado */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   SEÇÃO DE RECOMENDAÇÕES (TEXTO ESPAÇADO E CARDS MENORES À DIREITA)
   ========================================================================== */
.testimonials-carousel-section {
    padding: 120px 0;
    background-color: #ffffff;
    background-image: radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    overflow: hidden;
    width: 100%;
}

.testimonials-split-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    /* Amplo canal de separação central */
}

/* Coluna Esquerda: Texto Totalmente Despremidor e Fluido */
.testimonials-static-left {
    flex: 1.2;
    /* Permite que o texto ganhe mais terreno horizontal */
    width: 100%;
    max-width: 680px;
    /* Espaço ideal para evitar quebras de palavras sozinhas */
    text-align: left;
}

.testimonials-static-left .section-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.testimonials-static-left .section-subtitle {
    font-family: 'Inter', sans-serif !important;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
    /* Excelente espaçamento entre linhas */
}

/* Coluna Direita: Card Mais Compacto e Alinhado na Extremidade Direita */
.testimonials-slider-right {
    flex: 1;
    /* Reduzido de forma proporcional para deixar o card menor */
    width: 100%;
    max-width: 740px;
    /* Card compactado e mais próximo do formato quadrado */
    position: relative;
    margin-left: auto;
    /* Alinhamento magnético total para a direita */
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    width: 400%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide-card {
    width: 25%;
    padding: 10px;
}

.slide-card-inner {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 40px;
    gap: 30px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.02);
}

.client-avatar-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.client-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-card-body {
    flex: 1;
}

.stars-row {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 12px;
}

.quote-text {
    font-family: 'Inter', sans-serif !important;
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.client-name {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.client-role {
    font-family: 'Inter', sans-serif !important;
    color: #64748b;
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #4f46e5;
    transform: scale(1.2);
}

/* ==========================================================================
   SEÇÃO DE CONTATO PREMIUM (ESTILO ORIGINAL LIGHT DO ELEMENTOR)
   ========================================================================== */
.contact-corporate-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* Fundo puramente branco conforme imagem 2 */
    width: 100%;
}

.contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

/* COLUNA DA ESQUERDA: CARD DO FORMULÁRIO */
.contact-form-side {
    flex: 1.1;
    width: 100%;
}

.form-card-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    /* Borda cinza clara bem sutil ao redor do card */
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    /* Sombra quase imperceptível */
}

.form-card-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #4f46e5;
    /* Roxo/Azul aceso idêntico ao cabeçalho do print */
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.form-card-box .form-intro {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.form-card-box .form-waiting {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 30px;
}

/* INPUTS E LABELS ALINHADOS */
.pure-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pure-form label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.pure-form input,
.pure-form textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    /* Borda padrão leve */
    border-radius: 6px;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pure-form input:focus,
.pure-form textarea:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    /* Brilho sutil no foco */
}

/* BOTÃO ENVIAR ROXO/AZUL ACESO */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: #4f46e5;
    /* Cor lisa sólida idêntica ao botão da imagem 2 */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #3f37c9;
}

/* COLUNA DA DIREITA: FOTO E DETALHES CORPORATIVOS */
.contact-info-side {
    flex: 0.9;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Foto com proporção retangular idêntica ao print */
.info-img-wrapper {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.info-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-details-list {
    margin-bottom: 40px;
}

.info-corporate-item {
    display: flex;
    align-items: flex-start;
    /* Alinha o ícone laranja com o topo do bloco de texto */
    gap: 20px;
    margin-bottom: 24px;
}

.icon-box-orange {
    width: 46px;
    height: 46px;
    background-color: #ffedd5;
    color: #ea580c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    /* Pequeno ajuste para casar perfeitamente com a primeira linha */
}

.item-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.item-text p {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* REDES SOCIAIS ABAIXO DAS INFORMAÇÕES */
.social-media-footer h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    text-align: left;
}

.social-icons-row {
    display: flex;
    gap: 12px;
}

.social-icons-row a {
    width: 42px;
    height: 42px;
    background-color: #f1f5f9;
    /* Círculos cinza claros padrão light */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.social-icons-row a:hover {
    background-color: #4f46e5;
    color: #ffffff;
    transform: translateY(-2px);
}

/* BOTÃO WHATSAPP - PRIORIDADE TOTAL */
.whatsapp-fixed-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background-color: #25d366 !important;
    /* Cor verde garantida */
    color: #ffffff !important;
    border-radius: 50% !important;
    /* Formato de círculo garantido */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
    z-index: 999999 !important;
    /* Z-index altíssimo */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5) !important;
    text-decoration: none !important;
}

/* ==========================================================================
   CORREÇÃO DEFINITIVA BLINDADA PARA MOBILE (COLE NO FINAL DO ARQUIVO)
   ========================================================================== */
@media (max-width: 992px) {

    /* GERAL: Trava a tela para não vazar pro lado */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* 1. SEÇÃO SOBRE NÓS (Arrumando a imagem minúscula) */
    .about-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .about-image-side,
    .about-text-side {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .about-image-side img {
        width: 100% !important;
        max-width: 280px !important;
        /* Tamanho elegante pro celular */
        margin-bottom: 30px !important;
    }

    /* 2. SEÇÃO CREDIBILIDADE (Arrumando a foto que virou átomo) */
    .credibility-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .credibility-text-side,
    .credibility-image-side {
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
    }

    .credibility-stack {
        width: 100% !important;
        max-width: 350px !important;
        /* Limita a foto para não estourar na tela */
        margin: 40px auto 0 auto !important;
        /* Empurra pra baixo do texto e centraliza */
    }

    .credibility-stack .img-main-lamp {
        width: 100% !important;
        height: auto !important;
    }

    /* 3. SEÇÃO DE DEPOIMENTOS (Jogando o card pra baixo) */
    .testimonials-split-wrapper {
        flex-direction: column !important;
        /* Força o empilhamento vertical */
        align-items: center !important;
        gap: 40px !important;
    }

    .testimonials-static-left {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .testimonials-slider-right {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .slide-card-inner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 30px 20px !important;
        align-items: center !important;
    }

    .client-avatar-wrapper {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto 15px auto !important;
    }

    /* 5. CARDS DE SERVIÇOS (ZIG-ZAG) - Imagem em cima, texto embaixo */
    .service-card-horizontal,
    .service-card-horizontal.reverse {
        flex-direction: column !important;
    }

    .card-image-side {
        width: 100% !important;
        min-height: 260px !important;
        /* Dá o espaço exato pro logo respirar no celular */
        order: -1 !important;
        /* A mágica que joga a imagem sempre para o topo */
    }

    .card-content-side {
        width: 100% !important;
        padding: 40px 20px !important;
        text-align: center !important;
        align-items: center !important;
    }

    /* 4. SEÇÃO CONTATO (Centralizando o "Siga a gente:") */
    .social-media-footer h3 {
        text-align: center !important;
        width: 100% !important;
    }

    .social-icons-row {
        justify-content: center !important;
    }

}

/* ==========================================================================
   CORREÇÃO FINAL: EMPILHAMENTO DA SEÇÃO DE CONTATO NO MOBILE
   ========================================================================== */
@media (max-width: 992px) {

    /* Força o Formulário e as Informações a ficarem um embaixo do outro */
    .contact-container {
        flex-direction: column !important;
        gap: 50px !important;
    }

    /* Garante que ambos ocupem a tela toda no celular */
    .contact-form-side,
    .contact-info-side {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    /* Reduz o respiro interno do card branco do formulário para não vazar a tela */
    .form-card-box {
        padding: 30px 20px !important;
    }

    /* Ajusta a altura da foto da moça do atendimento para ficar proporcional */
    .info-img-wrapper {
        height: auto !important;
        max-height: 280px !important;
    }
}