@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; 
}

body {
    margin: 0;
    padding-top: 6rem;
    display: flex;
    width: 100%;
    max-width: 100vw; 
    min-height: 100vh;
    background-color: #f2f2f2;
    flex-direction: column;
    overflow-x: hidden; 
}

/* HEADER E MENU*/
header {
    display: flex;
    align-items: center;  
    background-color: rgba(255,255,255,0.85);
    box-shadow: 0px 3px 10px #4646461f;
    width: 100%;
    height: 6rem;
    position: fixed;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    left: 0;
}

header .subtitle-header {
    text-align: left;
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.08rem;
    color: #27AE60;
    gap: 1.25rem;
    opacity: 0.85;
}

.title-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    gap: 0.3rem;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: clamp(1.5rem, 5vw, 10rem);
    width: 100%;
}

.nav-link-logo {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    align-items: center;
    color: #2A2A2A;
}

.nav-logo img {
    width: 4.5rem;
    margin-right: 10px;
}

.nav-list {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    gap: 1.2rem;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.nav-link {
    text-decoration: none;
    font-size: 1.15rem;
    color: #2A2A2A;
}

.nav-button {
    margin-left: 1rem;
}

.nav-button button {
    border: none;
    background-color: #2A2A2A;
    padding: 10px 15px;
    border-radius: 50px;
    width: 120px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0px 3px 5px #4646465d;
    position: relative;
    transition: all 0.3s ease;
}

.nav-button button:hover {
    background-color: #3a3a3a;
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.nav-button a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.mobile-menu-icon, .mobile-menu {
    display: none;
}

.nav-item:not(.active) a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;                
    width: 0%;               
    height: 2px;            
    background-color: #27AE60;
    transition: width 0.3s ease;
    transform-origin: right;
}

/* Linha verde embaixo da pagina selecionada */
.nav-item.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    height: 3px;
    width: 100%; 
    background-color: #27AE60;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* HERO com a foto */
.main-card {
    background-image: url("../img/bg-card.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: grid;
    margin-top: 1rem;
    max-width: 100%;
    grid-template-columns: 1fr 1px 1fr;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
    align-items: center;
    box-shadow: 0px 3px 10px #46464613;  
    border-bottom: 1.5px solid #DDF3E7;
    padding-top: 4rem;
}

.column-one {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 570px;
    padding: 2rem 0;
}

.areas {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08rem;
    color: #8c8c8c;
}

.area-item {
    text-transform: uppercase;
}

.area-dot {
    color: #27AE60;
    font-size: 18px;
}

.column-one h1 {
    color: #2A2A2A;
    font-size: clamp(34px, 3.7vw, 54px); /* Deixa gigante e fluido no PC */
    line-height: 1.1;
    letter-spacing: -1px;
}

.column-content {
    background-color: #f2f2f2d3;
    padding: 10px;
    border-radius: 7px;
    margin-top: 5px;
    color: rgb(18,20,23,.68);
    text-align: left;
    width: 90%;
    font-weight: 400;
}

.area-buttons {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-solicite, .btn-services {
    width: 130px;
    height: 45px;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 3px 5px #4646465d;
}

.btn-solicite {
    border: none;
    color: #ffff;
    background-color: #2a2a2a;
}

.btn-services {
    border: 1px solid black;
    background-color: #ffff;
}

.area-contents {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap; 
    gap: 12px; 
    width: 100%;
    font-size: 0.8rem; 
    margin-top: 15px;
}

.span-text {
    color: #555555;
    background-color: #f2f2f2;
    padding: 8px 18px; 
    border-radius: 999px;
    box-shadow: 0px 3px 5px #46464625;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; 
}

.span-text i {
    color: #27AE60;
    margin-right: 8px; 
}

.highlight {
    color: #27AE60;
}

.column-two {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-info {
    width: 100%; 
    max-width: 500px; 
    min-height: 400px; 
    background-color: #2A2A2A;
    border-radius: 12px; 
    padding: 2rem;
    margin: 0;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.title-info {
    width: 100%;
    display: flex;
    align-items: center;
}

.title-info i {
    font-size: 1.7rem; 
    color: #27AE60;
}

.title-info h2 {
    color: #d8d8d8;
    font-weight: 500;
    margin-left: 20px;
}

.text-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
    color: #d8d8d8;
    font-size: 1.2rem;
    text-align: center;
}

.text-btn button {
    width: 90%;
    height: 45px;
    margin-top: 10px;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    background-color: #d8d8d8;
    cursor: pointer;
}

.content-card {
    color: #d8d8d8;
    margin-top: 10px;
}

/* seçao de atuacao*/
.performance {
    width: 100%;
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      #f7fbf9 30%,
      #eef7f3 65%,
      #e6f3ed 100%
    );
    padding-inline: clamp(1.5rem, 5vw, 10rem);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 2rem;
    border-bottom: 1.5px solid #DDF3E7;
}

.section-label {
    text-align: left;
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: #8D8D8D;
    margin-bottom: 0.5rem;
}

.section-label::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #27AE60;
    margin-top: 8px;
}

.title-performance {
    padding-top: 2rem;
    margin-bottom: 0.5rem;
}

.title-performance h2 {
    color: #2A2A2A;
    font-size: 1.8rem;
    font-weight: 800;
}

.p-subtitle {
    font-size: 1rem;
    color: #8d8d8d;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.performance-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem; 
    align-items: stretch; 
}

.p-card {
    flex: 1; 
    background-color: #ffff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.048);
    padding: 1rem; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.title-p {
    color: #2a2a2a;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.title-p i {
    margin-right: 8px;
    color: #27AE60;
}

.p-span {
    font-size: 0.95rem;
    font-weight: 300;
    color: #2A2A2A;
    margin-bottom: auto; 
}

.box-p {
    display: flex;
    width: max-content;
    padding: 0 16px;
    height: 30px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    color: #27AE60;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #e8f8f0; 
    border: none;
}

.content-items {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.item {
    border: 1px solid #2a2a2a5d;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.075);
    font-weight: bold;
    font-size: 0.85rem;
    background-color: #ffff;
}

/* secao de servicos*/
.services {
    width: 100%;
    background-color: #ffff;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 3rem;
    border-bottom: 1.5px solid #DDF3E7;
}

.row-one {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.services .row-one:last-child {
    margin-bottom: 0;
}

.row-card {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #d8d8d8; 
    padding-left: 1.5rem; 
}

.s-title-card {
    display: flex;
    align-items: center;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.s-title-card i {
    margin-right: 12px; 
    font-size: 1.6rem;
    color: #27AE60;
}

.s-title-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
}

.row-card > span {
    color: #8d8d8d;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.row-card ul {
    list-style: none; 
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0.5rem;
}

.row-card ul li {
    position: relative;
    padding-left: 1.2rem;
    color: #555555;
    font-size: 0.95rem;
}

.row-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: #8fe0aa; 
    border-radius: 50%;
}

.s-footer{
    width: 100%;
    height: 90px;
    border: 1px solid #27AE60;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-weight: 300;
    color: #2A2A2A;
}

.get-bold{
    font-weight: bold;
    color: #2A2A2A;
}

.s-btn{
    width: 200px;
    display: flex;
    justify-content: flex-end;
}

.s-analyse{
    width: 150px;
    height: 45px;
    border-radius: 999px;
    color: #fff;
    font-weight: bold;
    background-color: #2A2A2A;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3); 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.s-analyse:hover {
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.4); 
}

.btn-solicite, 
.btn-services, 
.text-btn button {
    transition: all 0.3s ease; 
}

.btn-solicite:hover {
    background-color: #3a3a3a; 
    transform: translateY(-4px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
}

.btn-services:hover {
    background-color: #f8f8f8; 
    border-color: #27AE60; 
    color: #27AE60; 
    transform: translateY(-4px); 
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.15); 
}

.text-btn button:hover {
    background-color: #ffffff; 
    color: #27AE60; 
    transform: scale(1.05); 
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2); 
}

/* secao de processos*/
.process {
    width: 100%;
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      #f7fbf9 30%,
      #eef7f3 65%,
      #e6f3ed 100%
    );
    padding-inline: clamp(1.5rem, 5vw, 10rem);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 2rem;
    border-bottom: 1.5px solid #DDF3E7;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

/* A NOVA LINHA MESTRA (Atrás dos títulos) */
.process-container::before {
    content: '';
    position: absolute;
    top: 118px; 
    left: 2%; 
    width: 96%; 
    border-top: 2px dashed #b0b0b0;
    z-index: 0; 
}

/* Os Cards Brancos */
.step-card {
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
    flex: 1; 
    position: relative;
    z-index: 1; 
    display: flex;
    flex-direction: column;
    min-height: 260px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* A Caixinha Preta com o Número */
.step-number {
    background-color: #2A2A2A;
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.step-card:hover .step-number {
    background-color: #27AE60;
    transform: scale(1.05);
}

.step-card h4 {
    color: #27AE60; 
    font-size: 1.1rem;
    margin-bottom: 8px;
    background-color: #ffffff;
}

.step-card p {
    color: #8d8d8d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.hashtag-topo {
    margin-top: 3rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #2a2a2a;
    align-self: center; 
}
.partners{
    width: 100%;
    background-color: #ffff;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 3rem;
    border-bottom: 1.5px solid #c2c2c2;
}
.partners-container {
    width: 100%;
    border: 1px solid #27AE60;
    border-radius: 8px;
    padding: 2.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 4rem; 
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.02);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 60px; 
    max-width: 160px; 
    object-fit: contain; 
    filter: grayscale(100%) opacity(0.6); 
    transition: all 0.4s ease; 
    cursor: pointer;
}

.logo-item img:hover {
    filter: grayscale(0%) opacity(1); 
    transform: scale(1.1); 
}
.partners-container .logo-item:nth-child(2) img {
    max-height: 85px !important; 
    max-width: 200px !important; 
    transform: scale(1.1); 
    opacity: 0.7; 
}

.partners-container .logo-item:nth-child(2) img:hover {
     transform: scale(1.2); 
     opacity: 1;
}
.partners-container .logo-item:nth-child(6) img {
    max-height: 85px !important; 
    max-width: 200px !important; 
    transform: scale(1.1); 
    opacity: 0.7; 
}

.partners-container .logo-item:nth-child(6) img:hover {
     transform: scale(1.2); 
     opacity: 1;
}
.cta-section {
    width: 100%;
    background-color: #2A2A2A; 
    padding: 3rem clamp(1.5rem, 5vw, 10rem);
    display: flex;
    justify-content: center;
}

.cta-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-text h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: #a0a0a0; 
    font-size: 1.1rem;
    font-weight: 300;
}

.cta-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #27AE60; 
    font-weight: 800;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 999px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    white-space: nowrap; 
}

.cta-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* =========================================
   FOOTER (RODAPÉ DARK) - CORRIGIDO
   ========================================= */
.site-footer {
    width: 100%;
    background-color: #222222; 
    color: #a0a0a0;
    padding-top: 4rem;
    font-size: 0.95rem;
    margin-top: auto; 
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 3rem;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.footer-col {
    flex: 1; 
    min-width: 220px; 
    word-wrap: break-word; /* Proteção extra para a coluna não estourar */
}

.footer-logo-white {
    width: 160px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); 
}

.branding p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #27AE60;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05); 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #27AE60; 
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word; /* A MÁGICA AQUI: Quebra o e-mail longo! */
    overflow-wrap: break-word; 
}

.footer-col a:hover {
    color: #fff;
    padding-left: 2px; 
}

.footer-col.contact li {
    display: flex;
    align-items: flex-start; /* Se o texto quebrar em duas linhas, o ícone fica alinhado no topo */
    word-break: break-word;
}

.footer-col.contact i {
    color: #27AE60;
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0; /* IMPEDE O ÍCONE DE AMASSAR quando o texto for muito grande */
    margin-top: 4px; /* Desce um pouquinho o ícone para alinhar com o começo do texto */
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    background-color: #1a1a1a; 
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #a0a0a0;
    text-decoration: underline;
}

#home, #atuacao, #servicos, #processos {
    scroll-margin-top: 120px !important; 
}

.a-services{
    width: 100%;
    height: 100%;
    color: #2a2a2a;
    text-decoration: none;
}
.a-services-a{
    width: 100%;
    height: 100%;
    color: #ffff;
    text-decoration: none;
}
.a-services:hover{
    color: #27AE60;
}
.f-topo{
    width: 100%;
    height: 100%;
    color: #2a2a2a;
    text-decoration: none;
}


/* =========================================
   MEDIA QUERIES (RESPONSIVIDADE LIMPA E CORRIGIDA)
   ========================================= */

/* --- NOTEBOOKS MENORES E DESKTOPS --- */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .row-one { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .row-card { padding-left: 1rem; }
    .s-title-card h4 { font-size: 1.1rem; }
    .s-title-card i { font-size: 1.3rem; margin-right: 8px; }
    .row-card > span { font-size: 0.85rem; margin-bottom: 0.8rem; }
    .row-card ul li { font-size: 0.85rem; }
    .performance-content { gap: 1rem; }
    .p-card { width: 32%; max-width: 100%; }
    .p-span { font-size: 0.8rem; }
    .content-items { flex-wrap: wrap; gap: 10px; }
    .item { margin-top: 5px; }
}

/* --- TABLETS HORIZONTAIS E VERTICAIS (Até 1024px) --- */
@media screen and (max-width: 1024px) {
    .nav-bar { padding: 1.5rem; }
    .nav-item, .nav-button { display: none; }
    .nav-logo { display: flex; justify-content: center; align-items: center; }
    
    .mobile-menu {
        border-top: 2px solid rgba(0, 0, 0, 0.171); position: absolute; top: 6rem; left: 0;
        width: 100%; background-color: #fff; display: none; flex-direction: column; z-index: 1000;
    }
    .mobile-menu-icon { display: block; }
    .mobile-menu-icon button { background-color: transparent; border: none; cursor: pointer; color: #2A2A2A; font-size: 1.5rem; transition: transform 0.15s ease; }
    .mobile-menu-icon button:active { transform: scale(0.9); }
    .mobile-menu ul { display: flex; flex-direction: column; text-align: center; padding: 1rem; }
    .mobile-menu .nav-item { display: block; padding-top: 1.2rem; }
    .mobile-menu .nav-button { display: block; padding: 1rem 2rem; margin-left: 0; }
    .mobile-menu .nav-button button { width: 100%; }
    .open { display: flex; }

    /* Processos */
    .process-container { flex-wrap: wrap; }
    .step-card { min-width: 45%; }
    .process-container::before { display: none; }
    
    /* Hero Section para o Tablet */
    .main-card {
        display: flex; 
        flex-direction: column; 
        padding-inline: 0; 
        padding-bottom: 4rem; 
        background-image: url("../img/bg-card.png");
        background-size: cover; 
        background-position: center bottom;
        background-repeat: no-repeat;
        width: 100%;
    }
    
    .divider { display: none; }
    
    .column-one {
        max-width: 100%; 
        padding: 3rem 2rem 1rem 2rem; 
        align-items: center; 
        text-align: center;
    }

    .column-content {
        margin: 1rem auto; 
    }

    .area-buttons {
        margin: 1rem auto;
    }
    
    /* O Card Preto Lindão */
    .card-info {
        width: 90%; 
        max-width: 600px;
        margin: 1rem auto 0 auto; 
        background-color: #2A2A2A; 
        border-radius: 12px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    }

    .mobile-menu .nav-item a:hover::after {
        width: 0% !important; 
    }

    .mobile-menu .nav-item a:active {
        color: #27AE60; 
        transition: 0.1s;
    }

    .performance-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    .p-card {
        min-width: 45%; 
        flex: 1 1 45%;
    }
    .area-contents{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* --- CELULARES (Até 720px) --- */
@media screen and (max-width: 720px) {
    .nav-logo h1 { font-size: 1.2rem; }
    header .subtitle-header { font-size: 0.6rem; line-height: 1.2; }
    .areas { font-size: 0.60rem; gap: 7px; }
    .column-one h1 { 
    font-size: 2.2rem; /* Aumenta um pouquinho no celular para dar impacto, mas sem quebrar a tela */
    line-height: 1.1;
}
    .areas { justify-content: center; }

    .column-content { width: 95%; text-align: left; margin-inline: auto; }
    .area-contents { flex-direction: column; font-size: 0.75rem; width: 95%; margin-inline: auto; }
    .span-text { margin-top: 10px; height: 30px; width: 100%; }
    
    .card-info {
        width: 92%; 
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .performance-content { flex-direction: column; gap: 15px; }
    .p-card { margin: 0; width: 100%; }
    .item { margin-right: 5px; }
    
    .row-one { grid-template-columns: 1fr; gap: 2.5rem; }
    .row-card { padding-left: 1rem; }
    .s-title-card h4 { font-size: 1.15rem; }

    .s-footer{
        display: flex; flex-direction: column; text-align: center; gap: 1.5rem;
        padding: 1.5rem; height: auto;
    }
    .s-btn { width: 100%; justify-content: center; }
    .s-analyse { width: 100%; }

    .process-container { flex-direction: column; gap: 1.5rem; }
    .step-card { width: 100%; }
    
    /* Parceiros */
    .partners-container { padding: 1.5rem; gap: 2.5rem; }
    .logo-item img { max-height: 45px !important; }

    /* Card escuro CTA */
    .cta-container { flex-direction: column; text-align: center; gap: 1.5rem; }
    .cta-text h3 { font-size: 1.5rem; }
    .cta-btn, .cta-btn a { width: 100%; }

    /* Footer */
    .footer-container { flex-direction: column; text-align: center; gap: 2.5rem; }
    .footer-logo-white { margin: 0 auto 1.5rem auto; }
    .social-links { justify-content: center; }
    .footer-col.contact li { justify-content: center; }
    .footer-col a:hover { padding-left: 0; }
    
    .site-footer span {
        font-size: 0.9rem;
    }
}