/* ============================================
   CÓDIGO ALPHA - DARK PREMIUM DESIGN
   Tipografia: Sora + Inter
   Cores: Preto Grafite + Vermelho Segurança + Branco
   ============================================ */

/* Importar Fontes */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   VARIÁVEIS CSS
   ============================================ */
:root {

  /* =========================
     PALETA OFICIAL CÓDIGO ALPHA
  ========================== */

  --primary-color: #CD001A;        /* Vermelho Segurança */
  --primary-hover: #a80015;

  --bg-dark: #25282A;              /* Grafite principal */
  --bg-card: #2E3234;              /* Grafite elevado */

  --text-primary: #FFFFFF;
  --text-secondary: #D9D9D6;
  --text-muted: #A8A8A5;

  --border-color: rgba(217, 217, 214, 0.15);

  /* Dourados oficiais */
  --gold: #BC9E6E;
  --gold2: #DACCB4;

  /* Terracota apoio */
  --accent-soft: #C48672;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s ease;

  --shadow: 0 15px 40px rgba(0,0,0,0.45);
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.25);
}


/* ============================================
   RESET E ESTILOS GLOBAIS
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
/*body {
  cursor: url("../images/cursor4.png") 16 16, auto !important;
}*/

/* ============================================
   MARCA D'ÁGUA PREMIUM - CÓDIGO ALPHA
   Paleta: Dourado + Vermelho
   ============================================ */

body {
    position: relative;
    background-color: #0c0c0f; /* grafite profundo */
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(196,155,90,0.06) 0%, transparent 60%),
        url("/images/logocodigo.png") center center no-repeat;
    background-size: cover, 42%;
    opacity: 0.08;
    z-index: -2;
    pointer-events: none;
    filter: grayscale(100%) contrast(110%) brightness(90%);
    animation: alphaFloat 40s ease-in-out infinite;
}

@keyframes alphaFloat {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-12px) scale(1.015); }
    100% { transform: translateY(0px) scale(1); }
}


/* SPLASH SCREEN */
#splash {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #0b0f1a; /* azul escuro tech */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Partículas ocupando tudo */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Conteúdo central */
.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.splash-logo {
  width: 200px;
  animation: fadeScale 1.2s ease forwards;
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ============================================
   CONTAINER E LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon{
  width: 3.25rem;     /* + */
  height: 3.25rem;    /* + */
  border-radius: 0.85rem;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex-shrink:0;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(217,217,214,0.16);

  box-shadow:
    0 18px 46px rgba(0,0,0,0.45),
    0 12px 28px rgba(205,0,26,0.10);

  backdrop-filter: blur(10px);
}

.logo-icon img{
  width: 90%;       /* antes era 78% */
  height: 90%;
  object-fit: contain;
  display:block;

  /* melhora nitidez */
  image-rendering: auto;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary-color);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 101;
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
  }
  
  nav.active {
    display: flex;
  }
  
  nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  
  .nav-buttons a, .nav-buttons button {
    width: 100%;
    text-align: center;
  }
  
  .menu-toggle {
    display: block;
  }
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #d32f3a;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

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

/* ============================================
   ACCENT LINE
   ============================================ */
.accent-line {
  width: 3rem;
  height: 0.25rem;
  background-color: var(--primary-color);
  border-radius: 9999px;
  margin-bottom: 1rem;
  
}

/* ============================================
   SEÇÕES
   ============================================ */
section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 1rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-dark), rgba(15, 20, 25, 0.8), rgba(15, 20, 25, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 607px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: justify;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    margin-top: 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   CREDIBILIDADE
   ============================================ */
.credibility {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.credibility-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.credibility-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.1);
}

.card-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: justify;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SEÇÃO DE SERVIÇOS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: justify;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SEÇÃO ALTERNADA
   ============================================ */
.section-alternated {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.justify { text-align: justify;}

.section-alternated.reverse {
  direction: rtl;
}

.section-alternated.reverse > * {
  direction: ltr;
}

.section-alternated img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 2px solid rgba(230, 57, 70, 0.3);
}

@media (max-width: 768px) {
  .section-alternated {
    grid-template-columns: 1fr;
  }
  
  .section-alternated.reverse {
    direction: ltr;
  }
}

/* ============================================
   TIMELINE — ZIGUE-ZAGUE REAL + HOVER PREMIUM
   (compatível com seu HTML)
   ============================================ */

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(205, 0, 26, 1),
    rgba(205, 0, 26, 0.28)
  );
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

/* ========= CARD ========= */
.timeline-content {
  position: relative;
  background: rgba(44, 48, 51, 0.52);
  border: 1px solid rgba(217, 217, 214, 0.14);
  border-radius: 0.85rem;
  padding: 1.6rem 1.7rem;

  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);

  transition: 0.25s ease;
  transform: translateY(0);
}

/* Hover premium (card) */
.timeline-item:hover .timeline-content {
  transform: translateY(-4px);
  border-color: rgba(205, 0, 26, 0.50);
  box-shadow: 0 24px 60px rgba(205, 0, 26, 0.10);
}

/* “setinha” conectando o card na linha */
.timeline-content::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: rgba(44, 48, 51, 0.85);
  border: 1px solid rgba(217, 217, 214, 0.16);
  transform: translateY(-50%) rotate(45deg);
  transition: 0.25s ease;
}

/* item ímpar: card à ESQUERDA → seta aponta pra direita */
.timeline-item:nth-child(odd) .timeline-content::after {
  right: -8px;
}

/* item par: card à DIREITA → seta aponta pra esquerda */
.timeline-item:nth-child(even) .timeline-content::after {
  left: -8px;
}

.timeline-item:hover .timeline-content::after {
  border-color: rgba(205, 0, 26, 0.55);
}

/* ========= STEP (bolinha) ========= */
.timeline-step {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;

  background:
    radial-gradient(circle at 30% 30%,
      rgba(255,255,255,0.35),
      rgba(255,255,255,0) 55%),
    var(--primary-color);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;

  border: 4px solid var(--bg-dark);
  box-shadow: 0 14px 34px rgba(205, 0, 26, 0.25);

  transition: 0.25s ease;
  z-index: 2;
}

/* Hover premium na bolinha */
.timeline-item:hover .timeline-step {
  transform: scale(1.10);
  box-shadow: 0 18px 46px rgba(205, 0, 26, 0.38);
}

/* ========= GARANTIR ZIGUE-ZAGUE ========= */
/* card do item par (2,4) vai pra coluna da direita */
.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
}

/* card do item ímpar (1,3,5) fica na esquerda */
.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
}

/* step sempre no meio */
.timeline-step {
  grid-column: 2;
}

/* ========= MOBILE (timeline premium vertical) ========= */
@media (max-width: 768px) {

  .timeline {
    padding: 1.25rem 0;
  }

  /* linha da timeline encosta na esquerda */
  .timeline::before {
    left: 1.1rem;
    transform: none;
  }

  .timeline-items{
    gap: 1.6rem;
  }

  /* vira layout vertical robusto */
  .timeline-item{
    display: grid;
    grid-template-columns: 2.4rem 1fr; /* step + card */
    gap: 1rem;
    align-items: start;
  }

  /* step alinhado com a linha */
  .timeline-step{
    width: 2.1rem;
    height: 2.1rem;
    font-size: .9rem;
    border-width: 3px;

    grid-column: 1;
    grid-row: 1;
    margin: 0; /* remove gambiarra */
  }

  /* card sempre ao lado */
  .timeline-content{
    grid-column: 2;
    width: 100%;
    padding: 1.2rem 1.2rem;
  }

  /* remove zigue-zague no mobile */
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content{
    grid-column: 2;
  }

  /* some com setinha e div vazio */
  .timeline-content::after{
    display: none;
  }

  .timeline-item > div:empty{
    display: none;
  }
}


/* ============================================
   TRUSTED BY — MARQUEE PREMIUM (LOOP INFINITO)
   - Logos brancas no normal
   - Hover: volta cor real
   - Loop suave + pause no hover
   ============================================ */

.trusted-by{
  padding: 5.5rem 0;
  position: relative;
}

.trusted-by::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 320px at 18% 0%,
      rgba(205, 0, 26, 0.12),
      transparent 60%),
    radial-gradient(720px 240px at 85% 30%,
      rgba(188, 158, 110, 0.10),
      transparent 60%);
  pointer-events:none;
}

.trusted-subtitle{
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* Container do loop (com fade nas bordas) */
.trusted-marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0;

  /* borda leve (enterprise) */
  border-top: 1px solid rgba(217,217,214,0.10);
  border-bottom: 1px solid rgba(217,217,214,0.10);

  /* fade nas bordas (premium) */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}

/* Track que se move */
.trusted-track{
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;

  animation: trustedScroll 28s linear infinite;
  will-change: transform;
}

/* pausa quando passar mouse no track */
.trusted-track:hover{
  animation-play-state: paused;
}

/* Logos (branco default) */
.trusted-logo{
  height: 74px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;

  /* branco + clean */
  opacity: 0.80;
  filter: grayscale(100%) brightness(1000%);
  transition: 0.22s ease;
}

/* Hover: volta cor real */
.trusted-logo:hover{
  opacity: 1;
  filter: none;
  transform: translateY(-2px);

  /* glow premium sutil */
  filter: drop-shadow(0 18px 26px rgba(205,0,26,0.08));
}

/* animação: metade da largura pq duplicamos a lista */
@keyframes trustedScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Responsivo */
@media (max-width: 1024px){
  .trusted-track{
    gap: 30px;
    animation-duration: 24s;
  }
  .trusted-logo{
    height: 62px;
    max-width: 190px;
  }
}

@media (max-width: 768px){
  .trusted-marquee{
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      #000 6%,
      #000 94%,
      transparent
    );
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 6%,
      #000 94%,
      transparent
    );
  }

  .trusted-track{
    gap: 18px;
    animation-duration: 18s;
  }

  .trusted-logo{
    height: 48px;
    max-width: 160px;
  }
}

/* Acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce){
  .trusted-track{
    animation: none;
    transform: none;
  }
  .trusted-marquee{
    -webkit-mask-image: none;
    mask-image: none;
  }
}


/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.1);
}

.stars {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.testimonial-author {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-author .role {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.testimonial-author .company {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
  background-color: var(--bg-card);
}

.faq-question:hover {
  background-color: rgba(230, 57, 70, 0.05);
}

.faq-toggle {
  color: var(--primary-color);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* ============================================
   FORMULÁRIO
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-divider {
  border-top: 1px solid var(--border-color);
  margin: 2rem 0;
  padding-top: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: white;
}

.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.4);
}

.floating-cta svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ============================================
   SEÇÃO CTA FINAL
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 0.5rem;
  padding: 3rem;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
  display: none;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}



.goldText{
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(201,161,90,.12);
}
/* ============================================
   MOBILE HEADER FIX (S23 etc.)
   ============================================ */
@media (max-width: 768px){
  header{
    padding: .75rem 0;
  }

  .header-content{
    height: auto;                 /* tira o fixo de 5rem */
    gap: .75rem;
    align-items: center;
  }

  /* logo menor e alinhada */
  .logo{
    font-size: 1.2rem;
    gap: .55rem;
  }

  .logo-icon{
    width: 2.4rem;
    height: 2.4rem;
    border-radius: .75rem;
  }

  /* BOTÕES: compactos, não estouram */
  .nav-buttons{
    flex-direction: row;
    gap: .65rem;
  }

  .nav-buttons .btn{
    padding: .65rem 1rem;        /* reduz tamanho */
    font-size: .95rem;
    border-radius: .65rem;
    white-space: nowrap;
  }

  /* WhatsApp sem borda enorme ocupando tudo */
  .btn-secondary{
    border-width: 1px;
  }
}

/* ============================================
   ATUAÇÃO (MAPA FLUTUANTE) — PREMIUM
   ============================================ */

.sectionDark{
  position: relative;
  overflow: hidden;
}

.sectionDark::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
}

.mapSplit{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.2rem;
  align-items: center;
  z-index: 1;
}

/* Texto */
.mapText .kicker{
  display:flex;
  align-items:center;
  gap:.6rem;
  letter-spacing:.14em;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  color: rgba(217,217,214,0.75);
  margin-bottom: .8rem;
}

.dotGold{
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  box-shadow: 0 0 24px rgba(201,161,90,.22);
}

.titleSerif{
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.mapText .text{
  max-width: 44ch;
  color: rgba(217,217,214,0.78);
  margin-bottom: 1.6rem;
}

/* Box Estados */
.statesBox{
  background: rgba(26,31,46,0.45);
  border: 1px solid rgba(217,217,214,0.10);
  border-radius: 1.1rem;
  padding: 1.4rem 1.4rem 1.2rem;

  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.statesTitle{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.statesGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.stateItem{
  display:flex;
  align-items:center;
  gap:.65rem;

  padding: .85rem 1rem;
  border-radius: 1rem;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(217,217,214,0.10);

  color: rgba(255,255,255,0.92);
  font-weight: 600;

  transition: .22s ease;
}

.stateItem:hover{
  transform: translateY(-2px);
  border-color: rgba(201,161,90,0.22);
  box-shadow: 0 18px 40px rgba(201,161,90,0.08);
}

.check{
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-size: .85rem;
  font-weight: 900;

  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: rgba(10,13,16,.95);

  box-shadow: 0 0 22px rgba(201,161,90,.18);
}

.statesNote{
  margin-top: 1.1rem;
  color: rgba(217,217,214,0.70);
  font-size: .92rem;
  line-height: 1.5;
}

/* ============================================
   MAPA SOLTO (SEM CARD) — PREMIUM
   ============================================ */


/* aura grande e macia atrás do mapa */
.mapAura{
  position:absolute;
  inset: -18%;
  background:
    radial-gradient(closest-side,
      rgba(201,161,90,0.34),
      rgba(230,57,70,0.08) 55%,
      transparent 72%);
  filter: blur(18px);
  opacity: .95;
  pointer-events:none;
  z-index: 0;
}

/* imagem do mapa “solta” */
.mapImg{
  position:absolute;
  inset: 0;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  /* deixa mais “3D/metal” */
  filter:
    drop-shadow(0 40px 90px rgba(0,0,0,.65))
    drop-shadow(0 18px 60px rgba(201,161,90,.18))
    contrast(1.10)
    saturate(1.12);

  transform: translateZ(0);
  z-index: 2;
}

/* responsivo */
@media (max-width: 1024px){
  .mapFloat{
    min-height: 420px;
    transform: none;
  }
}

@media (max-width: 768px){
  .mapFloat{
    min-height: 340px;
    transform: none;
  }
  .mapAura{
    inset: -28%;
    opacity: .85;
  }
}
.mapFloat{
  position: relative;
  width: 100%;
  min-height: 520px;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;

  overflow: visible;
  border-radius: 0;

  animation: mapFloat 6.4s cubic-bezier(.4,0,.2,1) infinite;
  will-change: transform;
}

/* animação MAIS FORTE */
@keyframes mapFloat{
  0%,100%{ transform: translateY(-10px) rotate(-0.4deg); }
  50%{ transform: translateY(-20px) rotate(0.4deg); }
}

/* responsivo */
@media (max-width: 1024px){
  .mapFloat{
    min-height: 420px;
  }
}

@media (max-width: 768px){
  .mapFloat{
    min-height: 340px;
  }

  .mapAura{
    inset: -28%;
    opacity: .85;
  }
}


/* ============================================
   SEGMENTOS — ENTERPRISE PREMIUM MODE
   ============================================ */

.segment-card{
  position: relative;
  height: 300px;
  border-radius: 1.2rem;
  overflow: hidden;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background-size: cover;
  background-position: center;

  border: none;

  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 10px 40px rgba(205,0,26,.08);

  transition: .5s cubic-bezier(.2,.6,.2,1);
  will-change: transform;
}

/* Overlay base escuro com profundidade */
.segment-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(10,13,16,.65) 0%,
      rgba(10,13,16,.82) 70%
    );

  backdrop-filter: blur(2px);
  transition: .5s ease;
  z-index:1;
}

/* Glow dourado sutil atrás */
.segment-card::before{
  content:"";
  position:absolute;
  inset:-30%;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(201,161,90,.22),
      rgba(205,0,26,.10) 45%,
      transparent 65%
    );

  opacity:.55;
  filter: blur(30px);
  transition:.6s ease;
  z-index:0;
}

/* Conteúdo */
.segment-content{
  position:relative;
  z-index:2;
  padding:2rem;
  max-width: 90%;
  transition:.4s ease;
}

.segment-content h3{
  font-size:1.55rem;
  font-weight:700;
  margin-bottom:.6rem;
  color:#fff;
  letter-spacing:.02em;
}

.segment-content p{
  font-size:.95rem;
  color: rgba(255,255,255,.82);
  max-width: 28ch;
  margin: 0 auto;
}

/* Linha dourada animada */
.segment-card::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  height:3px;
  width:0%;

  background: linear-gradient(90deg,var(--gold2),var(--gold));
  transition:.45s ease;
  z-index:3;
}

/* ======================
   HOVER ULTRA PREMIUM
====================== */

.segment-card:hover{
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(201,161,90,.35);

  box-shadow:
    0 45px 120px rgba(0,0,0,.65),
    0 20px 70px rgba(201,161,90,.18);
}

.segment-card:hover .segment-overlay{
  background:
    linear-gradient(
      180deg,
      rgba(10,13,16,.55) 0%,
      rgba(10,13,16,.70) 70%
    );
}

.segment-card:hover::before{
  opacity:.85;
  transform: scale(1.08);
}

.segment-card:hover::after{
  width:100%;
}

.segment-card:hover .segment-content{
  transform: translateY(-4px);
}

/* ======================
   RESPONSIVO
====================== */

@media(max-width:1024px){
  .segment-card{
    height:260px;
  }
}

@media(max-width:768px){
  .segment-card{
    height:220px;
  }

  .segment-content h3{
    font-size:1.3rem;
  }

  .segment-content p{
    font-size:.85rem;
  }
}

  .justificar-pes{ text-align: justify; }