/*
Theme Name: Viralix Marketing
Theme URI: https://viralix.com.br
Author: Viralix Marketing
Author URI: https://viralix.com.br
Description: Tema institucional para agências de marketing digital.
Version: 2.0.0
License: Proprietary
Text Domain: viralix
*/

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:        #5566ff;
  --primary-hover:  #4455ee;
  --bg:             #030712;
  --surface:        #040b18;
  --muted:          #64748b;
  --text:           #f1f5f9;
  --section-space:  120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(85,102,255,.3); border-radius: 3px; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}

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

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────────────────────────────────
   BACKGROUND DECORATIONS
───────────────────────────────────────── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.blur-1 {
  width: 600px; height: 600px;
  background: rgba(85,102,255,.12);
  top: -200px; right: -100px;
}
.blur-2 {
  width: 500px; height: 500px;
  background: rgba(85,102,255,.07);
  bottom: 0; left: -100px;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  background: rgba(3,7,18,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.admin-bar header { top: 32px; }

.navbar {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ─────────────────────────────────────────
   LOGO
───────────────────────────────────────── */
.logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  flex-shrink: 0;
}
.logo span { color: var(--primary); }
.logo small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}
.logo-has-image {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
}
.logo-has-image img {
  width: auto;
  max-width: 115px;
  max-height: 56px;
  object-fit: contain;
}

/* ─────────────────────────────────────────
   DESKTOP NAV
───────────────────────────────────────── */
nav#main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
nav#main-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav#main-nav a:hover { color: #fff; background: rgba(255,255,255,.05); }

/* ─────────────────────────────────────────
   NAVBAR ACTIONS
───────────────────────────────────────── */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   HAMBURGER TOGGLE
───────────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
  flex-shrink: 0;
}
.menu-toggle:hover { background: rgba(255,255,255,.1); }
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(85,102,255,.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.04);
}
.btn-whatsapp-text { display: inline; }
.btn-whatsapp-icon {
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  border-radius: 10px;
}

/* ─────────────────────────────────────────
   TAG BADGE
───────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(85,102,255,.12);
  border: 1px solid rgba(85,102,255,.25);
  border-radius: 100px;
  color: #7c88ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* ─────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────── */
.section {
  padding: var(--section-space) 0;
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 100px;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content { max-width: 600px; }
.hero h1 {
  font-size: 49px;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.06;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}


.hero-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: rgba(85,102,255,.12);
  border: 1px solid rgba(85,102,255,.25);
  color: #7c88ff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-feature h4 { font-size: 15px; margin-bottom: 4px; }
.hero-feature p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(120px);
  opacity: .12;
  z-index: 0;
}
.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.hero-graph { display: none; }
.hero-features {
  display: block ruby!important;
  gap: 36px!important;
  flex-wrap: wrap!important;
  width: 227px!important;
}

.hero-feature {
  display: flex!important;
  align-items: flex-start!important;
  gap: 14px!important;
  padding: 0 4px!important;
}

/* ─────────────────────────────────────────
   PRESENCE
───────────────────────────────────────── */
.presence {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.presence-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.presence-left {
  padding: 48px;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 28px;
}
.presence-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(85,102,255,.2), rgba(85,102,255,.05));
  border: 1px solid rgba(85,102,255,.3);
  color: #7c88ff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.presence-left h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}
.presence-right {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.presence-right p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
}
.presence-right p + p { margin-top: 20px; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  padding: 38px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  transition: .35s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(85,102,255,.4);
  box-shadow: 0 24px 60px rgba(85,102,255,.12);
}
.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(85,102,255,.15), rgba(85,102,255,.05));
  border: 1px solid rgba(85,102,255,.25);
  color: #7c88ff;
  font-size: 28px;
  margin-bottom: 28px;
}
.service-card h3 { font-size: 22px; margin-bottom: 14px; }
.service-card p { font-size: 15px; line-height: 1.9; color: var(--muted); }

/* ─────────────────────────────────────────
   PORTFOLIO
───────────────────────────────────────── */
.portfolio { background: var(--surface); }
.slider-wrapper { position: relative; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: rgba(85,102,255,.15);
  color: #fff;
  font-size: 24px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 20;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--primary); }
.slider-prev { left: -18px; }
.slider-next { right: -18px; }
.portfolio-slider { overflow: hidden; touch-action: pan-y; }
.portfolio-track {
  display: flex;
  gap: 28px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.portfolio-card {
  min-width: 340px;
  flex: 0 0 340px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.06);
  background: #08111f;
  transition: box-shadow .35s, border-color .35s;
  cursor: pointer;
}
.portfolio-card:hover {
  border-color: rgba(85,102,255,.35);
  box-shadow: 0 8px 40px rgba(85,102,255,.18);
}
.portfolio-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.portfolio-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  transform: translateY(0%);
  transition: transform 3s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.portfolio-card:hover .portfolio-img-wrap img {
  transform: translateY(calc(-100% + 240px));
}
.portfolio-content { padding: 28px; }
.portfolio-content h4 { font-size: 20px; margin-bottom: 8px; }
.portfolio-content span { color: var(--muted); font-size: 14px; }
.portfolio-button {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

/* ─────────────────────────────────────────
   DIFFERENTIALS
───────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.diff-list { display: flex; flex-direction: column; gap: 28px; }
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
}
.diff-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(85,102,255,.15), rgba(85,102,255,.05));
  border: 1px solid rgba(85,102,255,.25);
  color: #7c88ff;
  font-size: 24px;
}
.diff-item h4 { font-size: 20px; margin-bottom: 8px; }
.diff-item p { font-size: 15px; line-height: 1.9; color: var(--muted); }

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.cta {
  padding: 70px;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #111d40, #0b1330);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: #5566ff;
  filter: blur(140px);
  opacity: .18;
  right: -80px; top: -80px;
}
.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 760px;
}
.cta-icon {
  width: 92px; height: 92px;
  min-width: 92px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c88ff;
  font-size: 38px;
}
.cta h2 { font-size: 44px; letter-spacing: -1.5px; margin-bottom: 16px; }
.cta p { font-size: 17px; line-height: 1.95; color: #cbd5e1; }
.cta .btn { position: relative; z-index: 2; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  padding: 90px 0 50px;
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.footer-brand { max-width: 360px; }
.footer-brand p { line-height: 1.9; color: var(--muted); margin-top: 20px; }
.footer-info { display: flex; flex-wrap: wrap; gap: 38px; }
.footer-item { display: flex; align-items: flex-start; gap: 16px; }
.footer-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(85,102,255,.1);
  border: 1px solid rgba(85,102,255,.2);
  color: #7c88ff;
  flex-shrink: 0;
}
.footer-item h5 { font-size: 15px; margin-bottom: 4px; }
.footer-item h5 a { color: inherit; }
.footer-item span { color: var(--muted); font-size: 13px; }
.copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1200px)
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-grid,
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .hero-image { order: -1; }
  .hero h1 { font-size: 54px; max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .presence-box { grid-template-columns: 1fr; }
  .presence-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .cta { flex-direction: column; align-items: flex-start; }
	.hero-features {
  display: block ruby!important;
  gap: 36px!important;
  flex-wrap: wrap!important;
  width: 227px!important;
}

.hero-feature {
  display: flex!important;
  align-items: flex-start!important;
  gap: 14px!important;
  padding: 0 4px!important;
}
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 992px)
   All desktop header rules are reset here
   to prevent bleeding/conflicts.
══════════════════════════════════════════ */
@media (max-width: 992px) {
  :root { --section-space: 90px; }
  .container { padding: 0 20px; }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 62px;
  }
  .admin-bar header { top: 46px; }

  /* ── NAVBAR ROW ── */
  .navbar {
    height: 62px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0;
  }

  .logo { font-size: 20px; letter-spacing: -.5px; }
  .logo small { font-size: 7px; margin-top: 2px; }

  /* ── MOBILE NAV — hidden by default ── */
  nav#main-nav {
    /* reset desktop layout */
    flex: unset;
    justify-content: unset;
    /* mobile layout */
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(2,6,23,.97);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 8px 0 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
  }
  nav#main-nav.open { display: flex; }

  nav#main-nav a {
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 0;
    white-space: normal;
  }
  nav#main-nav a:hover { background: rgba(255,255,255,.04); }

  /* ── NAVBAR ACTIONS ── */
  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  /* ── WHATSAPP BUTTON — icon only ── */
  .btn-whatsapp-text { display: none; }
  .btn-whatsapp-icon {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    font-size: 18px;
    gap: 0;
    flex-shrink: 0;
  }

  /* ── HAMBURGER ── */
  .menu-toggle { display: flex; }

  /* ── HERO ── */
  .hero {
    padding-top: 90px;
    padding-bottom: 80px;
    min-height: auto;
  }
  .hero h1 { font-size: 40px; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; }
  .hero p { font-size: 15px; line-height: 1.85; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-feature-icon { width: 34px; height: 34px; min-width: 34px; font-size: 14px; }
  .hero-feature h4 { font-size: 14px; }
  .hero-feature p { font-size: 12px; }
  .hero-image::before { width: 300px; height: 300px; }
  .hero-image img { border-radius: 24px; }

  /* ── SECTIONS ── */
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 34px; line-height: 1.15; margin-bottom: 18px; }
  .section-subtitle { font-size: 15px; line-height: 1.8; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 26px; border-radius: 24px; }
  .service-icon { width: 64px; height: 64px; border-radius: 18px; margin-bottom: 22px; font-size: 24px; }
  .service-card h3 { font-size: 22px; }

  /* ── PRESENCE ── */
  .presence-box { border-radius: 28px; }
  .presence-left, .presence-right { padding: 30px 24px; }
  .presence-left { flex-direction: column; }
  .presence-left h3 { font-size: 28px; }
  .presence-right p { font-size: 15px; line-height: 1.9; }

  /* ── PORTFOLIO ── */
  .portfolio-track { gap: 18px; }
  .portfolio-card { min-width: calc(100vw - 40px); flex: 0 0 calc(100vw - 40px); }
  .portfolio-img-wrap { height: 220px; }
  .portfolio-card:hover .portfolio-img-wrap img { transform: translateY(calc(-100% + 220px)); }
  .portfolio-content { padding: 22px; }
  .portfolio-content h4 { font-size: 20px; }
  .slider-btn { width: 44px; height: 44px; font-size: 18px; }
  .slider-prev { left: -10px; }
  .slider-next { right: -10px; }

  /* ── DIFFERENTIALS ── */
  .diff-grid { gap: 40px; }
  .diff-list { gap: 18px; }
  .diff-item { padding: 22px; gap: 16px; border-radius: 22px; }
  .diff-icon { width: 52px; height: 52px; min-width: 52px; border-radius: 16px; font-size: 20px; }
  .diff-item h4 { font-size: 19px; margin-bottom: 8px; }
  .diff-item p { font-size: 14px; line-height: 1.8; }

  /* ── CTA ── */
  .cta { padding: 34px 24px; border-radius: 28px; gap: 30px; }
  .cta-content { flex-direction: column; gap: 20px; }
  .cta-icon { width: 72px; height: 72px; min-width: 72px; font-size: 30px; }
  .cta h2 { font-size: 30px; line-height: 1.15; margin-bottom: 14px; }
  .cta p { font-size: 15px; line-height: 1.9; }
  .cta .btn { width: 100%; }

  /* ── FOOTER ── */
  footer { padding: 70px 0 40px; }
  .footer-brand { max-width: 100%; }
  .footer-grid { flex-direction: column; gap: 30px; }
  .footer-info { flex-direction: column; gap: 22px; }
  .footer-item { gap: 14px; }
  .footer-icon { width: 48px; height: 48px; }
  .copyright { margin-top: 40px; padding-top: 24px; font-size: 13px; line-height: 1.7; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .section-title { font-size: 30px; }
  .presence-left h3 { font-size: 24px; }
  .cta h2 { font-size: 26px; }
  .btn:not(.btn-whatsapp-icon) { min-height: 54px; padding: 0 24px; font-size: 14px; }
	.hero-features {
  display: flex!important;
  gap: 36px!important;
  flex-wrap: wrap!important;
  width: 100%!important;
}

.hero-feature {
  display: flex!important;
  align-items: flex-start!important;
  gap: 14px!important;
  padding: 0 4px!important;
}
}
