/* ============================================================
   ASEGÚRATE SD — LANDING PAGE
   Paleta fusionada: Naranja + Morado + Turquesa + Dorado
   Mobile-first · Responsivo · Moderno
   ============================================================ */

/* ===== Variables globales (Custom Properties) ===== */
:root {
  /* Colores de marca */
  --orange: #ff6b35;
  --orange-deep: #e8541c;
  --purple: #7b2ff7;
  --purple-deep: #5b21b6;
  --turquoise: #06d6a0;
  --turquoise-light: #40e0d0;
  --gold: #d4af37;
  --pink: #ec4899;

  /* Tema */
  --bg: #08070f;
  --bg-card: #110d1f;
  --bg-card-2: #1a1530;
  --fg: #f5f3ff;
  --fg-muted: #a89dc4;
  --fg-soft: #f4ecd8;

  /* Tipografía */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Sombra */
  --shadow-card: 0 24px 60px -20px rgba(255, 107, 53, 0.4),
                 0 0 0 1px rgba(255, 107, 53, 0.3) inset;
}

/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: rgba(255, 107, 53, 0.18);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img { max-width: 100%; display: block; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

::selection {
  background: rgba(255, 107, 53, 0.4);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange), var(--purple), var(--turquoise));
  border-radius: 5px;
}

/* ===== Layout helpers ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.scroll-anchor {
  position: relative;
  top: -100px;
  visibility: hidden;
}

/* ===== Badges & titulos de sección ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.18);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.badge svg { width: 1rem; height: 1rem; color: var(--orange); }

.tri-border {
  position: relative;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-2));
  border: none;
}

.tri-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--orange), var(--purple), var(--turquoise), var(--gold), var(--orange));
  background-size: 300% 300%;
  animation: gradient-shift 6s ease infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--fg-soft);
  margin-bottom: 1rem;
}

.section-description {
  color: rgba(245, 243, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Texto con shimmer tri-color */
.tri-shimmer {
  background: linear-gradient(90deg, var(--orange), #ffaa6b, var(--purple), #a78bfa, var(--turquoise), var(--orange));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

.text-gold-shimmer {
  background: linear-gradient(90deg, var(--gold), #f5e7a8, var(--gold), #b8860b, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

.text-light { color: var(--fg-soft); }

.c-orange-text { color: var(--orange); }
.c-turquoise-text { color: var(--turquoise); }

/* ===== Botones ===== */
.btn-fusion {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--purple), var(--turquoise));
  background-size: 200% 200%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: gradient-shift 5s ease infinite;
}

.btn-fusion::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.7s ease;
}

.btn-fusion:hover::after { left: 100%; }
.btn-fusion:hover {
  box-shadow: 0 12px 45px -10px rgba(255, 107, 53, 0.7), 0 0 30px -5px rgba(123, 47, 247, 0.5);
  transform: translateY(-2px);
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  transition: all 0.3s ease;
}

.btn-orange:hover {
  box-shadow: 0 10px 40px -10px rgba(255, 107, 53, 0.8);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  border: 1px solid rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(8, 7, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  height: 2.5rem;
  width: auto;
  transition: transform 0.5s ease;
}

.nav-logo:hover .nav-logo-img { transform: rotate(3deg); }

.nav-logo-text {
  display: none;
  text-align: left;
  line-height: 1.2;
}

.nav-logo-title {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
}

.nav-logo-subtitle {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 243, 255, 0.6);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 243, 255, 0.8);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after { width: 75%; }

.nav-cta { display: none; align-items: center; gap: 0.5rem; }

.nav-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-icon-btn:hover { background: rgba(255, 107, 53, 0.1); }

.nav-whatsapp-btn { padding: 0.625rem 1.25rem; }

.nav-whatsapp-btn svg { width: 1rem; height: 1rem; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(8, 7, 15, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 107, 53, 0.15);
  margin-top: 0.75rem;
}

.nav-mobile.open {
  display: flex;
  animation: fade-down 0.3s ease;
}

.nav-mobile a {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(245, 243, 255, 0.9);
  border-radius: 0.5rem;
}

.nav-mobile a:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
}

.nav-mobile-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.nav-mobile-cta > * { flex: 1; justify-content: center; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 47, 247, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}

.orb-orange {
  top: 25%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.2);
}

.orb-purple {
  bottom: 25%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(123, 47, 247, 0.2);
  animation-delay: 2s;
}

.orb-turquoise {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 214, 160, 0.12), transparent 70%);
  filter: none;
  animation: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  margin: 1rem 0 1.5rem;
  line-height: 1.05;
}

.hero-description {
  color: rgba(245, 243, 255, 0.7);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 auto;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}

.stat-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 243, 255, 0.5);
  margin-top: 0.25rem;
  line-height: 1.2;
}

/* ===== Hero - Logo interactivo ===== */
.hero-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
}

.orbital-ring {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.ring-1 {
  inset: -3rem;
  border: 2px dashed rgba(255, 107, 53, 0.3);
  animation: spin-slow 30s linear infinite;
}

.ring-2 {
  inset: -4rem;
  border: 1px solid rgba(123, 47, 247, 0.2);
  animation: spin-slow 20s linear infinite reverse;
}

.orbital-dots {
  position: absolute;
  inset: 0;
  animation: spin-slow 15s linear infinite;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.dot-orange {
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  box-shadow: 0 0 15px 4px rgba(255, 107, 53, 0.7);
}

.dot-purple {
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  box-shadow: 0 0 15px 4px rgba(123, 47, 247, 0.7);
}

.dot-turquoise {
  top: 50%;
  right: -3rem;
  transform: translateY(-50%);
  background: var(--turquoise);
  box-shadow: 0 0 15px 4px rgba(6, 214, 160, 0.7);
}

.dot-gold {
  top: 50%;
  left: -3rem;
  transform: translateY(-50%);
  background: var(--gold);
  box-shadow: 0 0 15px 4px rgba(212, 175, 55, 0.7);
}

.pulse-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--orange);
  animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  opacity: 0;
}

.pulse-ring.delay-1 { animation-delay: 0.8s; }
.pulse-ring.delay-2 { animation-delay: 1.6s; }

.hero-logo-link {
  position: relative;
  display: block;
  width: 220px;
  height: 220px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-logo-link:hover {
  transform: scale(1.05) rotate(3deg);
}

.hero-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  filter: blur(40px);
  background: radial-gradient(circle, rgba(255, 107, 53, 0.5), rgba(123, 47, 247, 0.3), rgba(6, 214, 160, 0.2));
  transition: transform 0.5s ease;
}

.hero-logo-link:hover .hero-logo-glow { transform: scale(1.1); }

.hero-logo-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.7), rgba(17, 13, 31, 0.55));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 53, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.6));
  transition: filter 0.5s ease;
}

.hero-logo-link:hover .hero-logo-card img {
  filter: drop-shadow(0 0 35px rgba(255, 107, 53, 0.9));
}

.hero-logo-badge {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--purple), var(--turquoise));
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-logo-badge svg {
  width: 0.75rem;
  height: 0.75rem;
  animation: wiggle 1s ease-in-out infinite;
}

.hero-logo-whatsapp-hint {
  position: absolute;
  top: 1rem;
  left: -1rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.7), rgba(17, 13, 31, 0.55));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 53, 0.18);
}

.hint-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hint-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 243, 255, 0.6);
}

.hint-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
}

/* ===== Marquee ===== */
.marquee {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 107, 53, 0.15);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
  background: rgba(8, 7, 15, 0.6);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  width: max-content;
  animation: scroll-marquee 30s linear infinite;
}

.marquee-track > span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(245, 243, 255, 0.4);
}

.marquee-star {
  font-size: 1rem;
}

.c-orange { color: var(--orange); }
.c-purple { color: var(--purple); }
.c-turquoise { color: var(--turquoise); }
.c-gold { color: var(--gold); }

/* ===== Grupo Empresarial - Cards ===== */
.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.business-card {
  position: relative;
  display: block;
  padding: 1.75rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.7), rgba(17, 13, 31, 0.55));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 53, 0.18);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}

.business-glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  filter: blur(60px);
  background: var(--accent);
  opacity: 0.25;
  transition: opacity 0.5s ease;
}

.business-card:hover .business-glow { opacity: 0.5; }

.business-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.business-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  color: var(--accent);
  font-size: 2rem;
}

.business-stat { text-align: right; }

.stat-value-lg {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label-sm {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 243, 255, 0.5);
}

.business-tagline {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 243, 255, 0.5);
  margin-bottom: 0.5rem;
}

.business-name {
  font-size: 1.5rem;
  color: var(--fg-soft);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.business-description {
  color: rgba(245, 243, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.business-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.business-highlights span {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 53, 0.2);
  background: rgba(255, 107, 53, 0.05);
  color: rgba(245, 243, 255, 0.8);
}

.business-cta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s ease;
}

.business-card:hover .business-cta { gap: 0.625rem; }

.business-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.5s ease;
}

.business-card:hover .business-accent-line { width: 100%; }

/* ===== Tabs Servicios ===== */
.tabs {
  display: inline-flex;
  padding: 0.375rem;
  border-radius: 999px;
  margin: 0 auto 3rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.tab {
  padding: 0.625rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(245, 243, 255, 0.7);
  transition: all 0.3s ease;
}

.tab.active {
  background: linear-gradient(135deg, var(--orange), var(--purple), var(--turquoise));
  background-size: 200% 200%;
  color: #fff;
  animation: gradient-shift 5s ease infinite;
}

.tab:not(.active):hover { color: var(--fg); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fade-up 0.5s ease; }

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  position: relative;
  display: block;
  padding: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.7), rgba(17, 13, 31, 0.55));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 53, 0.18);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: var(--shadow-card);
}

.service-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-featured svg { width: 0.75rem; height: 0.75rem; fill: var(--orange); }

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon { background: rgba(255, 107, 53, 0.2); }

.service-icon.purple {
  background: rgba(123, 47, 247, 0.1);
  border-color: rgba(123, 47, 247, 0.25);
  color: var(--purple);
}

.service-card h3 {
  font-size: 1.125rem;
  color: var(--fg-soft);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.service-card p {
  color: rgba(245, 243, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.3s ease;
}

.service-card:hover .service-cta { gap: 0.625rem; }

.service-cta.turquoise { color: var(--turquoise); }

/* Corporativo */
.corporate-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.corporate-num {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: rgba(123, 47, 247, 0.3);
}

/* ===== Filosofía ===== */
.philosophy { position: relative; overflow: hidden; }

.quote {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
  position: relative;
}

.quote > svg {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(212, 175, 55, 0.6);
  margin: 0 auto 1rem;
}

.quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(245, 243, 255, 0.9);
}

.quote footer {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(245, 243, 255, 0.6);
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pillar {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.7), rgba(17, 13, 31, 0.55));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 53, 0.18);
  overflow: hidden;
  transition: all 0.4s ease;
}

.pillar:hover { border-color: rgba(255, 107, 53, 0.5); transform: translateY(-4px); }

.pillar-num {
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  opacity: 0.2;
}

.pillar-line {
  width: 3rem;
  height: 1px;
  margin-bottom: 1.25rem;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.pillar p {
  color: rgba(245, 243, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  position: relative;
}

/* ===== Contacto ===== */
.divider-fusion {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4), rgba(123, 47, 247, 0.4), rgba(6, 214, 160, 0.4), transparent);
  margin-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-left .section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  text-align: left;
  margin: 1rem 0;
}

.contact-left .section-description {
  text-align: left;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(245, 243, 255, 0.6);
}

.contact-location svg { width: 1rem; height: 1rem; color: var(--orange); }

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.channel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--ch) 30%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--ch) 15%, transparent), rgba(17, 13, 31, 0.4));
  transition: all 0.3s ease;
  overflow: hidden;
}

.channel:hover {
  transform: translateX(4px);
}

.channel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, color-mix(in srgb, var(--ch) 15%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.channel:hover::before { opacity: 1; }

.channel-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ch);
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px -5px color-mix(in srgb, var(--ch) 50%, transparent);
  position: relative;
  z-index: 1;
}

.channel:hover .channel-icon {
  transform: scale(1.1) rotate(6deg);
}

.channel-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 243, 255, 0.5);
  margin-bottom: 0.25rem;
}

.channel-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg-soft);
}

.channel > div:last-of-type, .channel > svg { flex: 1; min-width: 0; position: relative; z-index: 1; }

.channel-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.channel-arrow {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.5;
  color: var(--ch);
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.channel:hover .channel-arrow { opacity: 1; }

/* Contacto social grid */
.contact-socials {
  margin-top: 1.5rem;
}

.contact-socials-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 243, 255, 0.5);
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
  display: flex;
  justify-content: space-between;
}

.contact-socials-label span {
  color: rgba(245, 243, 255, 0.4);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 107, 53, 0.15);
  background: rgba(17, 13, 31, 0.6);
  overflow: hidden;
  transition: all 0.4s ease;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-card:hover { transform: translateY(-3px); border-color: transparent; }
.social-card:hover::before { opacity: 1; }

.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g);
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.4s ease;
  box-shadow: 0 6px 20px -3px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.social-card:hover .social-icon {
  transform: scale(1.15) rotate(12deg);
}

.social-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg-soft);
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.social-card:hover .social-name { color: #fff; }

.social-action {
  font-size: 0.625rem;
  color: rgba(245, 243, 255, 0.5);
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.social-card:hover .social-action { color: rgba(255, 255, 255, 0.8); }

.social-arrow {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 0.875rem;
  height: 0.875rem;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.social-card:hover .social-arrow {
  opacity: 0.8;
  transform: translate(2px, -2px);
}

/* ===== Footer ===== */
.footer {
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 107, 53, 0.15);
  background: #050309;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo { height: 3rem; width: auto; }

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-sub {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 243, 255, 0.5);
}

.footer-brand p {
  color: rgba(245, 243, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  font-size: 0.75rem;
  color: rgba(255, 107, 53, 0.8);
}

.footer-badge svg { width: 1rem; height: 1rem; color: var(--orange); }

.footer-col-title {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 243, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-nav ul, .footer-units ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a, .footer-units a {
  font-size: 0.875rem;
  color: rgba(245, 243, 255, 0.7);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav a:hover, .footer-units a:hover { color: var(--orange); }

.footer-units a span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  display: inline-block;
}

.dot-orange { background: var(--orange); }
.dot-purple { background: var(--purple); }
.dot-turquoise { background: var(--turquoise); }
.dot-gold { background: var(--gold); }

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-social {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: rgba(245, 243, 255, 0.8);
  font-size: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.footer-social::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social:hover { transform: scale(1.1); color: #fff; }
.footer-social:hover::before { opacity: 1; }

.footer-social svg { position: relative; z-index: 1; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  font-size: 0.75rem;
  color: rgba(245, 243, 255, 0.5);
  text-align: center;
  align-items: center;
}

.footer-bottom span { display: block; color: rgba(245, 243, 255, 0.4); }

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 107, 53, 0.8);
  transition: color 0.3s ease;
}

.footer-top:hover { color: var(--orange); }

.footer-top span {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  align-items: center;
  justify-content: center;
  color: inherit;
}

/* ===== Social Dock (lateral izquierdo, desktop) ===== */
.social-dock {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.social-dock-toggle {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--purple), var(--turquoise));
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.social-dock-toggle:hover { transform: scale(1.1); }

.social-dock-toggle .icon-share { display: block; width: 1.25rem; height: 1.25rem; }
.social-dock-toggle .icon-close { display: none; width: 1.25rem; height: 1.25rem; }

.social-dock-toggle.open .icon-share { display: none; }
.social-dock-toggle.open .icon-close { display: block; }

.social-dock-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ef4444;
  border: 2px solid var(--bg);
}

.social-dock-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #ef4444;
  animation: ping 1.5s ease-out infinite;
}

.social-dock-toggle.open .social-dock-badge { display: none; }

.social-dock-line {
  width: 1px;
  height: 0.75rem;
  background: linear-gradient(to bottom, rgba(255, 107, 53, 0.5), rgba(123, 47, 247, 0.3));
}

.social-dock-items {
  display: none;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
}

.social-dock-items.open {
  display: flex;
  animation: fade-in-left 0.3s ease;
}

.dock-item {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--g);
  font-size: 1.25rem;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--c) 25%, transparent);
  transition: transform 0.3s ease;
  animation: spring-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.dock-item:nth-child(1) { animation-delay: 0s; }
.dock-item:nth-child(2) { animation-delay: 0.08s; }
.dock-item:nth-child(3) { animation-delay: 0.16s; }
.dock-item:nth-child(4) { animation-delay: 0.24s; }

.dock-item:hover {
  transform: scale(1.25) rotate(6deg);
}

.dock-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--c);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.dock-item:hover::after { opacity: 1; }

.dock-item svg { position: relative; z-index: 1; }

.dock-tooltip {
  position: absolute;
  left: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--g);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dock-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--c);
  transform: translateY(-50%) rotate(45deg);
}

.dock-item:hover .dock-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.social-dock-line-end {
  width: 1px;
  height: 1rem;
  background: linear-gradient(to bottom, rgba(6, 214, 160, 0.5), transparent);
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: scale(0.5) translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.floating-whatsapp.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.floating-whatsapp:hover { transform: scale(1.1); }

.floating-whatsapp svg { width: 1.75rem; height: 1.75rem; }

.floating-whatsapp-ping {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.4);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* ===== WhatsApp Hint ===== */
.whatsapp-hint {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 49;
  max-width: 220px;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(26, 21, 48, 0.95), rgba(17, 13, 31, 0.95));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 53, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.whatsapp-hint.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-hint-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: rgba(255, 107, 53, 0.7);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.whatsapp-hint-close:hover { color: var(--orange); }

.whatsapp-hint-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-soft);
  margin-bottom: 0.25rem;
}

.whatsapp-hint-text {
  font-size: 0.75rem;
  color: rgba(245, 243, 255, 0.6);
}

/* ===== Animaciones ===== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.05); }
}

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

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-left {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

@keyframes spring-in {
  0% { opacity: 0; transform: scale(0.3) translateX(-15px); }
  60% { opacity: 1; transform: scale(1.1) translateX(0); }
  100% { opacity: 1; transform: scale(1) translateX(0); }
}

/* ===== Responsive (mobile-first → arriba) ===== */

/* Small tablets y arriba */
@media (min-width: 640px) {
  .nav-logo-text { display: block; }
  .nav-logo-img { height: 3rem; }
  .hero-logo-link { width: 14rem; height: 14rem; }
  .business-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .social-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-container { grid-template-columns: 2fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-bottom span { display: inline; }
}

/* Desktop */
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
  .section { padding: 6rem 0; }
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile, .nav-mobile.open { display: none; }
  .hero { padding-top: 8rem; }
  .hero-container { grid-template-columns: 7fr 5fr; gap: 3rem; }
  .hero-content { text-align: left; }
  .hero-description { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-stats { margin-left: 0; }
  .hero-logo-link { width: 16rem; height: 16rem; }
  .hero-logo-whatsapp-hint { display: flex; }
  .business-grid { gap: 2rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 3rem; }
  .social-dock { display: flex; }
  .floating-whatsapp { width: 4rem; height: 4rem; bottom: 1.5rem; right: 1.5rem; }
  .floating-whatsapp svg { width: 2rem; height: 2rem; }
  .whatsapp-hint { bottom: 7rem; right: 1.5rem; max-width: 240px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
