/* =========================================================
   RECURSAL MULTAS — design tokens
   ========================================================= */
:root{
  --black:        #121212;
  --asphalt:      #232326;
  --yellow:       #FFCE19;
  --yellow-deep:  #E8A800;
  --red-alert:    #D62828;
  --paper:        #FFCE19;
  --paper-2:      #F5B800;
  --gray-mid:     #3A3A37;
  --gray-line:    #B8860B;
  --white:        #FFFFFF;

  --font-display: 'Anton', sans-serif;
  --font-body:    'Work Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(18,18,18,.10);
  --shadow-hard: 0 6px 0 rgba(18,18,18,1);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight:400; line-height:1.05; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
  .hero::before{ display:none !important; }
  .reveal{ opacity:1 !important; transform:none !important; }
  .typewriter::after{ animation:none !important; opacity:1 !important; }
  .giroflex-overlay{ display:none !important; }
}

:focus-visible{
  outline: 3px solid var(--red-alert);
  outline-offset: 2px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-family: var(--font-body);
  font-weight:700;
  font-size:.95rem;
  padding: .75rem 1.3rem;
  border-radius: 999px;
  border: 2px solid var(--black);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn .icon{ width:18px; height:18px; }
.btn:hover{ transform: translateY(-2px); }

.btn-whats{
  background: var(--yellow);
  color: var(--black);
  font-weight:800;
}
.btn-whats:hover{ background: var(--yellow-deep); }

.btn-primary{
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover{ box-shadow: 0 8px 0 rgba(18,18,18,1); }

.btn-ghost{
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-ghost:hover{ background: var(--black); color: var(--yellow); }

.btn-lg{ padding: .95rem 1.7rem; font-size: 1rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: var(--yellow);
  border-bottom: 3px solid var(--black);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1.5rem;
  padding: .7rem 24px;
}
.brand{ display:flex; align-items:center; gap:.6rem; flex-shrink:0; }
.brand-logo{
  width:auto;
  height:54px;
  border-radius: 4px;
}

.main-nav{ display:flex; gap: 1.6rem; }
.main-nav a{
  font-weight:600;
  font-size:.92rem;
  position:relative;
  padding: 4px 0;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:4px;
  background: var(--yellow);
  transition: width .2s ease;
}
.main-nav a:hover::after{ width:100%; }

.header-cta{
  flex-shrink:0;
  background: var(--black);
  color: var(--yellow);
}
.header-cta:hover{ background:#000; }

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding: 6px;
}
.hamburger span{
  width: 26px; height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  background: radial-gradient(ellipse at 50% 120%, rgba(255,199,44,.15) 0%, transparent 55%), var(--black);
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  z-index:3;
  background: linear-gradient(90deg,
    transparent 10%,
    rgba(214,40,40,.8) 25%,
    transparent 40%,
    transparent 60%,
    rgba(30,64,175,.8) 75%,
    transparent 90%
  );
  background-size:200% 100%;
  animation: giroflex 2.5s ease-in-out infinite alternate;
  opacity:.65;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Coloque a foto da empresa na pasta assets/images/ com o nome fachada.jpg */
  background-image: url('../assets/images/fachada.jpg');
  background-size: cover;
  background-position: center;
  pointer-events: none;
  opacity: 0.35; /* Ajuste a opacidade (0.0 a 1.0) para escurecer ou clarear a foto de fundo */
  z-index: 1; /* Para ficar atrás do gradiente .hero::before e do conteúdo */
}
.hero-inner{
  position:relative;
  z-index: 5;
  display:grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  font-weight:700;
  font-size:.8rem;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: .9rem;
}
.eyebrow-mono{ font-family: var(--font-mono); }
.eyebrow.light{ color: var(--yellow); }

.hero h1{
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  white-space: nowrap;
  min-height: 1.3em;
}
.hero h1 .hi{ color: var(--yellow); }
.typewriter{
  color: var(--yellow);
  position:relative;
}
.typewriter::after{
  content:"|";
  color: var(--yellow);
  font-weight:400;
  margin-left:2px;
  animation: blink .6s step-end infinite;
}

.hero-lead{
  font-size: 1.08rem;
  line-height:1.6;
  color: #D9D7CF;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero .btn-ghost{ border-color: var(--white); color: var(--white); }
.hero .btn-ghost:hover{ background: var(--white); color: var(--black); }
.hero .btn-whats{ background: var(--yellow); color: var(--black); }
.hero .btn-whats:hover{ background: var(--yellow-deep); }

.hero-stats{
  display:flex;
  gap: 2.2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.4rem;
}
.hero-stats li{ display:flex; flex-direction:column; }
.hero-stats strong{ font-family: var(--font-display); font-size:1.5rem; color: var(--yellow); }
.hero-stats span{ font-size:.78rem; color:#B9B7AF; }

/* --- Ticket visual --- */
.hero-visual{ display:flex; justify-content:center; }
.ticket{
  position:relative;
  width: 320px;
  background: var(--paper);
  color: var(--black);
  border-radius: 10px;
  padding: 2rem 1.6rem 1.8rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  transform: rotate(-3deg);
  border: 2px dashed var(--gray-line);
}
.ticket-hole{
  position:absolute;
  top: -10px; left: 24px;
  width:20px; height:20px;
  background: var(--black);
  border-radius:50%;
  box-shadow: 60px 0 0 var(--black), 120px 0 0 var(--black), 180px 0 0 var(--black), 240px 0 0 var(--black);
}
.ticket-hole-2{ display:none; }
.ticket-mono{
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .5px;
  color: var(--gray-mid);
  margin-bottom: .4rem;
}
.ticket h3{
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: .5px;
}
.ticket-row{
  display:flex;
  justify-content:space-between;
  font-size:.85rem;
  padding: .45rem 0;
  border-bottom: 1px dashed var(--gray-line);
}
.ticket-row span:first-child{ color: var(--gray-mid); font-weight:600; }
.ticket-row .pending{ color: var(--red-alert); font-weight:700; }

.stamp{
  position:absolute;
  right: -10px;
  top: 35px;
  width: 128px;
  height:128px;
  border-radius:50%;
  border: 4px solid var(--red-alert);
  color: var(--red-alert);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height:1.15;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  transform: rotate(14deg) scale(0);
  opacity:0;
  background: rgba(214,40,40,.05);
  animation: stampIn .7s cubic-bezier(.2,1.4,.4,1) 2.4s forwards;
}
@keyframes stampIn{
  0%{ transform: rotate(14deg) scale(1.8); opacity:0; }
  40%{ transform: rotate(14deg) scale(.92); opacity:1; }
  50%{ transform: rotate(14deg) scale(1.05) translateX(3px); opacity:1; }
  60%{ transform: rotate(14deg) scale(.97) translateX(-2px); opacity:1; box-shadow: 0 0 25px rgba(255,199,44,.7); }
  70%{ transform: rotate(14deg) scale(1.02) translateX(1px); opacity:1; box-shadow: 0 0 0 transparent; }
  100%{ transform: rotate(14deg) scale(1); opacity:1; }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar{
  background: var(--yellow);
  border-bottom: 3px solid var(--black);
}
.trust-inner{ padding: .7rem 24px; text-align:center; }
.trust-inner p{ font-size:.85rem; font-weight:600; }

/* =========================================================
   SECTIONS — shared
   ========================================================= */
.section{ padding: 5.5rem 0; }
.section-alt{ background: var(--paper-2); }
.section-dark{ background: var(--asphalt); color: var(--white); }
.section-title{
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}
.section-title.light{ color: var(--white); }
.section-lead{
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 56ch;
  margin-bottom: 3rem;
}
.section-lead.light{ color:#C9C7BE; }

.road-divider{
  height: 6px;
  background-image: repeating-linear-gradient(
    90deg, var(--yellow) 0 34px, transparent 34px 54px
  );
  background-color: var(--black);
  animation: roadDividerMove 8s linear infinite;
}

/* =========================================================
   SERVICES CARDS
   ========================================================= */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.cards-grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .3s ease;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
}
.card-icon{
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.6rem;
  background: rgba(255, 206, 25, 0.2);
  color: var(--black);
  border-radius: 14px;
  margin-bottom: 1.3rem;
}
.card h3{ font-family: var(--font-body); font-size: 1.25rem; margin-bottom:.7rem; color: var(--black); font-weight:700; line-height:1.2; }
.card p{ font-size:.95rem; color: var(--gray-mid); line-height:1.6; }

/* =========================================================
   WHY US
   ========================================================= */
.why-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items:center;
}
.why-list{ display:flex; flex-direction:column; gap: 1.5rem; }
.why-list li{ display:flex; gap: 1.1rem; align-items:flex-start; }
.why-num{
  font-family: var(--font-mono);
  font-weight:700;
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow), #f5a623);
  box-shadow: 0 0 20px rgba(255, 206, 25, 0.5);
  font-size: .85rem;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  flex-shrink:0;
}
.why-list h4{ font-family: var(--font-body); font-weight:700; font-size:1.02rem; margin-bottom:.25rem; }
.why-list p{ font-size:.88rem; color:#C9C7BE; line-height:1.5; }

.why-visual{ display:flex; justify-content:center; }
.badge-circle{
  width: 260px; height:260px;
  border-radius:50%;
  background: var(--asphalt);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 0 30px rgba(255,206,25,0.15);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow: hidden;
  z-index: 0;
}
.badge-circle::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius:50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255,206,25,0.15) 30%, rgba(255,206,25,0.8) 50%, rgba(255,206,25,0.15) 70%, transparent 100%), var(--asphalt);
  animation: spinSlow 12s linear infinite;
  z-index: -1;
}
@keyframes spinSlow{ to{ transform: rotate(360deg); } }
.badge-circle::before{
  content:"";
  position:absolute;
  inset: 12px;
  border-radius:50%;
  background: var(--asphalt);
  border: 2px solid rgba(255,206,25,0.3);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
  z-index: 1;
}
.badge-year, .badge-txt{ position:relative; z-index:2; }
.badge-year{ font-family: var(--font-display); font-size: 2.4rem; color: var(--yellow); line-height: 1; margin-top: 0.2rem;}
.badge-txt{ font-family: var(--font-mono); font-size:.75rem; color: var(--white); text-align:center; letter-spacing:1px; margin-bottom:.2rem; }

/* =========================================================
   PROCESS
   ========================================================= */
.process{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.process-step{
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.03);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position:relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.process-step:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
}
.process-step::after{
  content: "→";
  font-family: var(--font-display);
  color: rgba(0, 0, 0, 0.15);
  font-size: 1.8rem;
  position:absolute;
  top: 50%;
  right: -1.2rem;
  transform: translateY(-50%);
  background: transparent;
  width: auto;
  height: auto;
  z-index: 10;
}
.process-step:last-child::after{ display:none; }
.process-code{
  display:inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight:700;
  color: var(--red-alert);
  background: rgba(214, 40, 40, 0.1);
  border: none;
  border-radius: 999px;
  padding: .4rem .8rem;
  margin-bottom: 1.2rem;
}
.process-step h3{ font-family: var(--font-body); font-size: 1.15rem; margin-bottom:.6rem; color: var(--black); font-weight:700; line-height:1.2; }
.process-step p{ font-size:.9rem; color: var(--gray-mid); line-height:1.5; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial{
  background: var(--white);
  border: 2px solid var(--yellow);
  border-top: 5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-hard);
}
.testimonial p{
  font-size: .95rem;
  line-height:1.6;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.testimonial-author{ display:flex; align-items:center; gap:.7rem; }
.avatar{
  width:38px; height:38px;
  border-radius:50%;
  background: var(--yellow);
  border: 2px solid var(--black);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-size:1rem;
  flex-shrink:0;
}
.testimonial-author strong{ display:block; font-size:.9rem; }
.testimonial-author small{ color: var(--gray-mid); font-size:.78rem; }

/* =========================================================
   FAQ / ACCORDION
   ========================================================= */
.accordion{ max-width: 760px; display:flex; flex-direction:column; gap: .8rem; }
.accordion-item{
  background: var(--white);
  border: 2px solid var(--black);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  overflow:hidden;
}
.accordion-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  background:none;
  border:none;
  text-align:left;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-body);
  font-weight:700;
  font-size: .98rem;
}
.accordion-icon{
  flex-shrink:0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red-alert);
  transition: transform .25s ease;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon{ transform: rotate(45deg); }
.accordion-panel{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
}
.accordion-panel p{
  padding: 0 1.4rem 1.3rem;
  font-size:.9rem;
  color: var(--gray-mid);
  line-height:1.6;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info{ margin: 1.6rem 0 1.6rem; display:flex; flex-direction:column; gap: 1rem; }
.contact-info li{ display:flex; flex-direction:column; gap:.15rem; }
.contact-info strong{ font-size:.78rem; text-transform:uppercase; letter-spacing:.6px; color: var(--red-alert); }
.contact-info span{ font-size:.95rem; }

.map-wrap{
  border: 2px solid var(--black);
  border-radius: var(--radius);
  overflow:hidden;
  height: 240px;
}
.map-wrap iframe{ width:100%; height:100%; border:0; }

.whatsapp-cta{
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-hard);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  height: fit-content;
  position:relative;
  overflow:hidden;
}
.whatsapp-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: repeating-linear-gradient(
    100deg, transparent 0 40px, rgba(255,199,44,.05) 40px 43px
  );
  pointer-events:none;
}
.whatsapp-cta-icon{
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  background: var(--yellow);
  border-radius:50%;
  margin-bottom: 1.3rem;
  position:relative;
}
.whatsapp-cta-icon .icon{ width:28px; height:28px; color: var(--black); }
.whatsapp-cta h3{ font-size: 1.4rem; margin-bottom: .8rem; position:relative; }
.whatsapp-cta p{ font-size:.95rem; color:#C9C7BE; line-height:1.6; margin-bottom: 1.8rem; position:relative; }
.whatsapp-cta-btn{ width:100%; justify-content:center; position:relative; }
.whatsapp-cta-note{
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size:.74rem;
  letter-spacing:.4px;
  color: var(--yellow);
  margin-bottom:0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--black); color: #C9C7BE; }
.footer-inner{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 24px 2.5rem;
}
.footer-brand{ display:flex; flex-direction:column; gap: .8rem; }
.footer-brand .brand-logo{ width:52px; height:52px; }
.footer-brand p{ font-size:.88rem; }
.footer-links{ display:flex; flex-direction:column; gap:.7rem; }
.footer-links h4{
  font-family: var(--font-body);
  font-weight:700;
  color: var(--white);
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.6px;
  margin-bottom:.3rem;
}
.footer-links a, .footer-links span{ font-size:.88rem; }
.footer-links a:hover{ color: var(--yellow); }

.footer-bottom{
  border-top: 2px solid var(--yellow);
  padding: 1.2rem 24px;
}
.footer-bottom p{ font-size:.78rem; text-align:center; color:#8E8C84; }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whats-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px; height:58px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  z-index: 90;
  animation: floatPulse 2.6s ease-in-out infinite;
}
.whats-float .icon{ width:28px; height:28px; color: var(--black); }
@keyframes floatPulse{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.07); }
}

/* =========================================================
   GIROFLEX INTRO — viatura passando ao abrir o site
   ========================================================= */
.giroflex-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;
  mix-blend-mode: hard-light;
  animation: giroOverlayFade .6s ease 1.8s forwards;
}
.giroflex-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45); /* Escurece mais o site pra luz destacar */
}
.giroflex-beam{
  position:absolute;
  top:-40%;
  left:0;
  height:180%;
  width:65vw;
  filter:blur(60px);
  will-change:transform,opacity;
}
.giroflex-red{
  background:radial-gradient(ellipse at center,rgba(255,0,0,.95) 0%,rgba(220,20,38,.4) 40%,transparent 65%);
  animation:
    beamSweep 2s cubic-bezier(.3,0,.2,1) forwards,
    pulseRed .25s ease-in-out infinite alternate;
}
.giroflex-blue{
  background:radial-gradient(ellipse at center,rgba(0,68,255,.95) 0%,rgba(20,80,235,.4) 40%,transparent 65%);
  animation:
    beamSweep 2s cubic-bezier(.3,0,.2,1) forwards,
    pulseBlue .25s ease-in-out infinite alternate;
}
@keyframes beamSweep{
  0%{ transform:translateX(100vw); }
  100%{ transform:translateX(-100vw); }
}
@keyframes pulseRed{
  0%{ opacity:.85; }
  100%{ opacity:.05; }
}
@keyframes pulseBlue{
  0%{ opacity:.05; }
  100%{ opacity:.85; }
}
@keyframes giroOverlayFade{
  to{ opacity:0; visibility:hidden; }
}

/* =========================================================
   ANIMATIONS — giroflex bar, road, reveal, typewriter
   ========================================================= */
@keyframes giroflex{
  from{ background-position:100% 0; }
  to{ background-position:0% 0; }
}
@keyframes roadScroll{
  from{ background-position:0 0; }
  to{ background-position:0 100%; }
}
@keyframes roadDividerMove{
  from{ background-position:0 0; }
  to{ background-position:54px 0; }
}
@keyframes blink{
  0%,100%{ opacity:1; }
  50%{ opacity:0; }
}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition: opacity .6s cubic-bezier(.25,.46,.45,.94), transform .6s cubic-bezier(.25,.46,.45,.94);
}
.reveal.revealed{
  opacity:1;
  transform:translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; }
  .why-grid{ grid-template-columns:1fr; }
  .why-visual{ order:-1; margin-bottom:1rem; }
  .cards-grid, .cards-grid-3{ grid-template-columns: repeat(2,1fr); }
  .process{ grid-template-columns: repeat(2,1fr); }
  .process-step::after{ display:none; }
  .testimonials{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 760px){
  .main-nav{
    position:fixed;
    top: 68px; left:0; right:0;
    background: var(--paper);
    border-bottom: 3px solid var(--black);
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open{ max-height: 400px; }
  .main-nav a{ padding: 1rem 24px; border-top: 1px solid rgba(0,0,0,.15); }
  .header-cta{ display:none; }
  .hamburger{ display:flex; }
  .cards-grid, .cards-grid-3{ grid-template-columns: 1fr; }
  .process{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns:1fr; }
  .hero{ padding: 3.2rem 0 3rem; }
  .hero h1{ font-size: clamp(1.1rem, 4.2vw, 1.6rem); }
  .section{ padding: 3.5rem 0; }
  .ticket{ width: 100%; max-width:320px; }
}
