/* ==========================================================
   RoPuTech — Folha de Estilos Principal
   Paleta: Azul Meia-Noite | Branco Puro | Ciano Neon
   ========================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Space+Grotesk:wght@400;600;700&display=swap');

/* ---------- Variáveis CSS ---------- */
:root {
  --navy:      #0A0F2C;
  --navy-mid:  #0D1540;
  --navy-card: #111A4A;
  --navy-glass:#131D50;
  --cyan:      #00F5FF;
  --cyan-dim:  #00C8D4;
  --cyan-glow: rgba(0, 245, 255, 0.18);
  --white:     #FFFFFF;
  --white-70:  rgba(255,255,255,0.70);
  --white-15:  rgba(255,255,255,0.07);
  --border:    rgba(0, 245, 255, 0.20);

  --font-main: 'Outfit', sans-serif;
  --font-alt:  'Space Grotesk', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow-cyan: 0 0 28px rgba(0,245,255,0.35);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 99px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 1.25rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 15, 44, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.5));
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-70);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  border-radius: 99px;
  transition: width var(--transition);
  box-shadow: 0 0 8px var(--cyan);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cyan);
  color: var(--navy) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: box-shadow var(--transition), transform var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  box-shadow: var(--shadow-cyan);
  transform: translateY(-1px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-70);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--cyan); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 90px 1.5rem 40px;
  overflow: hidden;
}


/* Animated background grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to   { background-position: 50px 50px; }
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,245,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
}

.hero-logo {
  height: 200px;
  width: auto;
  max-width: 90vw;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 32px rgba(0, 245, 255, 0.7));
}






.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,245,255,0.1);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s 0.1s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-alt);
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  animation: fadeDown 0.8s 0.2s ease both;
}

.hero-title .highlight {
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(0,245,255,0.5);
}

.hero-tagline {
  font-size: clamp(0.85rem, 3vw, 1.05rem);
  font-weight: 300;
  color: var(--white-70);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeDown 0.8s 0.3s ease both;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeDown 0.8s 0.4s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 4px 24px rgba(0,245,255,0.3);
}
.btn-primary:hover {
  box-shadow: 0 4px 40px rgba(0,245,255,0.6);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--white-70);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeDown 1s 1s ease both;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy-glass);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 1.5rem;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {}
.stat-number {
  font-family: var(--font-alt);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0,245,255,0.4);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--white-70);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 5rem 1.5rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--cyan);
  border-radius: 99px;
  box-shadow: 0 0 6px var(--cyan);
}

.section-title {
  font-family: var(--font-alt);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--white-70);
  font-size: 0.95rem;
  max-width: 540px;
  line-height: 1.75;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { background: var(--navy-mid); }

.services-header { margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid rgba(0,245,255,0.10);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  cursor: default;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: rgba(0,245,255,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(0,245,255,0.12);
}
.service-card:hover::before { transform: scaleX(1); }

/* Card glow orb */
.card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(0,245,255,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0;
}
.service-card:hover .card-glow { opacity: 1; }

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.2);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(0,245,255,0.18);
  box-shadow: 0 0 20px rgba(0,245,255,0.25);
}

.service-icon svg {
  width: 28px; height: 28px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body {}
.service-title {
  font-family: var(--font-alt);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--white-70);
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.tag {
  background: rgba(0,245,255,0.07);
  border: 1px solid rgba(0,245,255,0.15);
  border-radius: 99px;
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--navy);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.why-visual {
  display: flex;
  justify-content: center;
}

.why-visual-box {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,245,255,0.15);
}
.why-ring-1 { width: 280px; height: 280px; animation: spin 30s linear infinite; }
.why-ring-2 { width: 210px; height: 210px; animation: spin 20s linear infinite reverse; border-style: dashed; }
.why-ring-3 { width: 140px; height: 140px; background: rgba(0,245,255,0.05); border-color: rgba(0,245,255,0.25); }

@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.why-center-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(0,245,255,0.05));
  border: 1.5px solid rgba(0,245,255,0.4);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 40px rgba(0,245,255,0.25);
}
.why-center-icon svg { width: 40px; height: 40px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }

/* Orbit dots */
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}
.orbit-dot-1 { top: 0; left: 50%; transform: translateX(-50%); animation: orbitTopBottom 3s ease-in-out infinite; }
.orbit-dot-2 { right: 0; top: 50%; transform: translateY(-50%); animation: orbitLeftRight 3s 1s ease-in-out infinite; }
@keyframes orbitTopBottom { 0%,100%{opacity:0.3; transform:translateX(-50%) scale(0.6);} 50%{opacity:1; transform:translateX(-50%) scale(1);} }
@keyframes orbitLeftRight { 0%,100%{opacity:0.3; transform:translateY(-50%) scale(0.6);} 50%{opacity:1; transform:translateY(-50%) scale(1);} }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white-15);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), transform var(--transition);
}
.why-item:hover {
  border-color: var(--border);
  transform: translateX(4px);
}

.why-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,245,255,0.1);
  border-radius: 10px;
  border: 1px solid rgba(0,245,255,0.2);
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }

.why-text h4 {
  font-family: var(--font-alt);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.why-text p {
  font-size: 0.82rem;
  color: var(--white-70);
  line-height: 1.6;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--navy-mid); }

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-header { margin-bottom: 2.5rem; }
.contact-header .section-desc { margin: 0 auto; }

.contact-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 0 60px rgba(0,245,255,0.07);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white-15);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  text-align: left;
  transition: border-color var(--transition);
}
.contact-info-item:hover { border-color: var(--border); }

.contact-info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,245,255,0.1);
  border-radius: 10px;
  border: 1px solid rgba(0,245,255,0.2);
}
.contact-info-icon svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }

.contact-info-text {}
.contact-info-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--white-70);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.contact-info-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  width: 100%;
}
.btn-whatsapp:hover {
  box-shadow: 0 4px 40px rgba(37,211,102,0.6);
  transform: translateY(-3px);
}
.btn-whatsapp svg { width: 22px; height: 22px; fill: white; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  border-radius: 99px;
  box-shadow: 0 6px 32px rgba(37,211,102,0.5);
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
  animation: floatIn 0.6s 1.5s ease both;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-float:hover {
  box-shadow: 0 8px 40px rgba(37,211,102,0.7);
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }

.whatsapp-float-label { white-space: nowrap; }

/* Pulse ring around button */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 99px;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060A1F;
  border-top: 1px solid rgba(0,245,255,0.08);
  padding: 2.5rem 1.5rem 6rem; /* bottom space for floater */
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-logo img { height: 36px; width: auto; filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.4)); }


.footer-tagline {
  font-size: 0.78rem;
  color: var(--white-70);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 1.25rem 0;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   ANIMATIONS — Intersection Observer
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* ============================================================
   RESPONSIVE — TABLET (≥ 640px)
   ============================================================ */
@media (min-width: 640px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-cta-group { flex-direction: row; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .nav-links  { display: flex; }

  section { padding: 7rem 2rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-inner { grid-template-columns: 1fr 1fr; align-items: center; }

  .contact-card { padding: 3rem; }

  .whatsapp-float-label { display: block; }
}

/* ============================================================
   RESPONSIVE — WIDE (≥ 1280px)
   ============================================================ */
@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
