/* ============================================================
   N1 LOCAÇÕES — DESIGN SYSTEM
   Paleta: Roxo escuro + Amarelo/Dourado + Branco
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --purple-900: #1a0533;
  --purple-800: #250742;
  --purple-700: #3a0d6e;
  --purple-600: #5c1bab;
  --purple-500: #7b2fd1;
  --purple-400: #9b5fe8;
  --purple-card: rgba(58, 13, 110, 0.45);
  --purple-border: rgba(155, 95, 232, 0.25);

  --gold-500: #f5b800;
  --gold-400: #ffd700;
  --gold-300: #ffe566;
  --gold-glow: rgba(245, 184, 0, 0.35);

  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-20: rgba(255, 255, 255, 0.12);

  --green-wa: #25d366;
  --green-wa-dark: #128c7e;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-card: 0 4px 24px rgba(0,0,0,.35), 0 1px 4px rgba(0,0,0,.2);
  --shadow-gold:  0 0 32px rgba(245,184,0,.25), 0 0 8px rgba(245,184,0,.15);
  --shadow-float: 0 8px 32px rgba(0,0,0,.45);

  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.45s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--purple-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold-500);
  color: var(--purple-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-400); box-shadow: 0 0 40px rgba(245,184,0,.45); }

.btn-large { font-size: 1.1rem; padding: 1rem 2.2rem; }
.btn-sm    { font-size: .875rem; padding: .6rem 1.2rem; }

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

.btn-equip {
  background: var(--green-wa);
  color: #fff;
  font-size: .875rem;
  padding: .6rem 1.2rem;
  border-radius: var(--radius-full);
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-equip:hover { background: #22c55e; box-shadow: 0 6px 24px rgba(37,211,102,.45); }

.btn-ghost-purple {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold-300);
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid var(--purple-border);
  padding: .6rem 1.4rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.btn-ghost-purple:hover { border-color: var(--gold-500); color: var(--gold-500); background: rgba(245,184,0,.06); }

/* Shine animation */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(245,184,0,.1);
  border: 1px solid rgba(245,184,0,.3);
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--white-60);
  max-width: 480px;
  margin-inline: auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(26, 5, 51, .85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--purple-border);
  transition: background var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  user-select: none;
  flex-shrink: 0;
}
.logo-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold-500);
  line-height: 1;
}
.logo-one {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gold-500);
  line-height: 1;
  margin-right: .15rem;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--white-90);
  line-height: 1;
  margin-top: .1rem;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.header-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white-60);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--gold-500); }
.btn-header-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold-500);
  color: var(--purple-900) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .55rem 1.2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.btn-header-cta:hover { background: var(--gold-400) !important; transform: translateY(-1px); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--purple-border);
  gap: .5rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white-60);
  padding: .5rem 0;
  border-bottom: 1px solid var(--white-20);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold-500); }
.mobile-cta {
  margin-top: .75rem;
  background: var(--green-wa);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: .9rem 1.5rem;
  border-radius: var(--radius-full);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-800) 50%, #1f0845 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--purple-600) 0%, transparent 70%);
  top: -150px; right: -150px;
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,184,0,.35) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: float2 10s ease-in-out infinite;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--purple-500) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: float1 12s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(20px) scale(.97); }
}

/* Hero split layout */
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(3rem, 8vh, 5rem);
  min-height: calc(100dvh - 68px);
}

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

/* Hero photo side */
.hero-photo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 2px var(--purple-border);
  max-width: 480px;
  width: 100%;
}
.hero-fachada-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
  transition: transform var(--transition-slow);
}
.hero-photo-frame:hover .hero-fachada-img { transform: scale(1.03); }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,5,51,.15) 0%,
    transparent 40%,
    rgba(26,5,51,.4) 100%
  );
  pointer-events: none;
}

/* Floating tags on hero photo */
.photo-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(26,5,51,.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--purple-border);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .5rem .9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.photo-tag svg { color: var(--gold-500); flex-shrink: 0; }
.photo-tag-top    { top: 1.25rem;    left: 1.25rem; animation: floatTag1 4s ease-in-out infinite; }
.photo-tag-bottom { bottom: 1.25rem; right: 1.25rem; animation: floatTag2 4.5s ease-in-out infinite; }
@keyframes floatTag1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes floatTag2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,184,0,.12);
  border: 1px solid rgba(245,184,0,.35);
  color: var(--gold-500);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  animation: fadeDown .7s ease both;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeDown .7s .1s ease both;
}
.hero-headline .highlight {
  color: var(--gold-500);
  text-shadow: 0 0 40px rgba(245,184,0,.4);
}
.hero-subheadline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--white-60);
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeDown .7s .2s ease both;
}
.hero-subheadline strong { color: var(--white); }
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeDown .7s .3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeDown .7s .4s ease both;
}
.stat { display: flex; flex-direction: column; gap: .1rem; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-500);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  font-weight: 500;
  color: var(--white-60);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--white-20);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.hero-scroll-hint span {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold-500);
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { top: 6px; opacity: 1; }
  80%       { top: 18px; opacity: 0; }
}

/* ============================================================
   EQUIPMENTS SECTION
   ============================================================ */
.equipments {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--purple-800);
  position: relative;
}
.equipments::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.equip-card {
  background: var(--purple-card);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.equip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(245,184,0,.3);
  border-color: rgba(245,184,0,.4);
}
.equip-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--purple-700);
}
.equip-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.equip-card:hover .equip-img-wrap img { transform: scale(1.07); }
.equip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,5,51,.8) 0%, transparent 60%);
  pointer-events: none;
}
.equip-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.equip-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
}

.equipments-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem;
  background: rgba(58,13,110,.3);
  border: 1px dashed var(--purple-border);
  border-radius: var(--radius-xl);
}
.equipments-cta p {
  color: var(--white-60);
  font-size: 1rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--purple-900);
  position: relative;
  overflow: hidden;
}
.how-it-works::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: var(--purple-card);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(245,184,0,.08);
  line-height: 1;
  position: absolute;
  top: .5rem; right: 1rem;
  user-select: none;
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(245,184,0,.15), rgba(245,184,0,.05));
  border: 1px solid rgba(245,184,0,.3);
  border-radius: var(--radius-md);
  color: var(--gold-500);
  margin-bottom: 1.25rem;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: .65rem;
}
.step-desc {
  font-size: .9rem;
  color: var(--white-60);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  padding-inline: .5rem;
  flex-shrink: 0;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--purple-800);
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.diferenciais-content .section-tag,
.diferenciais-content .section-title {
  text-align: left;
}
.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.diferenciais-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--purple-card);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: border-color var(--transition);
}
.diferenciais-list li:hover { border-color: rgba(245,184,0,.3); }
.dif-icon {
  font-size: 1.5rem;
  line-height: 1.3;
  flex-shrink: 0;
}
.diferenciais-list li div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.diferenciais-list li strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.diferenciais-list li span {
  font-size: .85rem;
  color: var(--white-60);
}

/* Reviews panel */
.reviews-panel {
  background: var(--purple-card);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reviews-header {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.rating-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-500);
  line-height: 1;
}
.rating-stars {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}
.rating-stars span {
  font-size: 1.1rem;
  color: var(--gold-500);
  letter-spacing: .05em;
}
.reviews-subtitle {
  font-size: .9rem;
  color: var(--white-60);
  margin-top: .25rem;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.review-stars {
  color: var(--gold-500);
  font-size: .9rem;
  margin-bottom: .4rem;
  letter-spacing: .05em;
}
.review-text {
  font-size: .875rem;
  color: var(--white-60);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: .5rem;
}
.review-author {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white-60);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-900) 50%, var(--purple-800) 100%);
  z-index: 0;
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,184,0,.15) 0%, transparent 65%);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
  max-width: 640px;
}
.cta-banner-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  margin-bottom: .5rem;
}
.cta-phone {
  font-size: .9rem;
  color: var(--white-60);
}
.cta-phone a {
  color: var(--gold-300);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--purple-900);
  border-top: 1px solid var(--purple-border);
  padding-top: 3rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
}
.footer-brand { flex: 1.5; min-width: 180px; }
.footer-tagline {
  font-style: italic;
  font-size: .875rem;
  color: var(--white-60);
  margin-top: .5rem;
}
.footer-info {
  flex: 2;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-info p {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--white-60);
  line-height: 1.5;
}
.footer-info svg { flex-shrink: 0; margin-top: .2rem; color: var(--gold-500); }
.footer-info a { color: var(--gold-300); font-weight: 600; }
.footer-info a:hover { color: var(--gold-400); }
.footer-links { flex: 1; min-width: 140px; display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.footer-bottom {
  border-top: 1px solid var(--purple-border);
  padding-block: 1.25rem;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--green-wa);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: slideInRight .6s .5s cubic-bezier(.34,1.56,.64,1) both;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
}
.float-label { white-space: nowrap; }
.float-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: var(--gold-500);
  border-radius: 50%;
  border: 2px solid var(--purple-900);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .6; }
}
@keyframes slideInRight {
  from { transform: translateX(120px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NOSSA LOJA
   ============================================================ */
.nossa-loja {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--purple-900);
  position: relative;
  overflow: hidden;
}
.nossa-loja::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.nossa-loja-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.nossa-loja-foto {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 2px var(--purple-border);
}
.nossa-loja-foto img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform var(--transition-slow);
}
.nossa-loja-foto:hover img { transform: scale(1.04); }
.nossaloja-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(26,5,51,.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--purple-border);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .45rem .9rem;
  border-radius: var(--radius-full);
}
.nossaloja-badge svg { color: var(--gold-500); }
.nossa-loja-info .section-title { text-align: left; }
.loja-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}
.loja-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.loja-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,.15), rgba(245,184,0,.05));
  border: 1px solid rgba(245,184,0,.25);
  border-radius: var(--radius-md);
  color: var(--gold-500);
}
.loja-details li div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.loja-details li strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.loja-details li span {
  font-size: .875rem;
  color: var(--white-60);
  line-height: 1.55;
}
.loja-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-photo {
    order: -1; /* foto vai pra cima no mobile */
  }
  .hero-photo-frame {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
  .hero-fachada-img {
    aspect-ratio: 16/9;
  }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .nossa-loja-inner  { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
  .step-card { max-width: 100%; width: 100%; }
}

@media (max-width: 700px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .whatsapp-float { padding: .8rem 1rem; }
  .float-label { display: none; }
  .footer-inner { flex-direction: column; }
  .loja-ctas { flex-direction: column; }
  .loja-ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .equipment-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
}
