/* ============================================================
   VANGUARD SECURITY – Estilos Principais v2.0
   Cores: Vermelho #e30515 | Verde #395146 | Verde Mil #2c3c2c
          Verde Escuro #242d27 | Branco #ffffff
   Tipografia: Montserrat
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #e30515;
  --green:      #395146;
  --green-mil:  #2c3c2c;
  --green-dark: #242d27;
  --white:      #ffffff;
  --gray-light: #f4f5f3;
  --gray-mid:   #e8eae6;
  --text-dark:  #1a1f1b;
  --text-muted: #6b7a6e;
  --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md:  0 6px 28px rgba(0,0,0,.13);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: .3s ease;
  --header-h:   76px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--red); color: #fff; padding: .5rem 1rem;
  border-radius: var(--radius); font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- Scroll Progress ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--red); width: 0%; z-index: 9999;
  transition: width .1s linear;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); }
p  { line-height: 1.8; }

.section-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: .75rem;
}
.section-kicker::before {
  content: ''; width: 24px; height: 2px; background: var(--red); flex-shrink: 0;
}
.divider-red   { width: 44px; height: 4px; background: var(--red);   border-radius: 2px; margin: .6rem 0 1.5rem; }
.divider-white { width: 44px; height: 4px; background: rgba(255,255,255,.35); border-radius: 2px; margin: .6rem 0 1.5rem; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; border-radius: var(--radius); transition: var(--transition); }
.btn-brand  { background: var(--red);   color: #fff; border: 2px solid var(--red);   padding: .7rem 1.6rem; }
.btn-green  { background: var(--green); color: #fff; border: 2px solid var(--green); padding: .7rem 1.6rem; }
.btn-brand:hover  { background: #c0040f; border-color: #c0040f; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(227,5,21,.35); }
.btn-green:hover  { background: #2d4038; border-color: #2d4038; color: #fff; transform: translateY(-2px); }
.btn-outline-light { border: 2px solid rgba(255,255,255,.5); color: #fff; background: transparent; padding: .7rem 1.6rem; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-wa { background: #25d366; color: #fff; border: 2px solid #25d366; padding: .7rem 1.6rem; }
.btn-wa:hover { background: #1da851; border-color: #1da851; color: #fff; transform: translateY(-2px); }

/* ---------- Section Backgrounds ---------- */
.section-dark  { background: var(--green-dark); color: #fff; }
.section-green { background: var(--green);      color: #fff; }
.section-mil   { background: var(--green-mil);  color: #fff; }
.section-light { background: var(--gray-light); color: var(--text-dark); }
.section-white { background: var(--white);      color: var(--text-dark); }
.section-red   { background: var(--red);        color: #fff; }
section { padding: 5rem 0; }

/* ---------- Reveal Animations ---------- */
.reveal        { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left   { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right  { opacity: 0; transform: translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-scale  { opacity: 0; transform: scale(.92); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
html.skip-preloader #preloader { opacity: 0; visibility: hidden; pointer-events: none; }
html.skip-preloader body {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}
.preloader-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
}
.site-header.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.site-header .navbar { padding: 1.1rem 0; transition: padding .3s; }
.site-header.scrolled .navbar { padding: .65rem 0; }
.brand-logo { height: 42px; width: auto; transition: height .3s; }
.site-header.scrolled .brand-logo { height: 36px; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  padding: .4rem .75rem !important; border-radius: 6px;
  transition: color .2s, background .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; background: rgba(255,255,255,.1); }
.navbar-toggler { border: 2px solid rgba(255,255,255,.4); padding: .4rem .6rem; }
.navbar-toggler-icon { filter: invert(1); }
.navbar-collapse { transition: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  position: relative; overflow: hidden;
  background: var(--green-dark);
}

/* Fundo geométrico animado */
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.hero-bg-grid::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-bg-grid::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(57,81,70,.45) 0%, transparent 65%);
}

/* Anéis de radar */
.radar-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(227,5,21,.18);
  animation: ring-expand 4s ease-out infinite;
  pointer-events: none; z-index: 1;
}
.radar-ring:nth-child(1) { width: 280px; height: 280px; top: 10%; right: 5%; animation-delay: 0s; }
.radar-ring:nth-child(2) { width: 440px; height: 440px; top: calc(10% - 80px); right: calc(5% - 80px); animation-delay: 1s; }
.radar-ring:nth-child(3) { width: 600px; height: 600px; top: calc(10% - 160px); right: calc(5% - 160px); animation-delay: 2s; }
@keyframes ring-expand {
  0%   { opacity: .6; transform: scale(.85); }
  100% { opacity: 0;  transform: scale(1.05); }
}

.hero-content { position: relative; z-index: 2; }

/* Badge 24h */
.badge-24h {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(227,5,21,.15); border: 1px solid rgba(227,5,21,.4);
  color: #fff; border-radius: 50px;
  padding: .35rem .9rem; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; margin-bottom: 1rem;
}
.badge-24h .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-copy h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-copy p  { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Foto hero */
.hero-photo-wrap {
  position: relative; z-index: 2;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.hero-photo-wrap img { width: 100%; height: 460px; object-fit: cover; object-position: center top; display: block; }

/* Cards flutuantes */
.hero-float-cards { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.hfc {
  position: absolute; background: rgba(36,45,39,.92);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--red);
  border-radius: var(--radius); padding: .65rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  color: #fff; font-size: .75rem; font-weight: 700;
  animation: float-card 4s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.hfc i { font-size: 1.1rem; color: var(--red); }
.hfc:nth-child(1) { top: 8%;  left: -5%; animation-delay: 0s; }
.hfc:nth-child(2) { top: 35%; right: -8%; animation-delay: 1.2s; }
.hfc:nth-child(3) { bottom: 28%; left: -8%; animation-delay: .6s; }
.hfc:nth-child(4) { bottom: 8%; right: -3%; animation-delay: 1.8s; }
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Radar card */
.radar-card-hero {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 4; width: 180px;
  background: rgba(36,45,39,.95); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1rem;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
  pointer-events: none;
}
.radar-screen {
  position: relative; width: 100%; aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(227,5,21,.4);
  background:
    repeating-radial-gradient(circle, transparent 0 22px, rgba(255,255,255,.08) 23px 24px),
    var(--green-dark);
}
.radar-screen::before, .radar-screen::after {
  content: ''; position: absolute; background: rgba(255,255,255,.12);
}
.radar-screen::before { top: 50%; left: 0; width: 100%; height: 1px; }
.radar-screen::after  { top: 0; left: 50%; width: 1px; height: 100%; }
.radar-sweep-line {
  position: absolute; inset: 50% 50% 0 50%;
  width: 48%; height: 2px; transform-origin: left center;
  background: var(--red);
  animation: sweep-spin 3s linear infinite;
}
@keyframes sweep-spin { to { transform: rotate(360deg); } }
.radar-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.radar-dot:nth-child(1) { top: 32%; left: 64%; }
.radar-dot:nth-child(2) { top: 60%; left: 38%; }
.radar-dot:nth-child(3) { top: 70%; left: 70%; }
.radar-label { display: flex; justify-content: space-between; align-items: center; margin-top: .7rem; }
.radar-label span { font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.radar-label strong { font-size: 1.1rem; color: var(--red); font-weight: 800; }

/* ============================================================
   FAIXA DE CONTATOS
   ============================================================ */
.contacts-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-mid);
  padding: 1.2rem 0;
}
.contact-item {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; color: var(--text-dark);
  transition: color var(--transition);
}
.contact-item:hover { color: var(--red); }
.ci-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; transition: transform .2s;
}
.contact-item:hover .ci-icon { transform: scale(1.1); }
.ci-icon-wa   { background: #25d366; color: #fff; }
.ci-icon-tel  { background: var(--green); color: #fff; }
.ci-icon-mail { background: var(--green-dark); color: #fff; }
.ci-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.ci-value { font-size: .9rem; font-weight: 700; }

/* ============================================================
   STATS
   ============================================================ */
.stat-card {
  text-align: center; padding: 2rem 1.5rem;
  border-radius: var(--radius-lg); border: 1px solid var(--gray-mid);
  transition: var(--transition); min-height: 160px; display: flex;
  flex-direction: column; justify-content: center; align-items: center;
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--red); line-height: 1; }
.stat-label  { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-top: .8rem; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid); padding: 2rem 1.5rem;
  transition: var(--transition); cursor: pointer; height: 100%;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:focus { outline: 3px solid var(--red); outline-offset: 2px; }

.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--gray-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; color: var(--green);
  margin-bottom: 1.2rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); color: #fff; }
.service-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: .5rem; color: var(--text-dark); }
.service-card p  { font-size: .86rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; }
.service-link {
  font-size: .75rem; font-weight: 700; color: var(--red);
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .3rem;
}
.service-link i { transition: transform .2s; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ============================================================
   MODAL DE SERVIÇO
   ============================================================ */
.service-modal .modal-dialog { max-width: 860px; }
.service-modal .modal-content { border: none; border-radius: var(--radius-lg); overflow: hidden; }
.service-modal .modal-header { background: var(--green-dark); color: #fff; border: none; padding: 1.5rem 2rem; }
.service-modal .modal-title { font-size: 1.2rem; font-weight: 700; color: #fff; }
.service-modal .btn-close { filter: invert(1); }
.service-modal .modal-body { padding: 2rem; }
.service-modal .modal-footer { border-top: 1px solid var(--gray-mid); padding: 1rem 2rem; }

.modal-svc-icon {
  width: 60px; height: 60px; border-radius: var(--radius);
  background: var(--gray-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; color: var(--green); flex-shrink: 0;
}
.modal-carousel .carousel-item img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius); }
.modal-carousel .carousel-control-prev,
.modal-carousel .carousel-control-next {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.5); top: 50%; transform: translateY(-50%);
  margin: 0 .4rem;
}
.modal-carousel .carousel-indicators [data-bs-target] { width: 8px; height: 8px; border-radius: 50%; }
.modal-carousel .carousel-indicators .active { background: var(--red); }
.benefit-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .6rem; font-size: .9rem; }
.benefit-item i { color: var(--red); flex-shrink: 0; margin-top: .15rem; }
.modal-placeholder-img {
  width: 100%; height: 220px; border-radius: var(--radius);
  background: var(--gray-light); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem; color: var(--text-muted);
}
.modal-placeholder-img i { font-size: 2.5rem; }

.access-solutions > h3 {
  font-size: 1rem; font-weight: 700; margin: 0 0 .8rem;
}
.access-solutions-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
}
.access-solution-card {
  height: 100%; padding: 1.2rem; border: 1px solid var(--gray-mid);
  border-radius: var(--radius); background: var(--gray-light);
}
.access-solution-heading { display: flex; align-items: center; gap: .75rem; margin-bottom: .65rem; }
.access-solution-heading h4 { font-size: .95rem; font-weight: 700; margin: 0; }
.access-solution-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-dark); color: #fff; font-size: 1.05rem;
}
.access-solution-card p { font-size: .86rem; color: var(--text-muted); margin-bottom: .7rem; }
.access-solution-card ul { list-style: none; padding: 0; margin: 0; }
.access-solution-card li {
  display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .45rem; font-size: .86rem;
}
.access-solution-card li:last-child { margin-bottom: 0; }
.access-solution-card li i { color: var(--red); flex-shrink: 0; margin-top: .1rem; }

@media (max-width: 575.98px) {
  .access-solutions-grid { grid-template-columns: 1fr; }
  .access-solution-card { padding: 1rem; }
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  transition: var(--transition); height: 100%;
}
.diff-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.diff-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(227,5,21,.15); border: 1px solid rgba(227,5,21,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--red); margin-bottom: 1rem;
}
.diff-card h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.diff-card p  { font-size: .85rem; color: rgba(255,255,255,.6); margin: 0; }

/* ============================================================
   HISTÓRIA / FUNDADOR
   ============================================================ */
.founder-photo-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-photo-wrap img { width: 100%; height: 520px; object-fit: cover; object-position: top; display: block; }
.founder-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--red); color: #fff; border-radius: var(--radius);
  padding: .6rem 1.2rem; font-size: .78rem; font-weight: 700;
}
.founder-year { font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 800; color: var(--gray-mid); line-height: 1; }
.founder-name { font-size: 1.35rem; font-weight: 800; color: var(--text-dark); }
.founder-role { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem; }
blockquote.founder-quote {
  border-left: 4px solid var(--red); padding-left: 1.2rem;
  font-size: 1rem; font-style: italic; color: var(--text-muted); margin: 1.5rem 0;
}

/* ============================================================
   LINHA DO TEMPO
   ============================================================ */
.timeline-wrap { position: relative; padding: 2rem 0; }
.timeline-wrap::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: rgba(255,255,255,.15); transform: translateX(-50%);
}
.tl-item {
  display: flex; justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  margin-bottom: 3rem; position: relative;
}
.tl-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0; padding-left: calc(50% + 2.5rem);
}
.tl-dot {
  position: absolute; left: 50%; top: 1.2rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--green-dark);
  transform: translateX(-50%); z-index: 2;
  box-shadow: 0 0 0 4px rgba(227,5,21,.2);
}
.tl-content {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 1.5rem;
  max-width: 420px; width: 100%;
}
.tl-year  { font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; }
.tl-title { font-size: .98rem; font-weight: 700; color: #fff; margin: .3rem 0; }
.tl-desc  { font-size: .86rem; color: rgba(255,255,255,.6); margin: 0; }

@media (max-width: 767px) {
  .timeline-wrap::before { left: 1rem; }
  .tl-item, .tl-item:nth-child(even) { padding-left: 3.2rem; padding-right: 0; justify-content: flex-start; }
  .tl-dot { left: 1rem; }
  .tl-content { max-width: 100%; }
}

/* ============================================================
   SEGMENTOS ATENDIDOS
   ============================================================ */
.segment-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid); padding: 2rem 1.2rem;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden; height: 100%;
}
.segment-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--green); opacity: 0; transition: opacity .3s; z-index: 0;
  border-radius: var(--radius-lg);
}
.segment-card:hover::before { opacity: 1; }
.segment-card > * { position: relative; z-index: 1; }
.segment-card:hover h4, .segment-card:hover p { color: #fff; }
.segment-icon { font-size: 2.4rem; color: var(--green); margin-bottom: .8rem; transition: color .3s, transform .3s; }
.segment-card:hover .segment-icon { color: #fff; transform: scale(1.15); }
.segment-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; transition: color .3s; }
.segment-card p  { font-size: .82rem; color: var(--text-muted); margin: 0; transition: color .3s; }

/* ============================================================
   PROJETOS
   ============================================================ */
.project-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  background: var(--white); border: 1px solid var(--gray-mid);
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.project-img-wrap { overflow: hidden; height: 220px; }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.project-card:hover .project-img-wrap img { transform: scale(1.05); }
.project-body { padding: 1.5rem; }
.project-tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; }
.project-body h4 { font-size: .98rem; font-weight: 700; margin-bottom: .4rem; }
.project-body p  { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   PORTFÓLIO
   ============================================================ */
.portfolio-page {
  background: var(--gray-light);
}
.portfolio-navbar {
  background: rgba(17, 22, 20, .78) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.portfolio-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.portfolio-navbar .navbar-brand img {
  height: 38px;
  width: auto;
}
.portfolio-navbar .navbar-nav {
  gap: .35rem;
}
.portfolio-navbar .nav-link {
  color: rgba(255,255,255,.78) !important;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .62rem .9rem !important;
  border-radius: 999px;
  transition: var(--transition);
}
.portfolio-navbar .nav-link:hover,
.portfolio-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.1);
}
.portfolio-navbar .navbar-toggler {
  border-color: rgba(255,255,255,.25);
}
.portfolio-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.15);
}
.portfolio-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(227,5,21,.14) 0, transparent 24%),
    linear-gradient(135deg, var(--green-dark) 0%, var(--green-mil) 48%, #111614 100%);
  color: #fff;
}
.portfolio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .55;
  pointer-events: none;
}
.portfolio-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(57,81,70,.45) 0%, transparent 70%);
  pointer-events: none;
}
.portfolio-hero .container,
.portfolio-cta .container,
.portfolio-footer .container {
  position: relative;
  z-index: 1;
}
.portfolio-cta.section-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(57,81,70,.86) 0%, rgba(44,60,44,.76) 45%, rgba(17,22,20,.8) 100%),
    url('../img/interno2.jpeg') center center / cover fixed;
  background-blend-mode: multiply;
}
.portfolio-cta.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .34;
  pointer-events: none;
}
.portfolio-cta.section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.08) 0%, transparent 68%);
  pointer-events: none;
}
.portfolio-cta.section-dark > .container {
  position: relative;
  z-index: 1;
}
.portfolio-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .4rem .95rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.portfolio-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.portfolio-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: 1.02rem;
}
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.filter-btn {
  border: 1.5px solid rgba(57,81,70,.18);
  background: #fff;
  color: var(--green-dark);
  border-radius: 999px;
  padding: .72rem 1.1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(57,81,70,.25);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.portfolio-card {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57,81,70,.28);
  box-shadow: var(--shadow-lg);
}
.portfolio-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.portfolio-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.portfolio-card:hover .portfolio-card-image {
  transform: scale(1.05);
}
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,22,20,0) 40%, rgba(17,22,20,.45) 100%);
}
.portfolio-card-body {
  padding: 1.35rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex: 1;
}
.portfolio-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.portfolio-card-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: 999px;
  padding: .32rem .72rem;
  background: rgba(57,81,70,.1);
  color: var(--green);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.portfolio-card-year {
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 700;
}
.portfolio-card-title {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}
.portfolio-card-desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.portfolio-card-services {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.portfolio-service-badge {
  border-radius: 999px;
  background: var(--gray-light);
  color: var(--text-dark);
  padding: .35rem .7rem;
  font-size: .72rem;
  font-weight: 600;
}
.portfolio-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: .9rem;
  border-top: 1px solid var(--gray-mid);
}
.portfolio-btn {
  border: none;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: .7rem 1rem;
  transition: var(--transition);
}
.portfolio-btn:hover {
  background: #c0040f;
  transform: translateY(-1px);
}
.portfolio-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  background: rgba(13,17,15,.76);
  backdrop-filter: blur(6px);
  padding: 1.25rem;
}
.portfolio-modal.active {
  display: flex;
}
.portfolio-modal-content {
  position: relative;
  width: min(980px, 100%);
  max-height: min(86vh, 920px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.portfolio-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(17,22,20,.88);
  color: #fff;
  font-size: 1.25rem;
  z-index: 3;
  transition: var(--transition);
}
.portfolio-modal-close:hover {
  background: var(--red);
  transform: scale(1.06);
}
.portfolio-modal-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--green-dark);
  flex-shrink: 0;
}
.portfolio-modal-body {
  padding: 1.65rem 1.75rem 1.75rem;
  overflow: auto;
  flex: 1;
  min-height: 0;
}
.portfolio-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: 999px;
  background: rgba(57,81,70,.12);
  color: var(--green);
  padding: .38rem .8rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.portfolio-modal-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.portfolio-modal-section {
  margin-bottom: 1.5rem;
}
.portfolio-modal-section h3 {
  color: var(--green-dark);
  font-size: .98rem;
  font-weight: 800;
  margin-bottom: .75rem;
}
.portfolio-modal-section p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
  margin: 0;
}
.portfolio-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
}
.portfolio-modal-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.65;
}
.portfolio-modal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}
.portfolio-modal-footer {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-mid);
}
.portfolio-modal-btn {
  min-height: 46px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  padding: .85rem 1.2rem;
  transition: var(--transition);
}
.portfolio-modal-btn-primary {
  background: var(--red);
  color: #fff;
}
.portfolio-modal-btn-primary:hover {
  background: #c0040f;
  color: #fff;
  transform: translateY(-1px);
}
.portfolio-modal-btn-secondary {
  background: var(--gray-light);
  color: var(--text-dark);
}
.portfolio-modal-btn-secondary:hover {
  background: var(--gray-mid);
  color: var(--text-dark);
}
.modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .portfolio-hero {
    padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  }
  .portfolio-modal-content {
    max-height: 90vh;
  }
  .portfolio-modal-image {
    height: 190px;
  }
  .portfolio-modal-body {
    padding: 1.2rem;
  }
  .portfolio-card-body {
    padding: 1.1rem;
  }
  .portfolio-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============================================================
   PARCEIROS / CLIENTES – Carrossel Infinito
   ============================================================ */
.logos-track-wrap { overflow: hidden; position: relative; }
.logos-track-wrap::before, .logos-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.logos-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.logos-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }
.logos-track {
  display: flex; gap: 2.5rem; align-items: center;
  animation: scroll-logos 28s linear infinite; width: max-content;
}
.logos-track:hover { animation-play-state: paused; }
.partner-logo {
  height: 92px;
  min-width: 170px;
  padding: 1rem 1.15rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
}
.partner-logo img {
  max-width: 135px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1) opacity(.82);
  transition: var(--transition);
}
.partner-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(57,81,70,.3);
  box-shadow: var(--shadow-md);
}
.partner-logo:hover img {
  filter: none;
  opacity: 1;
}

@media (max-width: 991.98px), (hover: none) and (pointer: coarse) {
  .logos-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
  }
  .logos-track-wrap.is-dragging { cursor: grabbing; }
  .logos-track-wrap::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .logos-track {
    animation: none;
    gap: 1rem;
    padding-inline: 1rem;
  }
  .partner-logo {
    min-width: min(170px, 72vw);
    scroll-snap-align: center;
  }
  .partner-logo:nth-child(n + 9) { display: none; }
  .partner-logo img {
    pointer-events: none;
    -webkit-user-drag: none;
  }
}
.partner-placeholder {
  height: 50px; padding: .5rem 1.5rem;
  background: var(--gray-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: var(--text-muted);
  white-space: nowrap; min-width: 130px; border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.partner-placeholder:hover { border-color: var(--green); color: var(--green); }
@keyframes scroll-logos { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonial-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2rem; height: 100%;
}
.testimonial-stars { color: #f5c518; font-size: .88rem; margin-bottom: 1rem; }
.testimonial-text  { font-size: .93rem; color: rgba(255,255,255,.82); font-style: italic; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: #fff; font-size: .88rem; }
.testimonial-role { font-size: .75rem; color: rgba(255,255,255,.5); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-section {
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #395146 0%, #2c3c2c 48%, #121815 100%);
  background-attachment: fixed;
  background-size: 200% 200%;
  isolation: isolate;
}
.home-cta {
  background:
    linear-gradient(135deg, rgba(57,81,70,.84) 0%, rgba(44,60,44,.76) 45%, rgba(17,22,20,.82) 100%),
    url('../img/interno2.jpeg') center center / cover fixed;
  background-blend-mode: multiply;
}
.home-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .34;
}
.home-cta::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.08) 0%, transparent 68%);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.09) 1.1px, transparent 0);
  background-size: 34px 34px;
  opacity: .45;
}
.cta-section::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(57,81,70,.2) 0%, rgba(57,81,70,.08) 34%, transparent 70%);
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTATO
   ============================================================ */
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 46px; height: 46px; border-radius: var(--radius);
  background: var(--gray-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: var(--green); flex-shrink: 0;
}
.contact-info-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.contact-info-value { font-size: .93rem; font-weight: 600; color: var(--text-dark); }
.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--red); }

.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--gray-mid); border-radius: var(--radius);
  padding: .75rem 1rem; font-family: 'Montserrat', sans-serif;
  font-size: .88rem; transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(57,81,70,.15);
}
.contact-form label { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .3rem; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-logo  { height: 48px; margin-bottom: 1rem; }
.footer-slogan { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; }
.footer-heading { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .86rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-detail {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .86rem;
  line-height: 1.6;
}
.footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; margin-top: 3rem;
  font-size: .78rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 1040;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); color: #fff; animation: none; }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--green-dark); color: #fff; border-radius: var(--radius);
  padding: .4rem .9rem; font-size: .76rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ============================================================
   AVISO DE COOKIES
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1060;
  background: var(--green-dark); color: rgba(255,255,255,.82);
  padding: 1rem 1.5rem; font-size: .84rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  transform: translateY(100%); transition: transform .4s ease;
}
#cookie-banner.visible { transform: none; }
#cookie-banner a { color: var(--red); }

/* ============================================================
   MODAIS DE POLÍTICAS
   ============================================================ */
.policy-modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.8); z-index: 2000; align-items: center; justify-content: center;
  padding: 2rem;
}
.policy-modal.active { display: flex; }
.policy-modal-content {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 700px; max-height: 85vh; overflow-y: auto;
  padding: 2.5rem; position: relative;
}
.policy-modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--red); color: #fff; border: none;
  width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; font-size: 1.5rem; display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.policy-modal-close:hover { background: #c0040f; transform: scale(1.1); }
.policy-modal-title { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1.5rem; }
.policy-modal-section { margin-bottom: 2rem; }
.policy-modal-section h3 { font-size: 1.1rem; font-weight: 700; color: var(--red); margin-bottom: .8rem; }
.policy-modal-section p { color: var(--text-muted); line-height: 1.8; margin-bottom: .8rem; }
.policy-modal-list { list-style: none; padding-left: 1.5rem; }
.policy-modal-list li { margin-bottom: .6rem; color: var(--text-muted); position: relative; }
.policy-modal-list li:before { content: "•"; position: absolute; left: -1.5rem; color: var(--red); font-weight: bold; }

/* ============================================================
   UTILITáRIOS
   ============================================================ */
.text-red   { color: var(--red) !important; }
.text-green { color: var(--green) !important; }
.fw-800     { font-weight: 800 !important; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
::selection { background: var(--red); color: #fff; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 991px) {
  .hero-float-cards .hfc { display: none; }
  .radar-card-hero { display: none; }
  .hero-photo-wrap img { height: 360px; }
}
@media (max-width: 767px) {
  section { padding: 3.5rem 0; }
  .hero-section { padding: calc(var(--header-h) + 2rem) 0 3rem; min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contacts-bar .contact-item { padding: .5rem 0; }
  .founder-photo-wrap img { height: 360px; }
  .modal-carousel .carousel-item img { height: 200px; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 575px) {
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; font-size: 1.5rem; }
  .wa-tooltip { display: none; }
}
