/* ──────────────────────────────
   RESET & VARIABLES
────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:    #050d1a;
  --navy-2:  #091428;
  --navy-3:  #0d1f3c;
  --navy-4:  #112244;
  --blue:    #1565c0;
  --blue-2:  #1976d2;
  --blue-lt: #1e88e5;
  --red:     #c62828;
  --red-2:   #e53935;
  --red-lt:  #ef5350;
  --yellow:  #ffd600;
  --white:   #ffffff;
  --off:     #e8edf5;
  --muted:   #8fa3c0;
  --border:  rgba(255, 255, 255, .07);
  --cond:    'Barlow Condensed', sans-serif;
  --body:    'Barlow', sans-serif;
  --nav-h:   70px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--off);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ──────────────────────────────
   NAVBAR
────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  background: rgba(5, 13, 26, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--cond);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}


.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--cond);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}

.nav__links a:hover { color: var(--white); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--cond);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .22s;
  white-space: nowrap;
  border-radius: 0;
  padding: .65rem 1.4rem;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn--red:hover { background: var(--red-2); border-color: var(--red-2); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .25);
}
.btn--outline:hover { border-color: var(--white); }

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn--blue:hover { background: var(--blue-2); border-color: var(--blue-2); }

.btn--lg {
  font-size: 1rem;
  padding: .85rem 2rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── MOBILE BURGER ── */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

/* ── MOBILE MENU ── */
.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy-2);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-110%);
  transition: transform .35s ease;
  z-index: 499;
}

.nav__mobile.open { transform: translateY(0); }

.nav__mobile a {
  font-family: var(--cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__mobile a:hover { color: var(--white); }

.nav__mobile-cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ──────────────────────────────
   HERO
────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,13,26,.97) 0%, rgba(5,13,26,.75) 55%, rgba(5,13,26,.4) 100%),
    url('assets/hero-bg.jpg') center / cover no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(to right, var(--red), var(--blue-lt));
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-2);
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--red);
}

.hero__h1 {
  font-family: var(--cond);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 780px;
}

.hero__h1 .accent { color: var(--red-2); }

.hero__tagline {
  font-family: var(--cond);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.hero__p {
  font-size: .98rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat__num {
  font-family: var(--cond);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat__num span { color: var(--red-2); }

.hero-stat__label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .25rem;
  font-weight: 500;
}

/* ──────────────────────────────
   SECTION COMMONS
────────────────────────────── */
.section {
  padding: 5.5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section--bg {
  background: var(--navy-2);
  padding: 5.5rem 1.5rem;
}

.section--bg .section__wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.section__head { margin-bottom: 3rem; }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--cond);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-2);
  margin-bottom: .75rem;
}

.section__eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--red);
}

.section__h2 {
  font-family: var(--cond);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--white);
  line-height: 1.05;
}

.section__h2 em {
  font-style: normal;
  color: var(--red-2);
}

.section__sub {
  font-size: .93rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: .75rem;
}

/* ──────────────────────────────
   SERVIÇOS
────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.srv-card {
  background: var(--navy-3);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--red);
  transition: height .3s;
}

.srv-card:hover { background: var(--navy-4); }
.srv-card:hover::before { height: 100%; }

.srv-card__icon {
  width: 48px; height: 48px;
  background: rgba(198, 40, 40, .12);
  border: 1px solid rgba(198, 40, 40, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-2);
  flex-shrink: 0;
}

.srv-card__icon svg { width: 24px; height: 24px; }

.srv-card__h3 {
  font-family: var(--cond);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
}

.srv-card__p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.srv-card__link {
  font-family: var(--cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-2);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
  margin-top: .5rem;
}

.srv-card:hover .srv-card__link { gap: .75rem; }

/* ──────────────────────────────
   QUEM SOMOS
────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ──────────────────────────────
   CARROSSEL — Quem Somos
────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
  z-index: 3;
  pointer-events: none;
}

.carousel::after {
  content: '';
  position: absolute;
  bottom: 44px; right: -12px;
  width: 80px; height: 80px;
  border-bottom: 3px solid var(--blue-lt);
  border-right: 3px solid var(--blue-lt);
  pointer-events: none;
}

.carousel__track-wrap {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  height: 100%;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px; height: 42px;
  background: rgba(5, 13, 26, .75);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.carousel__btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.carousel__btn--prev { left: .75rem; }
.carousel__btn--next { right: .75rem; }

.carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .75rem .35rem;
  background: rgba(5, 13, 26, .6);
}

.carousel__dots {
  display: flex;
  gap: .4rem;
}

.carousel__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}

.carousel__dot.active {
  background: var(--red-2);
  transform: scale(1.3);
}

.carousel__counter {
  font-family: var(--cond);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
}

.carousel__progress {
  height: 3px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.carousel__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--red);
  transition: width linear;
}

.about__label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--red);
  padding: .5rem 1rem;
  font-family: var(--cond);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}

.about__text p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about__text p strong {
  color: var(--off);
  font-weight: 600;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .03);
  font-family: var(--cond);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--off);
}

.about__badge svg {
  width: 14px; height: 14px;
  color: var(--red-2);
  flex-shrink: 0;
}

/* ──────────────────────────────
   DIFERENCIAIS
────────────────────────────── */
.diffs-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.diffs-aside {
  position: sticky;
  top: 6rem;
}

.diffs-aside__quote {
  font-family: var(--cond);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1.2;
  margin-top: 1.5rem;
}

.diffs-aside__quote em {
  font-style: normal;
  color: var(--red-2);
}

.diffs-aside__sub {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

.diffs-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.diff-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}

.diff-row:last-child { border-bottom: none; }
.diff-row:hover { background: rgba(255, 255, 255, .03); }

.diff-row__num {
  font-family: var(--cond);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(198, 40, 40, .25);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: right;
}

.diff-row__icon {
  width: 40px; height: 40px;
  background: rgba(198, 40, 40, .1);
  border: 1px solid rgba(198, 40, 40, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-2);
  flex-shrink: 0;
}

.diff-row__icon svg { width: 18px; height: 18px; }

.diff-row__body h3 {
  font-family: var(--cond);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: .4rem;
}

.diff-row__body p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ──────────────────────────────
   CONTATO
────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.contact-form-wrap {
  padding: 3rem;
  border-right: 1px solid var(--border);
}

.contact-info-wrap {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field-label {
  display: block;
  font-family: var(--cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}

.field {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--off);
  padding: .8rem 1rem;
  font-family: var(--body);
  font-size: .88rem;
  font-weight: 400;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.field::placeholder { color: rgba(255, 255, 255, .2); }
.field:focus { border-color: var(--blue-lt); }
.field option { background: var(--navy-2); }

textarea.field {
  resize: vertical;
  min-height: 120px;
}

.fg { margin-bottom: 1.1rem; }

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lgpd-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: 1.5rem;
}

.lgpd-row input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}

.lgpd-row label {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

/* ── CONTACT CHANNELS ── */
.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .02);
  transition: background .2s, border-color .2s;
}

.contact-channel:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .15);
}

.contact-channel__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel__icon svg { width: 22px; height: 22px; }

.contact-channel__body strong {
  display: block;
  font-family: var(--cond);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .2rem;
}

.contact-channel__body p,
.contact-channel__body a {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-channel__body a:hover { color: var(--red-2); }

.wa-channel { border-color: rgba(37, 211, 102, .2); }
.wa-channel .contact-channel__icon {
  background: rgba(37, 211, 102, .1);
  color: #25d366;
}

.ph-channel .contact-channel__icon {
  background: rgba(21, 101, 192, .15);
  color: var(--blue-lt);
}

.em-channel .contact-channel__icon {
  background: rgba(198, 40, 40, .1);
  color: var(--red-2);
}

.loc-channel .contact-channel__icon {
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
}

/* ──────────────────────────────
   MAPA
────────────────────────────── */
.map-section {
  background: var(--navy-2);
  padding: 0 1.5rem 5.5rem;
}

.map-section__wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.map-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
/* filter: grayscale(1) brightness(0.6) contrast(1.1); */
  transition: filter .3s ease;
}

.map-wrap:hover {
  filter: none;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px; 
  background: transparent;
  pointer-events: none; 
  z-index: 1;
}

.map-footer {
  background: var(--navy-3);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.map-footer p {
  font-family: var(--cond);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-footer p strong {
  color: var(--white);
  display: block;
  margin-bottom: .15rem;
}

/* ──────────────────────────────
   FOOTER
────────────────────────────── */
.footer {
  background: #030810;
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--cond);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .75rem;
}

.footer__brand-bolt {
  width: 26px; height: 26px;
  background: var(--red);
  clip-path: polygon(60% 0%, 100% 0%, 40% 50%, 100% 50%, 0% 100%, 30% 50%, 0% 50%);
  flex-shrink: 0;
}

.footer__brand span { color: var(--red-2); }

.footer__about {
  font-size: .8rem;
  color: rgba(143, 163, 192, .55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 340px;
}

.footer__socials {
  display: flex;
  gap: .75rem;
}

.footer__socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .2s;
}

.footer__socials a:hover {
  border-color: var(--red);
  color: var(--red-2);
}

.footer__socials svg { width: 16px; height: 16px; }

.footer__col-title {
  font-family: var(--cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(143, 163, 192, .5);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer__col ul li a,
.footer__col ul li span {
  font-size: .82rem;
  color: rgba(143, 163, 192, .6);
  transition: color .2s;
}

.footer__col ul li a:hover { color: var(--red-2); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .75rem;
  color: rgba(143, 163, 192, .3);
}

/* ──────────────────────────────
   WHATSAPP FLOAT
────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 400;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .4);
  animation: waPulse 3s infinite;
}

.wa-float svg { width: 28px; height: 28px; }

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, .4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, .6);
    transform: scale(1.06);
  }
}

/* ──────────────────────────────
   ANIMATIONS
────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fu  { animation: fadeUp .7s ease both; }
.fu2 { animation: fadeUp .7s .15s ease both; }
.fu3 { animation: fadeUp .7s .30s ease both; }
.fu4 { animation: fadeUp .7s .45s ease both; }
.fu5 { animation: fadeUp .7s .60s ease both; }

/* ──────────────────────────────
   RESPONSIVE
────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .about-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-wrap  { max-width: 600px; }
  .diffs-wrap       { grid-template-columns: 1fr; gap: 2.5rem; }
  .diffs-aside      { position: static; }
  .contact-grid     { grid-template-columns: 1fr; }
  .contact-form-wrap{ border-right: none; border-bottom: 1px solid var(--border); }
  .footer__top      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta          { display: none; }
  .nav__burger       { display: flex; }
  .services-grid     { grid-template-columns: 1fr; }
  .fg-row            { grid-template-columns: 1fr; }
  .footer__top       { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-wrap,
  .contact-info-wrap { padding: 2rem 1.25rem; }
  .map-footer        { flex-direction: column; align-items: flex-start; }
  .section           { padding: 4rem 1.25rem; }
  .section--bg       { padding: 4rem 1.25rem; }
  .hero__inner       { padding: 3rem 1.25rem 4rem; }
  .map-section       { padding: 0 1.25rem 4rem; }
}