/* ============================================
   Camuzzi Energy — Landing
   Design from desing.pen
   ============================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Gotham Rounded';
  src: url('./assets/fonts/GothamRoundedLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('./assets/fonts/GothamRounded-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('./assets/fonts/GothamRoundedBook.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('./assets/fonts/GothamRounded-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('./assets/fonts/GothamRounded-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('./assets/fonts/GothamRounded-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('./assets/fonts/GothamRoundedBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('./assets/fonts/GothamRounded-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('./assets/fonts/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('./assets/fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --azul: #0066B3;
  --celeste: #00AEEF;
  --verde-agua: #50FFD4;
  --gris: #7885A1;
  --azul-marino: #1E3462;
  --negro: #1D1D1B;
  --blanco: #FFFFFF;
  --celeste-soft: rgba(0, 174, 239, 0.2);
  --verde-agua-soft: rgba(80, 255, 212, 0.2);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Gotham Rounded', -apple-system, sans-serif;
  color: var(--negro);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}

/* --- Progress bar --- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--azul), var(--celeste), var(--blanco));
  background-size: 100vw 3px;
  z-index: 9999;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.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; }

/* --- Ghost section numbers --- */
.ghost-number {
  position: absolute;
  right: 80px;
  top: 20px;
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 200px;
  font-weight: 700;
  color: rgba(0, 102, 179, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ghost-number--light {
  color: rgba(255, 255, 255, 0.03);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 80px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav--scrolled {
  background: var(--blanco);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
/* Nav text colors adapt when over hero (transparent bg) */
.nav:not(.nav--scrolled) .nav__link {
  color: var(--blanco);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.nav:not(.nav--scrolled) .nav__hamburger span {
  background: var(--blanco);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.nav:not(.nav--scrolled) .nav__divider {
  opacity: 0.15;
}
.nav__logo {
  display: flex;
  align-items: center;
  height: 52px;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav__logo-img--color { display: none; }
.nav--scrolled .nav__logo-img--white { display: none; }
.nav--scrolled .nav__logo-img--color { display: block; }
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__link {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--azul-marino);
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--celeste);
}
.nav__link--active {
  color: var(--celeste) !important;
}
.nav__divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--celeste);
  opacity: 0.3;
}
/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--azul-marino);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 900px;
  padding-top: 72px;
  background-color: var(--azul);
  background-image:
    linear-gradient(180deg, rgba(0, 33, 71, 0.65) 0%, rgba(0, 33, 71, 0) 200px),
    linear-gradient(rgba(0, 102, 179, 0.55), rgba(0, 102, 179, 0.75)),
    url('./assets/img/bg-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Grid lines */
.hero__grid-h,
.hero__grid-v {
  position: absolute;
  background: var(--blanco);
  opacity: 0.06;
  pointer-events: none;
}
.hero__grid-h {
  width: 100%;
  height: 1px;
}
.hero__grid-h--1 { top: 272px; }
.hero__grid-h--2 { top: 472px; }
.hero__grid-h--3 { top: 672px; }
.hero__grid-v {
  width: 1px;
  top: 72px;
  bottom: 0;
}
.hero__grid-v--1 { left: 20.8%; }
.hero__grid-v--2 { left: 41.6%; }
.hero__grid-v--3 { left: 62.5%; }
.hero__grid-v--4 { left: 83.3%; }

/* Orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__orb--1 {
  width: 650px;
  height: 650px;
  right: -50px;
  top: 150px;
  background: radial-gradient(circle, var(--celeste-soft) 0%, transparent 70%);
  opacity: 0.4;
}
.hero__orb--2 {
  width: 550px;
  height: 550px;
  left: -120px;
  bottom: -100px;
  background: radial-gradient(circle, var(--verde-agua-soft) 0%, transparent 70%);
  opacity: 0.35;
}
.hero__orb--3 {
  width: 380px;
  height: 380px;
  left: 38%;
  top: 0;
  background: radial-gradient(circle, var(--celeste-soft) 0%, transparent 70%);
  opacity: 0.25;
}
.hero__orb--4 {
  width: 400px;
  height: 400px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, var(--verde-agua-soft) 0%, transparent 70%);
  opacity: 0.2;
}

/* Diamond decoration — slow rotation */
.hero__diamond {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 200px;
  top: 420px;
  background: var(--blanco);
  opacity: 0.08;
  transform: rotate(45deg);
  pointer-events: none;
  animation: diamondSpin 30s linear infinite;
}
@keyframes diamondSpin {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

/* Ring decoration — pulse */
.hero__ring {
  position: absolute;
  width: 200px;
  height: 200px;
  right: 280px;
  bottom: 180px;
  border-radius: 50%;
  border: 1px solid var(--blanco);
  opacity: 0.07;
  pointer-events: none;
  animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.07; }
  50% { transform: scale(1.15); opacity: 0.12; }
}

/* Bottom fade */
.hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 102, 179, 0.2) 50%, rgba(255, 255, 255, 0.25) 100%);
  pointer-events: none;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 0 80px 80px;
  max-width: 700px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 33, 71, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  width: fit-content;
  max-width: 100%;
}
.hero__pill-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--blanco);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
.hero__logo {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}
.hero__accent-line {
  width: 60px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--celeste), var(--verde-agua));
  display: none;
}

/* ============================================
   SOBRE NOSOTROS
   ============================================ */
.sobre-nosotros {
  position: relative;
  overflow: hidden;
  background: var(--blanco);
  padding: 80px 0;
  display: flex;
  justify-content: center;
}
.sobre-nosotros__inner {
  width: 1100px;
  max-width: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.sobre-nosotros__label {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--azul);
}
.sobre-nosotros__cols {
  display: flex;
  gap: 60px;
}
.sobre-nosotros__left,
.sobre-nosotros__right {
  flex: 1;
}
.sobre-nosotros__left p,
.sobre-nosotros__right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--negro);
}
.sobre-nosotros__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sobre-nosotros__separator {
  width: 0;
  height: 1px;
  background: var(--celeste);
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.sobre-nosotros__separator.visible {
  width: 200px;
}

/* ============================================
   NUESTRO KNOW HOW
   ============================================ */
.knowhow {
  position: relative;
  background: var(--azul);
  padding: 80px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.knowhow__orb {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--celeste-soft) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  animation: orbBreathe 6s ease-in-out infinite;
}
@keyframes orbBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.35; }
}
.knowhow__inner {
  position: relative;
  z-index: 2;
  width: 1100px;
  max-width: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.knowhow__label {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--verde-agua);
}
.knowhow__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.knowhow__counter-number {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: var(--verde-agua);
  transition: text-shadow 0.6s ease;
}
.knowhow__counter-number.glow {
  text-shadow: 0 0 40px rgba(80, 255, 212, 0.6), 0 0 80px rgba(80, 255, 212, 0.3);
}
.knowhow__counter-number.glow-fade {
  text-shadow: 0 0 0 transparent;
}
.knowhow__counter-label {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--blanco);
}
.knowhow__body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 800px;
}

/* ============================================
   NUESTROS CLIENTES
   ============================================ */
.clientes {
  position: relative;
  overflow: hidden;
  background: var(--blanco);
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.clientes__label {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--azul);
  text-align: center;
}
.clientes__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--negro);
  text-align: center;
  margin-top: -24px;
}
.clientes__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}
.clientes__row {
  display: flex;
  gap: 24px;
}
.clientes__card {
  flex: 1;
  padding: 32px;
  border-radius: 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .clientes__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 102, 179, 0.08);
  }
}
.clientes__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--azul) 0%, var(--celeste) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .clientes__card:hover .clientes__card-icon {
    transform: rotate(-8deg) scale(1.05);
  }
}
.clientes__card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--negro);
}
.clientes__card-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gris);
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto {
  position: relative;
  background: var(--azul);
  padding: 80px 120px 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.contacto__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contacto__orb--1 {
  width: 600px;
  height: 600px;
  right: -100px;
  top: -200px;
  background: radial-gradient(circle, var(--celeste-soft) 0%, transparent 70%);
  opacity: 0.5;
}
.contacto__orb--2 {
  width: 400px;
  height: 400px;
  left: -100px;
  top: 100px;
  background: radial-gradient(circle, var(--verde-agua-soft) 0%, transparent 70%);
  opacity: 0.4;
}
.contacto__content {
  position: relative;
  z-index: 2;
  width: 1200px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contacto__cols {
  display: flex;
  gap: 80px;
}
.contacto__left,
.contacto__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacto__label {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--verde-agua);
}
.contacto__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--blanco);
}
.contacto__address {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--blanco);
  opacity: 0.8;
}
.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacto__info-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--verde-agua);
}
.contacto__info-value {
  font-size: 16px;
  color: var(--celeste);
  text-decoration: none;
  transition: color 0.2s;
}
.contacto__info-value:hover {
  text-decoration: underline;
}
.contacto__logo {
  height: 56px;
  width: auto;
  display: block;
}
.contacto__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.contacto__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contacto__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.67);
}
.contacto__footer-links {
  display: flex;
  gap: 32px;
}
.contacto__footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.67);
  transition: color 0.2s;
}
.contacto__footer-links a:hover {
  color: var(--blanco);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--azul);
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mobile-menu__orb--1 {
  width: 300px;
  height: 300px;
  right: -50px;
  top: -50px;
  background: radial-gradient(circle, var(--celeste-soft) 0%, transparent 70%);
  opacity: 0.4;
}
.mobile-menu__orb--2 {
  width: 250px;
  height: 250px;
  left: -80px;
  bottom: 0;
  background: radial-gradient(circle, var(--verde-agua-soft) 0%, transparent 70%);
  opacity: 0.3;
}
.mobile-menu__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 24px;
  flex-shrink: 0;
}
.mobile-menu__logo {
  height: 32px;
  width: auto;
  display: block;
}
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.mobile-menu__items {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 24px;
}
.mobile-menu__item {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
}
.mobile-menu__item--last {
  border-bottom: none;
}
.mobile-menu__item-num {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--verde-agua);
  opacity: 0.7;
  margin-bottom: 4px;
}
.mobile-menu__item-text {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--blanco);
}
.mobile-menu__footer {
  position: relative;
  z-index: 2;
  padding: 0 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.mobile-menu__footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}
.mobile-menu__footer-email {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 13px;
  color: var(--celeste);
  text-decoration: none;
}
.mobile-menu__footer-email:hover {
  text-decoration: underline;
}
.mobile-menu__footer-address {
  font-family: 'Gotham Rounded', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.53);
}

/* ============================================
   MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav {
    padding: 0 24px;
    height: 56px;
  }
  .nav__logo {
    height: 36px;
  }
  .nav__logo-img {
    height: 36px;
  }
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 750px;
    padding-top: 56px;
  }
  .hero__content {
    padding: 0 24px 80px 24px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero__logo {
    width: 240px;
  }
  .hero__pill-text {
    font-size: 10px;
    letter-spacing: 1.8px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .hero__pill {
    padding: 9px 18px;
  }
  .hero__grid-h { display: block; opacity: 0.04; }
  .hero__grid-h--1 { top: 200px; }
  .hero__grid-h--2 { top: 400px; }
  .hero__grid-h--3 { top: 600px; }
  .hero__grid-v { display: block; opacity: 0.04; }
  .hero__grid-v--1 { left: 25%; }
  .hero__grid-v--2 { left: 50%; }
  .hero__grid-v--3 { left: 75%; }
  .hero__grid-v--4 { display: none; }
  .hero__diamond {
    width: 70px;
    height: 70px;
    right: 30px;
    top: 180px;
  }
  .hero__ring {
    width: 120px;
    height: 120px;
    right: auto;
    left: 20px;
    bottom: 140px;
  }
  .hero__orb--1 {
    width: 350px; height: 350px; right: -100px; top: 100px;
    animation: orbFloat1 5s ease-in-out infinite;
  }
  .hero__orb--2 {
    width: 300px; height: 300px; left: -80px;
    animation: orbFloat2 7s ease-in-out infinite;
  }
  .hero__orb--3 {
    width: 240px; height: 240px; left: auto; right: -40px; top: auto; bottom: 200px;
    background: radial-gradient(circle, var(--verde-agua-soft) 0%, transparent 70%);
    opacity: 0.3;
    animation: orbFloat3 6s ease-in-out infinite;
  }
  .hero__orb--4 { display: none; }
  .hero__accent-line {
    display: block;
  }
  @keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, 10px) scale(1.08); }
  }
  @keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -15px) scale(1.1); }
  }
  @keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(-10px, -10px) scale(1.12); opacity: 0.2; }
  }

  /* Sobre Nosotros */
  .sobre-nosotros {
    padding: 48px 0;
  }
  .sobre-nosotros__inner {
    gap: 24px;
  }
  .sobre-nosotros__cols {
    flex-direction: column;
    gap: 24px;
  }
  .sobre-nosotros__left p,
  .sobre-nosotros__right p {
    font-size: 15px;
  }

  /* Know How */
  .knowhow {
    padding: 48px 0;
  }
  .knowhow__counter-number {
    font-size: 80px;
  }
  .knowhow__counter-label {
    font-size: 16px;
  }
  .knowhow__body {
    font-size: 15px;
  }

  /* Clientes */
  .clientes {
    padding: 48px 24px;
    gap: 24px;
  }
  .clientes__title {
    font-size: 28px;
    margin-top: -12px;
  }
  .clientes__row {
    flex-direction: column;
  }
  .clientes__card {
    padding: 24px;
  }
  .clientes__card-title {
    font-size: 18px;
  }
  .clientes__card-desc {
    font-size: 14px;
  }

  /* Ghost numbers */
  .ghost-number {
    font-size: 100px;
    right: 24px;
    top: -10px;
  }

  /* Contacto */
  .contacto {
    padding: 48px 24px 40px;
    gap: 32px;
  }
  .contacto__cols {
    flex-direction: column;
    gap: 32px;
  }
  .contacto__title {
    font-size: 28px;
  }
  .contacto__footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .contacto__footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}
