@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');

:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line: rgba(15, 23, 42, .10);
  --soft:#f6f7f9;
  --green:#16a34a;
  --shadow: 0 18px 60px rgba(15, 23, 42, .08);
  --r-xl: 22px;
  --r-lg: 16px;
  --max: 1120px;
  --pad: clamp(1.5rem, 5vw, 10rem);
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: "Poppins", sans-serif;}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body {
    padding-top: 7rem;
    background-color: #f2f2f2;
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw; 
    overflow-x: hidden; 
}

a { color:inherit; text-decoration:none; }

.container {
    width: 100%;

    margin: 0 auto;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
}

/* 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;
}

.highlight{
  color: #27AE60;
}
.f-topo{
    width: 100%;
    height: 100%;
    color: #2a2a2a;
    text-decoration: none;
}
.text-btn button:hover {
    background-color: #ffffff; 
    color: #27AE60; 
    transform: scale(1.05); 
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2); 
}
.btn-solicite, 
.btn-services, 
.text-btn button {
    transition: all 0.3s ease; 
}
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 h1 {
    margin: 0;
}

.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: var(--pad);
    width: 100%;
}

.nav-link-logo {
    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;
    position: relative;
    display: inline-block;
}

.nav-link {
    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 {
    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;
}

.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 */
.hero {
    background-image: url("../src/img/bg-card.png"); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed; 
    border-bottom: 1.5px solid #DDF3E7;
    padding-top: 4rem;
    padding-bottom: 4rem;
    /* Removido o padding-inline daqui para evitar duplo esmagamento com o .container */
    width: 100%;
    box-sizing: border-box;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas em partes exatamente iguais! */
    gap: 3rem; /* O mesmo respiro de espaço que você usou na Home */
    align-items: center; 
    width: 100%; 
}
.area-contents {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap; 
    gap: 12px; 
    width: 100%;
    font-size: 0.8rem; 
    margin-top: 15px;
    max-width: 700px;
}

.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; 
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
  color: #111827;
  font-weight: 800;
  font-size: 13.5px;
}

.badge__dot {
    width: 10px; 
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0; 
    position: relative;
    animation: pulse-green 2s infinite;
    display: inline-block;
}

.hero__title{
  font-size: clamp(34px, 3.9vw, 54px);
  letter-spacing: -1px;
  line-height: 1.04;
  margin: 16px 0 10px;
  max-width: 600px; 
}

.accent{ color: var(--green); }
.t{
  text-align: justify;
}

.hero__lead{
  margin: 0;
  color: rgb(18,20,23,.68);
  line-height: 1.65;
  font-size: 16.5px;
  max-width: 62ch;
  background-color: #f2f2f2d3; 
  padding: 10px; 
  border-radius: 7px;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #111827;
  font-weight: 800;
  font-size: 13px;
}

.hero__actions{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap:wrap;
}

/* PANEL */
.panel{
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 500px;
}
.panel__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.panel__head strong{ font-size: 15.5px; }
.panel__tag{ font-weight: 950; color: var(--green); }
.panel__stats{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin: 10px 0 12px;
}
.stat{
  border: 1px solid rgba(15,23,42,.08);
  background: #f8fafc;
  border-radius: var(--r-lg);
  padding: 14px;
}
.stat__value{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.5px;
}
.stat__label{
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13.5px;
}
.panel__note{
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
}
.panel__fine{
  display:block;
  margin-top: 10px;
  color: rgba(71, 85, 105, .85);
  font-size: 12px;
  line-height: 1.4;
}


/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
}
.btn--primary{
  background: #111827;
  border-color: #111827;
  color: #fff;
  margin: 10px
}
.btn--primary:hover{ background: #0b1220; border-color:#0b1220; }
.btn--ghost{
  background: #fff;
  color: #111827;
  margin: 10px;
  border: 1px solid #2a2a2a;
}
.btn--wide{ width: 100%; }

.btn--ghost:hover{
    background-color: #f8f8f8; 
    border-color: #27AE60; 
    color: #27AE60; 
    transform: translateY(-4px); 
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.15); 
}

/* SECTION */
.section{ padding: 34px 0; 
background: linear-gradient(
  to bottom,
  #ffffff 0%,
  #f7fbf9 30%,
  #eef7f3 65%,
  #e6f3ed 100%
);
}
.section--soft{
  background: var(--soft);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1.5px solid #DDF3E7;
  background-color: #ffff;
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.section__kicker{
  display:block;
  font-weight: 950;
  color: rgba(71,85,105,.9);
  letter-spacing: .22em;
  font-size: 12px;
  margin-bottom: 6px;
}
.section__title{
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.6px;
}
.section__desc{
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

/* ✅ SERVIÇOS */
.servicesStack {
  display: flex;
  flex-direction: column;
  gap: 24px; 
  align-items: stretch; 
  width: 100%;
}

.serviceCard {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 25px 70px rgba(15,23,42,.08);
  width: 100%; 
  max-width: 100%; 
  margin: 0;
  transition: transform .35s ease, box-shadow .35s ease;
}

.serviceCard:hover{
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(15,23,42,.18);
}

.serviceCard__img{
  width:100%;
  height: 520px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .6s ease;
}

.serviceCard:hover .serviceCard__img{
  transform: scale(1.05);
}

.serviceCard__overlay{
  position:absolute;
  inset:0;
  padding: 34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-start;
  text-align:left;
  color:#fff;
  background:
    linear-gradient(to top,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.55) 40%,
      rgba(0,0,0,.10) 90%);
}

.serviceCard__icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
  font-size: 18px;
}

.serviceCard__overlay h3{
  margin: 0 0 10px;
  font-size: 42px;
  letter-spacing: -0.6px;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.serviceCard__overlay p{
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
  font-size: 16px;
  opacity: .98;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.serviceTags{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.serviceTags span{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

/* DIFFERENTIALS */
.difs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; 
  margin-top: 2rem;
}

.dif {
  display: flex;
  align-items: center; 
  gap: 20px; 
  background: #ffffff;
  border-radius: 24px; 
  padding: 24px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.089); 
  border: 1px solid rgba(15,23,42,.04);
  transition: all .25s ease;
}

.dif:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15,23,42,.08);
}

.dif__icon {
  width: 64px;
  height: 64px;
  min-width: 64px; 
  background: rgba(39, 174, 96, 0.12); 
  border-radius: 18px; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27AE60; 
  font-size: 1.6rem;
}

.dif__text {
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  font-size: 15px;
}

#orcamento {
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #f7fbf9 30%,
        #eef7f3 65%,
        #e6f3ed 100%
    );
    border-top: 1.5px solid #DDF3E7;
    padding: 60px 0; 
}

/* CTA */
.cta{
  border-radius: 28px;
  padding: 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  background: linear-gradient(135deg, #27ae60 0%, #111827 100%);
  color: #ffffff;
  box-shadow: 0 25px 70px rgba(15,23,42,.25);
}

.cta__text h2{
  margin: 0 0 8px;
  letter-spacing: -0.8px;
  font-size: 28px;
}

.cta__text p{
  margin: 0;
  color: rgba(255,255,255,.85);
  max-width: 60ch;
}

/* =========================================
   FOOTER - BLINDADO
   ========================================= */
.site-footer {
    background-color: #222222; 
    color: #a0a0a0;
    padding-top: 4rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 3rem;
    padding-inline: var(--pad);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.footer-col {
    flex: 1; 
    min-width: 220px; 
    overflow-wrap: break-word; 
    word-break: break-word; 
}

.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;
    text-align: left;
}

.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;
    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;
    text-align: left;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col a {
    color: #a0a0a0;
    transition: color 0.3s ease;
    word-break: break-all; 
}

.footer-col a:hover { color: #fff; padding-left: 2px; }

.footer-col.contact li {
    display: flex;
    align-items: flex-start; 
}

.footer-col.contact i {
    color: #27AE60;
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0; 
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem var(--pad);
    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; }

.reveal{
  opacity: 1;
  transform: none;
  transition: opacity .35s ease, transform .35s ease;
}
html.js .reveal{ opacity: 0; transform: translateY(10px); }
html.js .reveal.is-in{ opacity: 1; transform: none; }

.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;
}

.change-color{ color: #27AE60; }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* =========================================
   MEDIA QUERIES 
   ========================================= */

@media screen and (min-width: 769px) 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; }
    .mobile-menu .nav-item a:hover::after { width: 0% !important; }
    .mobile-menu .nav-item a:active { color: #27AE60; transition: 0.1s; }
}

/* --- TABLETS --- */
@media screen and (max-width: 1100px) {
    .hero__grid { grid-template-columns: 1fr; }
    
    .hero { background-attachment: scroll; }

    .main-card{
        display:flex;
        flex-direction:column;
        background-attachment: scroll; 
        padding-inline:0;
    }

    .divider{ display:none; }
    .column-one{ max-width:100%; padding:3rem 2rem 1rem 2rem; }
    .column-two{ width:100%; }
    .card-info{ width:90%; max-width:600px; margin: 2rem 0 0 0 !important; }

    .process-container{ flex-wrap:wrap; justify-content:center; }
    .step-card{ flex:1 1 300px; max-width:480px; }
    .process-container::before{ display:none; }

    .performance-content{ flex-wrap:wrap; }
    .p-card{ flex:1 1 280px; min-width:0; }

    .row-one{ grid-template-columns:1fr; }

    .partners-container{ gap:2rem; justify-content:center; }
    .logo-item img{ max-width:120px; height:auto; }
    
}

/* --- TABLETS E MENU HAMBURGER (Até 1024px) --- */
@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');

:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line: rgba(15, 23, 42, .10);
  --soft:#f6f7f9;
  --green:#16a34a;
  --shadow: 0 18px 60px rgba(15, 23, 42, .08);
  --r-xl: 22px;
  --r-lg: 16px;
  --max: 1120px;
  --pad: clamp(1.5rem, 5vw, 10rem);
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: "Poppins", sans-serif;}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body {
    padding-top: 7rem;
    background-color: #f2f2f2;
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw; 
    overflow-x: hidden; 
}

a { color:inherit; text-decoration:none; }

.container {
    width: 100%;

    margin: 0 auto;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
}

/* 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;
}

.highlight{
  color: #27AE60;
}
.f-topo{
    width: 100%;
    height: 100%;
    color: #2a2a2a;
    text-decoration: none;
}
.text-btn button:hover {
    background-color: #ffffff; 
    color: #27AE60; 
    transform: scale(1.05); 
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2); 
}
.btn-solicite, 
.btn-services, 
.text-btn button {
    transition: all 0.3s ease; 
}
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 h1 {
    margin: 0;
}

.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: var(--pad);
    width: 100%;
}

.nav-link-logo {
    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;
    position: relative;
    display: inline-block;
}

.nav-link {
    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 {
    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;
}

.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 */
.hero {
    background-image: url("../src/img/bg-card.png"); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed; 
    border-bottom: 1.5px solid #DDF3E7;
    padding-top: 4rem;
    padding-bottom: 4rem;
    /* Removido o padding-inline daqui para evitar duplo esmagamento com o .container */
    width: 100%;
    box-sizing: border-box;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas em partes exatamente iguais! */
    gap: 3rem; /* O mesmo respiro de espaço que você usou na Home */
    align-items: center; 
    width: 100%; 
}
.area-contents {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap; 
    gap: 12px; 
    width: 100%;
    font-size: 0.8rem; 
    margin-top: 15px;
    max-width: 700px;
}

.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; 
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
  color: #111827;
  font-weight: 800;
  font-size: 13.5px;
}

.badge__dot {
    width: 10px; 
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0; 
    position: relative;
    animation: pulse-green 2s infinite;
    display: inline-block;
}

.hero__title{
  font-size: clamp(34px, 3.9vw, 54px);
  letter-spacing: -1px;
  line-height: 1.04;
  margin: 16px 0 10px;
  max-width: 600px; 
}

.accent{ color: var(--green); }
.t{
  text-align: justify;
}

.hero__lead{
  margin: 0;
  color: rgb(18,20,23,.68);
  line-height: 1.65;
  font-size: 16.5px;
  max-width: 62ch;
  background-color: #f2f2f2d3; 
  padding: 10px; 
  border-radius: 7px;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #111827;
  font-weight: 800;
  font-size: 13px;
}

.hero__actions{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap:wrap;
}

/* PANEL */
.panel{
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 500px;
}
.panel__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.panel__head strong{ font-size: 15.5px; }
.panel__tag{ font-weight: 950; color: var(--green); }
.panel__stats{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin: 10px 0 12px;
}
.stat{
  border: 1px solid rgba(15,23,42,.08);
  background: #f8fafc;
  border-radius: var(--r-lg);
  padding: 14px;
}
.stat__value{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.5px;
}
.stat__label{
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13.5px;
}
.panel__note{
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
}
.panel__fine{
  display:block;
  margin-top: 10px;
  color: rgba(71, 85, 105, .85);
  font-size: 12px;
  line-height: 1.4;
}


/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
}
.btn--primary{
  background: #111827;
  border-color: #111827;
  color: #fff;
  margin: 10px
}
.btn--primary:hover{ background: #0b1220; border-color:#0b1220; }
.btn--ghost{
  background: #fff;
  color: #111827;
  margin: 10px;
  border: 1px solid #2a2a2a;
}
.btn--wide{ width: 100%; }

.btn--ghost:hover{
    background-color: #f8f8f8; 
    border-color: #27AE60; 
    color: #27AE60; 
    transform: translateY(-4px); 
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.15); 
}

/* SECTION */
.section{ padding: 34px 0; 
background: linear-gradient(
  to bottom,
  #ffffff 0%,
  #f7fbf9 30%,
  #eef7f3 65%,
  #e6f3ed 100%
);
}
.section--soft{
  background: var(--soft);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1.5px solid #DDF3E7;
  background-color: #ffff;
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.section__kicker{
  display:block;
  font-weight: 950;
  color: rgba(71,85,105,.9);
  letter-spacing: .22em;
  font-size: 12px;
  margin-bottom: 6px;
}
.section__title{
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.6px;
}
.section__desc{
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

/* ✅ SERVIÇOS */
.servicesStack {
  display: flex;
  flex-direction: column;
  gap: 24px; 
  align-items: stretch; 
  width: 100%;
}

.serviceCard {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 25px 70px rgba(15,23,42,.08);
  width: 100%; 
  max-width: 100%; 
  margin: 0;
  transition: transform .35s ease, box-shadow .35s ease;
}

.serviceCard:hover{
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(15,23,42,.18);
}

.serviceCard__img{
  width:100%;
  height: 520px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .6s ease;
}

.serviceCard:hover .serviceCard__img{
  transform: scale(1.05);
}

.serviceCard__overlay{
  position:absolute;
  inset:0;
  padding: 34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-start;
  text-align:left;
  color:#fff;
  background:
    linear-gradient(to top,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.55) 40%,
      rgba(0,0,0,.10) 90%);
}

.serviceCard__icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
  font-size: 18px;
}

.serviceCard__overlay h3{
  margin: 0 0 10px;
  font-size: 42px;
  letter-spacing: -0.6px;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.serviceCard__overlay p{
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
  font-size: 16px;
  opacity: .98;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.serviceTags{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.serviceTags span{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

/* DIFFERENTIALS */
.difs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; 
  margin-top: 2rem;
}

.dif {
  display: flex;
  align-items: center; 
  gap: 20px; 
  background: #ffffff;
  border-radius: 24px; 
  padding: 24px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.089); 
  border: 1px solid rgba(15,23,42,.04);
  transition: all .25s ease;
}

.dif:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15,23,42,.08);
}

.dif__icon {
  width: 64px;
  height: 64px;
  min-width: 64px; 
  background: rgba(39, 174, 96, 0.12); 
  border-radius: 18px; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27AE60; 
  font-size: 1.6rem;
}

.dif__text {
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  font-size: 15px;
}

#orcamento {
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #f7fbf9 30%,
        #eef7f3 65%,
        #e6f3ed 100%
    );
    border-top: 1.5px solid #DDF3E7;
    padding: 60px 0; 
}

/* CTA */
.cta{
  border-radius: 28px;
  padding: 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  background: linear-gradient(135deg, #27ae60 0%, #111827 100%);
  color: #ffffff;
  box-shadow: 0 25px 70px rgba(15,23,42,.25);
}

.cta__text h2{
  margin: 0 0 8px;
  letter-spacing: -0.8px;
  font-size: 28px;
}

.cta__text p{
  margin: 0;
  color: rgba(255,255,255,.85);
  max-width: 60ch;
}

/* =========================================
   FOOTER - BLINDADO
   ========================================= */
.site-footer {
    background-color: #222222; 
    color: #a0a0a0;
    padding-top: 4rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 3rem;
    padding-inline: var(--pad);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.footer-col {
    flex: 1; 
    min-width: 220px; 
    overflow-wrap: break-word; 
    word-break: break-word; 
}

.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;
    text-align: left;
}

.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;
    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;
    text-align: left;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col a {
    color: #a0a0a0;
    transition: color 0.3s ease;
    word-break: break-all; 
}

.footer-col a:hover { color: #fff; padding-left: 2px; }

.footer-col.contact li {
    display: flex;
    align-items: flex-start; 
}

.footer-col.contact i {
    color: #27AE60;
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0; 
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem var(--pad);
    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; }

.reveal{
  opacity: 1;
  transform: none;
  transition: opacity .35s ease, transform .35s ease;
}
html.js .reveal{ opacity: 0; transform: translateY(10px); }
html.js .reveal.is-in{ opacity: 1; transform: none; }

.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;
}

.change-color{ color: #27AE60; }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
/* Garante que todo o bloco da esquerda fique travado na esquerda */
.hero__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 🔴 Puxa botões e tags para a esquerda */
    text-align: left;        /* 🔴 Puxa o texto para a esquerda */
    max-width: 600px;
}

/* Garante que o Título e o Parágrafo não fiquem centralizados */
.hero__title, 
.hero__lead {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Badge (Fundada em 2019...) travada na esquerda */
.badge {
    margin: 0 0 1rem 0 !important; 
}

/* Os spans com check verde */
.area-contents {
    justify-content: flex-start !important; /* 🔴 Tira do centro */
    width: 100%;
}

/* Botões (Pedir orçamento / Ver serviços) */
.hero__actions {
    justify-content: flex-start !important; /* 🔴 Tira do centro */
    width: 100%;
}

.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;
}
/* =========================================
   MEDIA QUERIES 
   ========================================= */

@media screen and (min-width: 769px) 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; }
    .mobile-menu .nav-item a:hover::after { width: 0% !important; }
    .mobile-menu .nav-item a:active { color: #27AE60; transition: 0.1s; }
}


@media screen and (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; }
    
    .hero { background-attachment: scroll; }

    .main-card{
        display:flex;
        flex-direction:column;
        background-attachment: scroll; 
        padding-inline:0;
    }

    .divider{ display:none; }
    .column-one{ max-width:100%; padding:3rem 2rem 1rem 2rem; }
    .column-two{ width:100%; }
    .card-info{ width:90%; max-width:600px; margin: 2rem 0 0 0 !important; }

    .process-container{ flex-wrap:wrap; justify-content:center; }
    .step-card{ flex:1 1 300px; max-width:480px; }
    .process-container::before{ display:none; }

    .performance-content{ flex-wrap:wrap; }
    .p-card{ flex:1 1 280px; min-width:0; }

    .row-one{ grid-template-columns:1fr; }

    .partners-container{ gap:2rem; justify-content:center; }
    .logo-item img{ max-width:120px; height:auto; }
    
}

/* --- TABLETS E MENU HAMBURGER (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: flex-start; 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; align-items: center; }
    .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; width: 100%; }
    .mobile-menu .nav-item { display: block; padding-top: 1.2rem; }
    .mobile-menu .nav-button { display: flex; justify-content: center; padding: 1rem 0; margin: 0 auto; width: 100%; }
    .mobile-menu .nav-button button { width: 120px; }
    .open { display: flex; }

    .process-container { flex-wrap: wrap; }
    .step-card { min-width: 45%; }
    .process-container::before { display: none; }
    
    .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; }
    .column-one { max-width: 100%; padding: 3rem 2rem 1rem 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
    
    .mobile-menu .nav-item a:hover::after { width: 0% !important; }
    .mobile-menu .nav-item a:active { color: #27AE60; transition: 0.1s; }

    /* 🔴 FORÇA O CENTRO NO TABLET REBATENDO O PC 🔴 */
    .hero__left { align-items: center !important; text-align: center !important; width: 100%; max-width: 100%; }
    .hero__title, .hero__lead { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
    .badge { margin: 0 auto 1rem auto !important; }
    .area-contents { justify-content: center !important; width: 100%; }
    .hero__actions { justify-content: center !important; width: 100%; }
}
.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: 2rem;
    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;
}
/* Garante que todo o bloco da esquerda fique travado na esquerda */
.hero__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 🔴 Puxa botões e tags para a esquerda */
    text-align: left;        /* 🔴 Puxa o texto para a esquerda */
    max-width: 600px;
}

/* Garante que o Título e o Parágrafo não fiquem centralizados */
.hero__title, 
.hero__lead {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Badge (Fundada em 2019...) travada na esquerda */
.badge {
    margin: 0 0 1rem 0 !important; 
}

/* Os spans com check verde */
.area-contents {
    justify-content: flex-start !important; /* 🔴 Tira do centro */
    width: 100%;
}

/* Botões (Pedir orçamento / Ver serviços) */
.hero__actions {
    justify-content: flex-start !important; /* 🔴 Tira do centro */
    width: 100%;
}

.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;
}

/* --- CELULARES (Até 740px/768px) --- */
/* --- CELULARES (Até 740px/768px) --- */
@media screen and (max-width: 768px) {
    .nav-logo h1 { font-size: 1.2rem; }
    header .subtitle-header { font-size: 0.6rem; }

    .section__head{ flex-direction: column; align-items:flex-start; }
    .section-head h2, .section-head p, .eyebrow { text-align: left; margin-inline: 0; }
    .eyebrow::after { margin: 8px 0 0 0; }

    .areas { font-size: 0.60rem; gap: 7px; justify-content: flex-start; }
    
    .column-one { align-items: center; text-align: center; padding-top: 2rem; }
    .column-one h1 { font-size: 1.7rem; text-align: center; }
    
    /* 🔴 AQUI É ONDE ZERA A MARGEM FANTASMA DO CARD PRETO */
    .card-info { 
        width: 100% !important; 
        max-width: 100% !important; 
        padding: 2rem 1.5rem !important; 
        margin: 2rem 0 0 0 !important; 
        min-height: auto !important; 
    }

    /* 🔴 FORÇA TUDO PRO CENTRO NO CELULAR (Sobrescrevendo o !important do PC) */
    .hero__left { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        width: 100%;
    }
    
    .hero__left .lead, .hero__lead, .hero__title { 
        text-align: center !important; 
        margin-left: auto !important; 
        margin-right: auto !important; 
    }

    .badge {
        margin: 0 auto 1rem auto !important;
        justify-content: center;
    }

    .column-content { width: 100%; text-align: center; margin-inline: 0; }
    
    .area-contents { 
        flex-direction: column; 
        font-size: 0.75rem; 
        width: 100%; 
        margin-inline: 0; 
        justify-content: center !important; 
    }
    
    .span-text { margin-top: 10px; height: 30px; width: 100%; justify-content: center;}

    .hero__actions { 
        justify-content: center !important; 
        width: 100%; 
        flex-direction: column;
    }
    
    .hero__actions .btn { width: 100%; }

    /* O resto continua igual */
    .performance-content { flex-direction: column; gap: 15px; }
    .p-card { margin: 0; width: 100%; }
    .item { margin-right: 5px; }
    .s-title-card h4 { font-size: 1.15rem; }
    
    .row-one { grid-template-columns: 1fr; gap: 2.5rem; }
    .row-card { padding-left: 1rem; }

    .s-footer{ display: flex; flex-direction: column; text-align: left; gap: 1.5rem; padding: 1.5rem; height: auto; }
    .s-btn { width: 100%; justify-content: flex-start; }
    .s-analyse { width: 100%; }

    .process-container { flex-direction: column; gap: 1.5rem; }
    .step-card { width: 100%; }
    
    .partners-container { padding: 1.5rem; gap: 2.5rem; }
    .logo-item img { max-height: 45px !important; }

    .cta { flex-direction: column; align-items:flex-start; }
    .cta-container { flex-direction: column; text-align: left; gap: 1.5rem; }
    .cta-text h3 { font-size: 1.5rem; }
    .cta-btn, .cta-btn a { width: 100%; }
    
    .difs{ grid-template-columns: 1fr; }
    
    .serviceCard__img{ height: 430px; }
    .serviceCard__overlay{ padding: 18px; justify-content: flex-end; }
    .serviceCard__overlay h3{ font-size: 30px; line-height: 1.05; margin-bottom: 8px; }
    .serviceCard__overlay p{ font-size: 14px; line-height: 1.45; max-width: 100%; }
    .serviceTags{ margin-top: 12px; gap: 8px; }
    .serviceTags span{ padding: 8px 12px; font-size: 12px; }
    .serviceCard__overlay{
        background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.08) 100%);
    }

    .footer-container { flex-direction: column; text-align: center; gap: 2.5rem; }
    .footer-logo-white { margin: 0 auto 1.5rem auto; }
    .branding p { text-align: center; }
    .footer-col h4 { text-align: center; }
    .social-links { justify-content: center; }
    .footer-col.contact li { justify-content: center; text-align: center; }
    .footer-col a:hover { padding-left: 0; }
    .footer-bottom { text-align: center; }
    
    .site-footer span{ font-size: 0.8rem; }
}
.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: 2rem;
    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;
}
/* Garante que todo o bloco da esquerda fique travado na esquerda */
.hero__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 🔴 Puxa botões e tags para a esquerda */
    text-align: left;        /* 🔴 Puxa o texto para a esquerda */
    max-width: 600px;
}

/* Garante que o Título e o Parágrafo não fiquem centralizados */
.hero__title, 
.hero__lead {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Badge (Fundada em 2019...) travada na esquerda */
.badge {
    margin: 0 0 1rem 0 !important; 
}

/* Os spans com check verde */
.area-contents {
    justify-content: flex-start !important; /* 🔴 Tira do centro */
    width: 100%;
}

/* Botões (Pedir orçamento / Ver serviços) */
.hero__actions {
    justify-content: flex-start !important; /* 🔴 Tira do centro */
    width: 100%;
}

.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;
}

/* --- CELULARES (Até 740px/768px) --- */
/* --- CELULARES (Até 740px/768px) --- */
@media screen and (max-width: 768px) {
    .nav-logo h1 { font-size: 1.2rem; }
    header .subtitle-header { font-size: 0.6rem; }

    .section__head{ flex-direction: column; align-items:flex-start; }
    .section-head h2, .section-head p, .eyebrow { text-align: left; margin-inline: 0; }
    .eyebrow::after { margin: 8px 0 0 0; }

    .areas { font-size: 0.60rem; gap: 7px; justify-content: flex-start; }
    
    .column-one { align-items: center; text-align: center; padding-top: 2rem; }
    .column-one h1 { font-size: 1.7rem; text-align: center; }
    
    /* 🔴 AQUI É ONDE ZERA A MARGEM FANTASMA DO CARD PRETO */
    .card-info { 
        width: 100% !important; 
        max-width: 100% !important; 
        padding: 2rem 1.5rem !important; 
        margin: 2rem 0 0 0 !important; 
        min-height: auto !important; 
    }

    /* 🔴 FORÇA TUDO PRO CENTRO NO CELULAR (Sobrescrevendo o !important do PC) */
    .hero__left { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        width: 100%;
    }
    
    .hero__left .lead, .hero__lead, .hero__title { 
        text-align: center !important; 
        margin-left: auto !important; 
        margin-right: auto !important; 
    }

    .badge {
        margin: 0 auto 1rem auto !important;
        justify-content: center;
    }

    .column-content { width: 100%; text-align: center; margin-inline: 0; }
    
    .area-contents { 
        flex-direction: column; 
        font-size: 0.75rem; 
        width: 100%; 
        margin-inline: 0; 
        justify-content: center !important; 
    }
    
    .span-text { margin-top: 10px; height: 30px; width: 100%; justify-content: center;}

    .hero__actions { 
        justify-content: center !important; 
        width: 100%; 
        flex-direction: column;
    }
    
    .hero__actions .btn { width: 100%; }

    /* O resto continua igual */
    .performance-content { flex-direction: column; gap: 15px; }
    .p-card { margin: 0; width: 100%; }
    .item { margin-right: 5px; }
    .s-title-card h4 { font-size: 1.15rem; }
    
    .row-one { grid-template-columns: 1fr; gap: 2.5rem; }
    .row-card { padding-left: 1rem; }

    .s-footer{ display: flex; flex-direction: column; text-align: left; gap: 1.5rem; padding: 1.5rem; height: auto; }
    .s-btn { width: 100%; justify-content: flex-start; }
    .s-analyse { width: 100%; }

    .process-container { flex-direction: column; gap: 1.5rem; }
    .step-card { width: 100%; }
    
    .partners-container { padding: 1.5rem; gap: 2.5rem; }
    .logo-item img { max-height: 45px !important; }

    .cta { flex-direction: column; align-items:flex-start; }
    .cta-container { flex-direction: column; text-align: left; gap: 1.5rem; }
    .cta-text h3 { font-size: 1.5rem; }
    .cta-btn, .cta-btn a { width: 100%; }
    
    .difs{ grid-template-columns: 1fr; }
    
    .serviceCard__img{ height: 430px; }
    .serviceCard__overlay{ padding: 18px; justify-content: flex-end; }
    .serviceCard__overlay h3{ font-size: 30px; line-height: 1.05; margin-bottom: 8px; }
    .serviceCard__overlay p{ font-size: 14px; line-height: 1.45; max-width: 100%; }
    .serviceTags{ margin-top: 12px; gap: 8px; }
    .serviceTags span{ padding: 8px 12px; font-size: 12px; }
    .serviceCard__overlay{
        background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.08) 100%);
    }

    .footer-container { flex-direction: column; text-align: center; gap: 2.5rem; }
    .footer-logo-white { margin: 0 auto 1.5rem auto; }
    .branding p { text-align: center; }
    .footer-col h4 { text-align: center; }
    .social-links { justify-content: center; }
    .footer-col.contact li { justify-content: center; text-align: center; }
    .footer-col a:hover { padding-left: 0; }
    .footer-bottom { text-align: center; }
    
    .site-footer span{ font-size: 0.8rem; }
}
/* =========================================
   FORÇA BRUTA: CENTRALIZAR TABLET E CELULAR
   ========================================= */
@media screen and (max-width: 1024px) {
    .hero__left {
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .hero__left .badge,
    .hero__left .hero__title, 
    .hero__left .hero__lead {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center !important;
    }

    .hero__left .area-contents,
    .hero__left .hero__actions {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}