/* ============================================================
   OMANERO · Global Styles — Light Minimal
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg-2: #f7f8fa;
  --bg-3: #f0f2f5;
  --surface: #ffffff;
  --surface-2: #f7f8fa;
  --border: #e5e7eb;
  --border-strong: #d1d5db;

  --primary: #ea580c;
  --primary-dark: #c2410c;
  --primary-light: #f97316;
  --primary-faint: #fff7ed;
  --primary-subtle: #fed7aa;

  --text: #111827;
  --text-muted: #6b7280;
  --text-dim: #9ca3af;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);

  --font-body: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

address {
  font-style: normal;
  /* remove browser default italic */
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ──────────────────────────────
   Typography
────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.accent-text {
  color: var(--primary);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-faint);
  border: 1px solid var(--primary-subtle);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  position: relative;
}

/* Decorative line above section header */
.section-header::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 20px;
  opacity: 0.5;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 1rem;
}

/* ──────────────────────────────
   Buttons
────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 11px 24px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 11px 24px;
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 11px 24px;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--bg-2);
}

.btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-nav:hover {
  background: var(--primary-dark);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 0.95rem;
}

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

/* ──────────────────────────────
   Navbar
────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  border-top: 3px solid var(--primary);
  transition: var(--transition);
}

#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.hamburger {
  display: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.mobile-menu a.btn {
  border-bottom: none;
  margin-top: 12px;
}

.mobile-menu.open {
  display: flex;
}

/* ──────────────────────────────
   Hero
────────────────────────────── */
#hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #fff 55%, #fff7ed 100%);
}

/* Dot grid - slightly more visible */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c7c7c7 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Orange blob top-right */
#hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.13) 0%, transparent 60%);
  pointer-events: none;
  overflow: hidden;
}

/* Decorative large ring — top left */
#hero .hero-blob-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 440px;
  height: 440px;
  border: 60px solid rgba(234, 88, 12, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

/* Second decorative ring — top right area */
#hero .hero-content::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -200px;
  width: 280px;
  height: 280px;
  border: 40px solid rgba(234, 88, 12, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-faint);
  border: 1px solid var(--primary-subtle);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-content h1 {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  max-width: 620px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 2px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Remove orb / scroll indicator for light theme */
.orb,
.scroll-indicator {
  display: none;
}

.hero-bg {
  display: none;
}

/* ──────────────────────────────
   Trust Strip
────────────────────────────── */
#trust {
  padding: 36px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-logo svg {
  color: var(--text-dim);
}

.trust-logo-ai {
  color: var(--primary);
}

.trust-logo-ai svg {
  color: var(--primary);
}

.trust-separator {
  font-size: 1.2rem;
  color: var(--text-dim);
}

/* ──────────────────────────────
   How It Works
────────────────────────────── */
#como-funciona {
  padding: 96px 0;
  position: relative;
}

/* Decorative corner ring */
#como-funciona::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -120px;
  width: 300px;
  height: 300px;
  border: 50px solid rgba(234, 88, 12, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.step {
  flex: 1;
  min-width: 180px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 3px 0 0 3px;
}

.step:hover {
  border-color: var(--primary);
  background: var(--primary-faint);
  box-shadow: var(--shadow);
}

.step:hover::after {
  opacity: 1;
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-top: 60px;
  flex-shrink: 0;
  padding: 0 4px;
}

/* ──────────────────────────────
   Servicios / Pricing
────────────────────────────── */
#servicios {
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pricing-card-featured {
  border-color: var(--primary);
  border-width: 2px;
}

.pricing-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pricing-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-card-header h3 {
  margin-bottom: 6px;
}

.pricing-card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-from {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.check {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.check.muted {
  color: var(--text-dim);
}

.muted {
  color: var(--text-dim);
}

/* ──────────────────────────────
   Audit CTA
────────────────────────────── */
#audit {
  padding: 96px 0;
  position: relative;
}

/* Subtle orange tint background on audit section */
#audit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(234, 88, 12, 0.03) 100%);
  pointer-events: none;
}

.audit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  background: linear-gradient(135deg, var(--primary-faint) 0%, #fff 60%);
  border: 1px solid var(--primary-subtle);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

/* Decorative circle inside audit card */
.audit-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border: 36px solid rgba(234, 88, 12, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.audit-left h2 {
  margin-bottom: 14px;
}

.audit-left>p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.audit-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.perk-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.audit-form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audit-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

input,
select,
textarea {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: var(--transition);
  width: 100%;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}

select {
  appearance: none;
  cursor: pointer;
}

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

.form-disclaimer {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.audit-success {
  text-align: center;
  padding: 40px 24px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  border: 2px solid #86efac;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #16a34a;
  margin: 0 auto 14px;
}

.audit-success h3 {
  margin-bottom: 6px;
}

.audit-success p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ──────────────────────────────
   Por qué OMANERO
────────────────────────────── */
#por-que {
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal lines pattern */
#por-que::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 40px,
      rgba(234, 88, 12, 0.025) 40px,
      rgba(234, 88, 12, 0.025) 41px);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-faint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ──────────────────────────────
   Contacto
────────────────────────────── */
#contacto {
  padding: 96px 0;
  position: relative;
}

#contacto::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -80px;
  width: 320px;
  height: 320px;
  border: 50px solid rgba(234, 88, 12, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-left h2 {
  margin-bottom: 14px;
}

.contact-left>p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--primary);
}

/* ──────────────────────────────
   Footer
────────────────────────────── */
#footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ──────────────────────────────
   AOS Scroll Animations
────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos-delay="300"] {
  transition-delay: 0.3s;
}

[data-aos-delay="400"] {
  transition-delay: 0.4s;
}

[data-aos-delay="500"] {
  transition-delay: 0.5s;
}

/* ──────────────────────────────
   Responsive
────────────────────────────── */
@media (max-width: 900px) {
  .audit-card {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 36px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 8px;
  }

  .step-arrow {
    transform: rotate(90deg);
    align-self: center;
    margin: 0;
  }
}

@media (max-width: 768px) {

  .nav-links,
  #nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
  }

  .hero-stats {
    gap: 28px;
  }

  .stat-divider {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    padding: 13px 24px;
  }

  .audit-card {
    padding: 24px 20px;
  }

  /* Hide overflow-causing decorative elements on small screens */
  #hero::after,
  #hero .hero-content::before,
  #hero .hero-blob-2,
  #como-funciona::after,
  #contacto::before {
    display: none;
  }
}