

/* ========================================================================= */
/* INÍCIO DO CSS - QUEM SOMOS (RADAR) */
/* ========================================================================= */

.radar-who-section {
    --green-radar: #3c7a22;
    --green-neon: #7ed957;
    --teal-radar: #006d81;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --bg-light: #f9fbff;
    --white: #ffffff;
    
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.radar-who-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(126, 217, 87, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.radar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .radar-container { flex-direction: column; text-align: center; gap: 100px; }
}

.radar-who-content { flex: 1.2; }

.radar-label {
    display: block;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green-radar);
    margin-bottom: 15px;
}

.radar-who-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 25px;
    color: var(--text-dark);
}

.radar-divider {
    width: 60px;
    height: 5px;
    background: var(--green-neon);
    margin-bottom: 40px;
    border-radius: 3px;
}
@media (max-width: 991px) { .radar-divider { margin: 0 auto 40px; } }

.radar-who-p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.radar-who-p strong { color: var(--green-radar); font-weight: 700; }

.radar-who-quote {
    background: var(--white);
    border-left: 5px solid var(--green-neon);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
}

.radar-who-quote span {
    display: block;
    margin-top: 15px;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal-radar);
    font-style: normal;
}

.radar-who-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #3c7a22, #0097b2);
    color: var(--white);
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 151, 178, 0.2);
    transition: all 0.4s ease;
}

.radar-who-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(126, 217, 87, 0.4);
}

.radar-who-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.radar-image-stack { position: relative; width: 340px; height: 440px; }

.radar-photo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 6px solid var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #ccc;
    overflow: hidden; /* Garante que a imagem respeite as bordas arredondadas */
}

.photo-4 { transform: rotate(-10deg) translateX(-20px) translateY(10px); z-index: 1; opacity: 0.5; }
.photo-3 { transform: rotate(-5deg) translateX(-10px) translateY(5px); z-index: 2; opacity: 0.8; }
.photo-2 { transform: rotate(3deg) translateX(10px); z-index: 3; opacity: 0.9; }
.photo-1 { transform: rotate(8deg) translateX(25px) translateY(-10px); z-index: 4; }

.radar-image-stack:hover .photo-4 { transform: rotate(-25deg) translateX(-150px) translateY(-30px); opacity: 1; }
.radar-image-stack:hover .photo-3 { transform: rotate(-12deg) translateX(-75px) translateY(-15px); opacity: 1; }
.radar-image-stack:hover .photo-2 { transform: rotate(12deg) translateX(75px) translateY(-15px); opacity: 1; }
.radar-image-stack:hover .photo-1 { transform: rotate(25deg) translateX(150px) translateY(-30px); z-index: 5; opacity: 1; }

.radar-founder-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 10;
    width: 240px;
    text-align: center;
}

.radar-founder-card strong { display: block; font-size: 1.1rem; font-weight: 900; color: var(--green-radar); margin-bottom: 2px; }
.radar-founder-card span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--text-gray); }

@media (max-width: 576px) {
    .radar-image-stack { width: 280px; height: 380px; }
    .radar-who-title { font-size: 2.2rem; }
    .radar-image-stack:hover .photo-4 { transform: rotate(-15deg) translateX(-50px); }
    .radar-image-stack:hover .photo-3 { transform: rotate(-8deg) translateX(-25px); }
    .radar-image-stack:hover .photo-2 { transform: rotate(8deg) translateX(25px); }
    .radar-image-stack:hover .photo-1 { transform: rotate(15deg) translateX(50px); }
}

/* ========================================================================= */
/* FIM DO CSS - QUEM SOMOS (RADAR) */
/* ========================================================================= */


/* ========================================================================= */
/* INÍCIO DO CSS - SECÇÃO DE SERVIÇOS (SPLIT) */
/* ========================================================================= */

#radar-split-section {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    background: #ffffff;
}

.split-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: #3c7a22;
}

/* LADO ESQUERDO */
.split-left {
    flex: 1;
    min-width: 300px;
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left::before, .split-left::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 151, 178, 0.03);
    z-index: 1;
}
.split-left::before { width: 400px; height: 400px; top: -100px; left: -150px; }
.split-left::after { width: 300px; height: 300px; bottom: 50px; right: -50px; background: rgba(60, 122, 34, 0.04); }

.split-left .content-wrapper { position: relative; z-index: 2; max-width: 500px; margin: 0 auto 0 0; }

@media (min-width: 1025px) {
    .split-left .content-wrapper { margin-left: auto; margin-right: 40px; }
}

.split-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5ba83c;
    margin-bottom: 15px;
}

.split-title { font-size: 2.5rem; font-weight: 900; line-height: 1.1; color: #0f172a; margin: 0 0 20px; text-transform: uppercase; }
.split-title span { color: #006d81; }
.split-line { width: 60px; height: 4px; background: #5ba83c; border-radius: 2px; margin-bottom: 25px; }
.split-desc { font-size: 0.95rem; line-height: 1.7; color: #475569; margin-bottom: 30px; }

.split-list { list-style: none; padding: 0; margin: 0 0 40px; }
.split-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 0.9rem; font-weight: 600; color: #1e293b; }
.split-list li i { color: #5ba83c; flex-shrink: 0; margin-top: 2px; }

.btn-split-left {
    display: inline-flex; align-items: center; justify-content: center;
    background: #00566b; color: #ffffff; font-weight: 800; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1px; padding: 16px 30px; border-radius: 8px;
    text-decoration: none; transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0, 86, 107, 0.2);
}
.btn-split-left:hover { background: #02788d; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0, 86, 107, 0.3); }

/* LADO DIREITO */
.split-right {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #3c7a22 0%, #00566b 100%);
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right .content-wrapper { position: relative; z-index: 2; max-width: 500px; margin: 0 auto 0 0; }

@media (min-width: 1025px) {
    .split-right .content-wrapper { margin-right: auto; margin-left: 40px; }
}

#neural-canvas-split { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.3; pointer-events: none; }

.split-label-right { color: #facc15; }
.split-title-right { color: #ffffff; }
.split-title-right span { color: #7ed957; }
.split-line-right { background: #facc15; }
.split-desc-right { color: rgba(255, 255, 255, 0.8); }

.split-card { background: rgba(15, 23, 42, 0.4); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 30px; margin-bottom: 40px; backdrop-filter: blur(5px); }
.split-card-title { display: flex; align-items: center; gap: 10px; color: #facc15; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 20px 0; }
.split-card-list { list-style: none; padding: 0; margin: 0; }
.split-card-list li { position: relative; padding-left: 15px; margin-bottom: 12px; font-size: 0.9rem; font-weight: 500; color: #ffffff; }
.split-card-list li::before { content: '•'; position: absolute; left: 0; top: 0; color: #7ed957; font-weight: bold; }

.btn-split-right {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(90deg, #7ed957, #0097b2, #7ed957); background-size: 200% auto;
    color: #ffffff !important; font-weight: 800; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; padding: 16px 30px; border-radius: 8px; text-decoration: none;
    transition: all 0.5s ease; box-shadow: 0 5px 15px rgba(0, 151, 178, 0.2);
}
.btn-split-right:hover { background-position: right center; transform: translateY(-3px); box-shadow: 0 0 20px rgba(126, 217, 87, 0.5); }

@media (max-width: 991px) {
    #radar-split-section { flex-direction: column; }
    .split-left, .split-right { padding: 80px 5%; align-items: center; text-align: left; }
    .split-left .content-wrapper, .split-right .content-wrapper { margin: 0 auto; }
    .split-center-badge { bottom: 50%; margin-top: -35px; top: auto; }
}

@media (max-width: 768px) {
    .split-title { font-size: 2rem; }
    .split-center-badge { display: none; }
}

/* ========================================================================= */
/* FIM DO CSS - SECÇÃO DE SERVIÇOS (SPLIT) */
/* ========================================================================= */

/* ========================================================================= */
/* CSS: SEÇÃO DE SITUAÇÕES JURÍDICAS (RADAR) */
/* ========================================================================= */

.radar-situations-section {
    --radar-green: #3c7a22;
    --radar-light: #7ed957;
    --radar-teal: #006d81;
    --radar-dark: #0f172a;
    --radar-gray: #475569;
    --radar-white: #ffffff;
    --radar-card-bg: linear-gradient(145deg, #f9fafb 0%, #eef2f6 100%);
    --radar-gradient: linear-gradient(90deg, #3c7a22 0%, #006d81 100%);
    
    padding: 60px 0;
    background-color: var(--radar-white);
}

.container-radar-situations {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-situations {
    text-align: center;
    margin-bottom: 40px;
}

.section-label-situations {
    display: block;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--radar-green);
    margin-bottom: 5px;
}

.section-title-situations {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--radar-dark);
    margin-bottom: 15px;
}

.section-divider-situations {
    width: 50px;
    height: 4px;
    background: var(--radar-light);
    margin: 0 auto;
    border-radius: 5px;
}

/* GRELHA DE CARDS */
.situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) { .situations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .situations-grid { grid-template-columns: 1fr; } }

/* ESTILO DO CARD */
.situation-card {
    background: var(--radar-card-bg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    box-shadow: 0 8px 15px rgba(15, 23, 42, 0.02);
    position: relative;
    overflow: hidden;
}

/* CARDS DE DESTAQUE (1 e 5) */
.card-highlight-bg {
    background: var(--radar-gradient);
    border: none;
    color: var(--radar-white);
}

.situation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: var(--radar-light);
}

.card-highlight-bg:hover { box-shadow: 0 20px 40px rgba(0, 109, 129, 0.3); }

/* CÍRCULO DO ÍCONE */
.icon-circle-situations {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    background-color: var(--radar-white);
    color: var(--radar-dark);
}

.bg-traffic-icon { color: var(--radar-green); border: 1px solid rgba(60, 122, 34, 0.1); }
.bg-pension-icon { color: var(--radar-teal); border: 1px solid rgba(0, 109, 129, 0.1); }

.card-highlight-bg .icon-circle-situations {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--radar-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* HOVER NOS CARDS CLAROS: INVERTER ÍCONE */
.situation-card:not(.card-highlight-bg):hover .icon-circle-situations {
    background: var(--radar-gradient);
    color: var(--radar-white);
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg);
}

/* HOVER NOS CARDS ESCUROS: INVERTER ÍCONE */
.card-highlight-bg:hover .icon-circle-situations {
    transform: scale(1.1) rotate(-5deg);
    background-color: var(--radar-white);
    color: var(--radar-green);
}

.card-title-situations {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--radar-dark);
}

.card-highlight-bg .card-title-situations { color: var(--radar-white); }

.card-text-situations {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--radar-gray);
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-highlight-bg .card-text-situations { color: rgba(255, 255, 255, 0.9); }
.card-text-situations strong { color: var(--radar-green); font-weight: 800; }
.card-highlight-bg .card-text-situations strong { color: var(--radar-light); }

/* BOTÃO COMPACTO */
.blog-btn-situations {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: var(--radar-gradient);
    color: var(--radar-white);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: all 0.4s ease;
    width: auto;
    min-width: 150px;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(60, 122, 34, 0.15);
    border: none;
}

.btn-white-neon {
    background: var(--radar-white);
    color: var(--radar-green) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.blog-btn-situations:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-white-neon:hover { box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); }
.blog-btn-situations i { transition: transform 0.3s ease; }
.blog-btn-situations:hover i { transform: translateX(3px); }


/* ========================================================================= */
/* CSS PREMIUM: SEÇÃO DE ESTATÍSTICAS RADAR (PARALLAX & GLASS) */
/* ========================================================================= */

#radar-stats-counter {
    --radar-green-neon: #7ed957;
    --radar-green-deep: #3c7a22;
    --radar-teal-deep: #006d81;
    --radar-white: #ffffff;
    
    padding: 120px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    
    /* FALLBACK DE COR (Para evitar texto branco no fundo branco se a imagem falhar) */
    background-color: var(--radar-green-deep);
    
    /* Background com Imagem e Degradê - Parallax Fixo */
    background-image: linear-gradient(135deg, rgba(60, 122, 34, 0.94) 0%, rgba(0, 109, 129, 0.94) 100%), 
                      url('https://plus.unsplash.com/premium_photo-1695449439526-9cebdbfa1a2c?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8anVzdGklQzMlQTdhfGVufDB8fDB8fHww.com/premium_photo-1695449439526-9cebdbfa1a2c?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8anVzdGklQzMlQTdhfGVufDB8fDB8fHww');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#radar-stats-counter .stats-container-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.header-container-stats { text-align: center; margin-bottom: 70px; }

#radar-stats-counter .stats-main-title {
    font-weight: 900; font-size: 2.8rem; text-transform: uppercase;
    letter-spacing: 4px; margin-bottom: 15px; color: var(--radar-white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#radar-stats-counter .stats-main-subtitle {
    font-weight: 500; font-size: 1.2rem; color: var(--radar-white);
    max-width: 850px; margin: 0 auto; opacity: 0.95; line-height: 1.6;
}

#radar-stats-counter .stats-main-title::after {
    content: ''; display: block; width: 80px; height: 5px;
    background: var(--radar-green-neon); margin: 25px auto 15px;
    border-radius: 5px; box-shadow: 0 0 15px var(--radar-green-neon);
}

/* GRELHA DE CARDS */
.stats-grid-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) { .stats-grid-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .stats-grid-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid-row { grid-template-columns: 1fr; } }

.stat-premium-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px; padding: 40px 20px; text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.stat-premium-card:hover {
    transform: translateY(-12px); background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.stat-icon-box {
    width: 65px; height: 65px; background: rgba(126, 217, 87, 0.15);
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px; color: var(--radar-green-neon); transition: all 0.4s ease;
}

.stat-premium-card:hover .stat-icon-box {
    background: var(--radar-white); color: var(--radar-green-deep);
    transform: rotate(10deg) scale(1.1); box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.stat-digit {
    font-size: 3.2rem; font-weight: 900; line-height: 1; margin-bottom: 12px;
    display: block; color: var(--radar-white); text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stat-tag {
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--radar-green-neon); margin: 0; line-height: 1.4;
}

/* BOTÃO NEON */
.stats-action-area { text-align: center; margin-top: 60px; }

.btn-radar-neon {
    background: var(--radar-white); color: var(--radar-green-deep) !important;
    font-weight: 900; text-transform: uppercase; letter-spacing: 2px;
    padding: 18px 45px; border-radius: 50px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 12px;
    transition: all 0.4s ease; box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    border: none;
}

.btn-radar-neon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
}

/* ========================================================================= */
/* FIM DO CSS - SEÇÃO DE ESTATÍSTICAS RADAR */
/* ========================================================================= */
/* ========================================================================= */



/* =========================================================
   ESCOPO ISOLADO: RADAR ASSESSORIA (SEM BOOTSTRAP)
   ========================================================= */

#contato {
    --green-primary: #7ed957;
    --green-dark: #5ba83c;
    --teal-secondary: #0097b2;
    --teal-dark: #006d81;
    --dark-deep: #0f172a;
    --white: #e0dddd;
    --gray-hover: rgba(15, 23, 42, 0.08);
    --neon-glow: 0 0 25px rgba(126, 217, 87, 0.4);
    --radar-gradient: linear-gradient(135deg, var(--green-dark) 0%, var(--teal-dark) 100%);
    
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-deep);
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
    line-height: 1.5;
}

#contato *, #contato *::before, #contato *::after {
    box-sizing: border-box;
}

/* --- ESTRUTURA DE GRELHA --- */
#contato .radar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#contato .radar-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

#contato .radar-left-col {
    padding-right: 20px;
}

#contato .radar-right-col {
    max-width: 480px;
    margin-left: auto;
    width: 100%;
}

@media (max-width: 991px) {
    #contato .radar-grid-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    #contato .radar-left-col {
        padding-right: 0;
    }
    #contato .radar-right-col {
        margin-left: 0;
        max-width: 100%;
    }
}

/* --- TEXTOS E TÍTULOS --- */
#contato .radar-subtitle {
    display: block;
    color: var(--teal-secondary); 
    letter-spacing: 3px; 
    font-size: 1.1rem; 
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#contato .radar-main-title {
    color: var(--dark-deep); 
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1; 
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    #contato .radar-main-title { font-size: 2.2rem; }
}

#contato .highlight-especialista {
    color: var(--green-dark);
    font-weight: 900 !important;
    font-size: 1.05em;
    text-transform: uppercase;
    border-bottom: 4px solid var(--green-primary);
    padding-bottom: 2px;
}

/* --- CARDS DE CONTACTO ESQUERDA --- */
#contato .contact-stack {
    position: relative;
    z-index: 2;
}

#contato .contact-info-card {
    position: relative;
    padding: 15px 20px; 
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px; 
    z-index: 1;
    background: var(--gray-hover);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 15px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

#contato .contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 151, 178, 0.1); 
    border-radius: 16px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

#contato .contact-info-card:hover::before { transform: scaleX(1); }
#contato .contact-info-card:hover { border-color: rgba(0, 151, 178, 0.3); transform: translateX(8px); }

#contato .icon-wrapper-circle {
    width: 55px; height: 55px;
    background: var(--radar-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(91, 168, 60, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

#contato .icon-wrapper-circle::after {
    content: ''; position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 50%; background: var(--radar-gradient);
    z-index: -1; opacity: 0; transition: opacity 0.4s ease; filter: blur(8px);
}

#contato .contact-info-card:hover .icon-wrapper-circle { transform: rotate(-15deg) scale(1.08); }
#contato .contact-info-card:hover .icon-wrapper-circle::after { opacity: 0.8; }

#contato .contact-label-title {
    display: block; font-size: 0.65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--teal-dark); margin-bottom: 4px; opacity: 0.9;
}

#contato .contact-value-text {
    font-weight: 800; font-size: 0.95rem; color: var(--dark-deep);
    margin: 0; transition: color 0.3s ease;
}

#contato .contact-info-card:hover .contact-value-text { color: var(--teal-dark); }

/* --- CITAÇÃO E BOTÃO CTA --- */
#contato .impact-quote {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--teal-dark);
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid var(--green-primary);
    padding-left: 18px;
    margin-top: 35px;
    margin-bottom: 25px;
}

#contato .radar-cta-link {
    width: fit-content; 
    padding: 18px 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(90deg, #7ed957, #0097b2, #7ed957);
    background-size: 200% auto; 
    border-radius: 10px; 
    color: var(--white); 
    font-weight: 900;
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.9rem; 
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 151, 178, 0.3);
    white-space: nowrap;
}

#contato .radar-cta-link:hover {
    background-position: right center;
    transform: scale(1.03) translateY(-2px);
    box-shadow: var(--neon-glow);
    color: var(--white);
}

@media (max-width: 576px) {
    #contato .radar-cta-link { width: 100%; font-size: 0.75rem; padding: 18px 10px; }
}

/* --- FORMULÁRIO --- */
#contato .form-card-premium {
    background: var(--radar-gradient); border-radius: 25px; 
    padding: 40px 35px; box-shadow: 0 25px 50px -15px rgba(0, 109, 129, 0.4);
    color: var(--white); position: relative; border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
    #contato .form-card-premium { padding: 30px 20px; }
}

#contato .radar-form-title {
    letter-spacing: -0.5px; font-size: 1.6rem; font-weight: 900; margin-top: 0; margin-bottom: 5px; color: var(--white);
}

#contato .radar-form-subtitle {
    color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; margin-top: 0; margin-bottom: 25px;
}

#contato .radar-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}

@media (max-width: 576px) {
    #contato .radar-form-row { grid-template-columns: 1fr; }
}

#contato .radar-form-group { margin-bottom: 15px; }

#contato .form-label-premium {
    display: block; font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 6px; margin-left: 5px; color: rgba(255, 255, 255, 0.9);
}

#contato .form-control-premium {
    width: 100%; font-family: 'Montserrat', sans-serif; outline: none;
    background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px; padding: 14px 16px; color: var(--white);
    font-weight: 500; font-size: 0.85rem; transition: all 0.3s ease; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

#contato .form-control-premium::placeholder { color: rgba(255, 255, 255, 0.5); font-weight: 400; }
#contato .form-control-premium:focus {
    background: rgba(15, 23, 42, 0.4); border-color: var(--green-primary);
    box-shadow: 0 0 15px rgba(126, 217, 87, 0.25), inset 0 2px 4px rgba(0,0,0,0.1); transform: translateY(-2px);
}

#contato .form-select-premium {
    cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: none; padding-right: 16px;        
}
#contato .form-select-premium option { background: var(--dark-deep); color: var(--white); padding: 10px; }

/* Consentimento Customizado - Link do Checkmark Corrigido */
#contato .consent-box {
    display: flex; align-items: flex-start; gap: 12px;
    background: rgba(0, 0, 0, 0.15); padding: 12px 16px; border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 20px; transition: all 0.3s ease;
}
#contato .consent-box:hover { border-color: var(--green-primary); background: rgba(0, 0, 0, 0.2); }

#contato .form-check-input {
    width: 16px; height: 16px; margin-top: 3px; background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 3px; cursor: pointer; transition: all 0.2s;
    flex-shrink: 0; appearance: none; -webkit-appearance: none;
}
#contato .form-check-input:checked { 
    background-color: var(--green-primary); border-color: var(--green-primary); 
    box-shadow: 0 0 10px rgba(126, 217, 87, 0.5); 
    background-image: url("data:image/svg+xml,%3csvg xmlns='[http://www.w3.org/2000/svg](http://www.w3.org/2000/svg)' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

#contato .consent-check { font-size: 0.75rem; color: rgba(255, 255, 255, 0.9); line-height: 1.4; font-weight: 400; cursor: pointer; margin: 0; }
#contato .consent-check strong { color: var(--green-primary); font-weight: 800; }

#contato .radar-security-text {
    text-align: center; margin-top: 15px; margin-bottom: 0;
    opacity: 0.6; font-weight: 600; font-size: 0.7rem; color: var(--white);
    display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* Botão Submit do Form */
#contato .btn-neon-grow {
    background: linear-gradient(90deg, #7ed957, #0097b2, #7ed957);
    background-size: 200% auto; border: none; border-radius: 10px; cursor: pointer;
    color: var(--white); padding: 16px; width: 100%; font-weight: 900;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; 
    transition: all 0.5s ease; box-shadow: 0 10px 20px rgba(0, 151, 178, 0.3); position: relative; overflow: hidden;
}

#contato .btn-neon-grow:hover {
    background-position: right center; transform: scale(1.03) translateY(-2px); box-shadow: var(--neon-glow); letter-spacing: 3px;
}

/* --- MODAL POPUP --- */
#contato .modal-overlay-wa {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.75); backdrop-filter: blur(8px);
    z-index: 99999; display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
}

#contato .modal-overlay-wa.show-modal { opacity: 1; }

#contato .modal-content-wa {
    background: var(--white); padding: 45px; border-radius: 25px;
    max-width: 500px; width: 90%; text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: translateY(30px) scale(0.95); transition: all 0.4s ease;
    position: relative; overflow: hidden;
}

#contato .modal-overlay-wa.show-modal .modal-content-wa { transform: translateY(0) scale(1); }

#contato .modal-content-wa::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--green-primary), var(--teal-secondary));
}

#contato .loader-wa {
    width: 50px; height: 50px;
    border: 4px solid rgba(0, 151, 178, 0.15); border-top: 4px solid var(--teal-secondary);
    border-radius: 50%; animation: spin-wa 1s linear infinite; margin: 0 auto 25px auto;
}

@keyframes spin-wa { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

#contato .modal-title-wa { color: var(--dark-deep); font-weight: 800; font-size: 1.3rem; margin-top: 0; margin-bottom: 15px; }
#contato .modal-text-wa { color: #64748b; font-size: 0.95rem; line-height: 1.6; margin: 0; font-weight: 500; }


/* ========================================================================= */
/* INÍCIO DO CSS - RODAPÉ E WHATSAPP FLUTUANTE */
/* ========================================================================= */

#footer-radar {
    --green-dark: #3c7a22; 
    --teal-dark: #00566b;
    --white: #ffffff;
    --white-opacity: rgba(255, 255, 255, 0.7);
    --neon-glow: 0 0 15px rgba(126, 217, 87, 0.5);
    
    position: relative;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--teal-dark) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; 

    /* FORÇAR LARGURA TOTAL E REMOVER MARGENS BRANCAS LATERAIS/INFERIORES */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    border: none;
    margin-bottom: -10px;
}

#footer-radar *, #footer-radar *::before, #footer-radar *::after {
    box-sizing: border-box;
}

#neural-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; opacity: 0.35; pointer-events: none; 
}

#footer-radar .footer-content-wrapper {
    position: relative; z-index: 2; width: 100%; max-width: 1200px;
    margin: 0 auto; 
    /* ESPAÇAMENTO TOP REDUZIDO DE 80px PARA 30px PARA APROXIMAR DO FORMULÁRIO */
    padding: 30px 20px 20px; 
}

#footer-radar .footer-grid {
    display: grid; grid-template-columns: 1.4fr 0.8fr 1.1fr 1.1fr;
    gap: 40px; margin-bottom: 40px; align-items: start;
}

@media (max-width: 1024px) {
    #footer-radar .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px 30px; }
}
@media (max-width: 650px) {
    #footer-radar .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
}

#footer-radar .footer-logo-img { max-width: 220px; height: auto; margin-bottom: 25px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); }
#footer-radar .footer-about-text { color: var(--white-opacity); font-size: 0.9rem; line-height: 1.7; font-weight: 400; margin: 0 0 25px 0; max-width: 95%; }

@media (max-width: 650px) {
    #footer-radar .footer-about-text { margin: 0 auto 25px auto; }
    #footer-radar .footer-logo-img { margin: 0 auto 25px auto; display: block; }
}

#footer-radar .social-wrapper { display: flex; gap: 12px; }
@media (max-width: 650px) { #footer-radar .social-wrapper { justify-content: center; } }

#footer-radar .social-btn {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center; color: var(--white);
    text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.2); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#footer-radar .social-btn:hover { background: #7ed957; border-color: #7ed957; color: #0f172a; transform: translateY(-5px) scale(1.1); box-shadow: var(--neon-glow); }

#footer-radar .footer-title {
    color: var(--white); font-size: 1.1rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; margin-top: 0; margin-bottom: 30px; position: relative; display: inline-block;
}

#footer-radar .footer-title::after {
    content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 3px;
    background-color: #7ed957; border-radius: 2px; box-shadow: var(--neon-glow);
}

@media (max-width: 650px) { #footer-radar .footer-title::after { left: 50%; transform: translateX(-50%); } }

#footer-radar .footer-links { list-style: none; padding: 0; margin: 0; }
#footer-radar .footer-links li { margin-bottom: 15px; }
#footer-radar .footer-links a {
    color: var(--white-opacity); text-decoration: none; font-size: 0.9rem; font-weight: 500;
    transition: all 0.3s ease; display: inline-flex; align-items: center;
}
#footer-radar .footer-links a::before {
    content: '›'; font-size: 1.3rem; color: #7ed957; margin-right: 8px; opacity: 0;
    transform: translateX(-10px); transition: all 0.3s ease;
}
#footer-radar .footer-links a:hover { color: var(--white); transform: translateX(5px); }
#footer-radar .footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-input, .wa-input {
    width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px; padding: 12px 15px; color: var(--white); font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem; margin-bottom: 12px; outline: none; transition: all 0.3s ease;
    box-sizing: border-box; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.wa-input { background: white; color: #0f172a; border: 1px solid #cbd5e1; box-shadow: none; }
.footer-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.wa-input::placeholder { color: #64748b; }

.footer-input:focus { background: rgba(15, 23, 42, 0.3); border-color: #7ed957; box-shadow: 0 0 10px rgba(126, 217, 87, 0.2), inset 0 2px 4px rgba(0,0,0,0.1); }
.wa-input:focus { border-color: #5ba83c; box-shadow: 0 0 5px rgba(91, 168, 60, 0.2); }

.btn-newsletter {
    width: 100%; background: linear-gradient(90deg, #7ed957, #0097b2, #7ed957); background-size: 200% auto;
    border: none; border-radius: 8px; padding: 12px 15px; color: #ffffff !important;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; transition: all 0.5s ease; box-shadow: 0 5px 15px rgba(0, 151, 178, 0.2);
    position: relative; overflow: hidden;
}

.btn-newsletter:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 0 15px rgba(126, 217, 87, 0.5); color: #ffffff !important; }

#footer-radar .contact-info-list { list-style: none; padding: 0; margin: 0; }
#footer-radar .contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; color: var(--white-opacity); font-size: 0.9rem; line-height: 1.5; }

@media (max-width: 650px) { #footer-radar .contact-item { justify-content: center; text-align: left; } }

#footer-radar .contact-item i { color: #7ed957; flex-shrink: 0; margin-top: 3px; }
#footer-radar .contact-item strong { display: block; color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }

#footer-radar .footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 25px; display: flex;
    justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px;
}

@media (max-width: 768px) { #footer-radar .footer-bottom-bar { flex-direction: column; text-align: center; justify-content: center; } }

#footer-radar .copyright-text { color: var(--white-opacity); font-size: 0.8rem; margin: 0; }
#footer-radar .copyright-text strong { color: var(--white); }
#footer-radar .legal-links { display: flex; gap: 20px; }
#footer-radar .legal-links a { color: var(--white-opacity); text-decoration: none; font-size: 0.8rem; transition: color 0.3s ease; }
#footer-radar .legal-links a:hover { color: #7ed957; }

#wa-floating-wrapper { position: fixed; bottom: 30px; right: 30px; z-index: 99999; font-family: 'Montserrat', sans-serif; }
#wa-floating-btn {
    width: 65px; height: 65px; background: #25D366; color: white; border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); animation: pulse-wa 2s infinite; transition: all 0.3s ease;
}

#wa-floating-btn:hover { transform: scale(1.1); animation: none; box-shadow: 0 0 25px rgba(37, 211, 102, 0.7); }

@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

#wa-popup {
    position: absolute; bottom: 85px; right: 0; width: 320px; background: white; border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.wa-popup-hidden { opacity: 0; transform: scale(0.5); pointer-events: none; }

.wa-popup-header {
    background: linear-gradient(135deg, #5ba83c 0%, #006d81 100%); color: #ffffff !important;
    padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
}

.wa-header-info { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; color: #ffffff !important; }

#wa-close-btn {
    background: rgba(0,0,0,0.2); border: none; border-radius: 50%; width: 28px; height: 28px;
    color: #ffffff !important; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s;
}

#wa-close-btn:hover { background: rgba(0,0,0,0.4); }
.wa-popup-body { padding: 20px; background: #f8fafc; }
.wa-popup-body p { margin-top: 0; font-size: 0.85rem; color: #475569; margin-bottom: 18px; line-height: 1.5; font-weight: 500; }
.wa-footer-credits { text-align: center; margin-top: 15px; font-size: 0.65rem; color: #94a3b8; font-weight: 500; }
.wa-footer-credits strong { color: #64748b; }

@media (max-width: 576px) {
    #wa-popup { position: fixed; bottom: 100px; right: 20px; left: 20px; width: auto; }
    #wa-floating-wrapper { right: 20px; bottom: 20px; }
}

/* ========================================================================= */
/* FIM DO CSS - RODAPÉ E WHATSAPP FLUTUANTE */
/* ========================================================================= */
