@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/AeonikTRIAL-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/AeonikTRIAL-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/AeonikTRIAL-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-primary: #FFFFFF;
  --bg-dark: #F5F5F5;
  --bg-light: #FAFAFA;
  --bg-card: rgba(255, 255, 255, 0.35);
  --bg-card-hover: rgba(255, 255, 255, 0.50);
  --text-primary: #707070;
  --text-secondary: rgba(112, 112, 112, 0.80);
  --text-muted: rgba(112, 112, 112, 0.55);
  --accent: #8ABE00;
  --accent-hover: #7AAD00;
  --accent-glow: rgba(138, 190, 0, 0.25);
  --accent-subtle: rgba(138, 190, 0, 0.12);
  --border: rgba(45, 45, 45, 0.10);
  --border-hover: rgba(138, 190, 0, 0.50);
  --whatsapp: #25D366;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 100px;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-weight: 400;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 56px;
  width: auto;
  opacity: 0.3;
}

.navbar-brand span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-fast);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--text-primary);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

.btn-cta-nav {
  background: var(--accent);
  color: #333;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-cta-nav:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-cta-nav svg {
  width: 16px;
  height: 16px;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: #707070;
  transition: var(--transition-fast);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #333;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--navbar-height);
  background: var(--bg-primary);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-deco {
  width: auto;
  height: 85vh;
  max-height: 700px;
  opacity: 0.55;
  object-fit: contain;
  filter: invert(45%) brightness(95%);
}

/* TODOS los logos de CP en color gris (no negro) */
img[src*="logo-oscuro"] {
  filter: invert(45%) brightness(95%);
}

/* Services Bar */
.services-bar {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.service-text h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.service-text p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */

.stats-bar {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #8ABE00;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   SECTIONS (General)
   ═══════════════════════════════════════ */

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   BRANDS SECTION
   ═══════════════════════════════════════ */

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.brand-item {
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition-fast);
  cursor: default;
  background: var(--bg-card);
}

.brand-item:hover {
  color: var(--accent);
  border-color: var(--border-hover);
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   PRODUCT PREVIEW CARDS
   ═══════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #F5F5F5, #FAFAFA);
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 40px;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-hover);
}

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

.product-card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.product-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.product-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.product-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-card .link-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-card .link-arrow:hover {
  gap: 14px;
}

/* ═══════════════════════════════════════
   WHY CP CARDS
   ═══════════════════════════════════════ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

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

.why-card-emoji {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.why-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */

.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
}

/* ═══════════════════════════════════════
   PAGE HERO (Internal Pages)
   ═══════════════════════════════════════ */

.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-logo-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-logo {
  width: 240px;
  height: 240px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.page-hero-orbit {
  position: absolute;
  border: 1px solid rgba(112, 112, 112, 0.10);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-hero-orbit-1 {
  width: 200px;
  height: 200px;
  animation: orbit 18s linear infinite;
}

.page-hero-orbit-2 {
  width: 280px;
  height: 280px;
  animation: orbit 25s linear infinite reverse;
}

.page-hero-orbit-3 {
  width: 350px;
  height: 350px;
  animation: orbit 32s linear infinite;
}

.page-hero-orbit-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
}

@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   PRODUCT DETAIL SECTION (productos.html)
   ═══════════════════════════════════════ */

.product-detail {
  padding: 80px 0;
}

.product-detail-header {
  margin-bottom: 48px;
}

.product-detail-header h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.product-detail-header p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.display-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.display-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  text-align: center;
}

.display-type-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.display-type-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}

.display-type-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

.product-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
  padding: 16px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

/* ═══════════════════════════════════════
   ABOUT PAGE (nosotros.html)
   ═══════════════════════════════════════ */

.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  transition: var(--transition);
}

.mv-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.mv-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

.business-model {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.business-model h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}

.business-list {
  display: grid;
  gap: 16px;
}

.business-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.business-list-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.business-list-item .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--accent-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  margin-top: 2px;
}

.business-list-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

.business-list-item strong {
  font-weight: 700;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */

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

.contact-info {
  display: grid;
  gap: 24px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  border-top: 3px solid var(--accent);
  background: var(--bg-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-logo-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-brand img {
  height: 100px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.footer-orbit {
  position: absolute;
  border: 1px solid rgba(112, 112, 112, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-orbit-1 {
  width: 90px;
  height: 90px;
  animation: orbit 15s linear infinite;
}

.footer-orbit-2 {
  width: 130px;
  height: 130px;
  animation: orbit 22s linear infinite reverse;
}

.footer-orbit-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-social a:hover svg {
  color: #333;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  animation: bounce-subtle 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: white;
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  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; }

/* ═══════════════════════════════════════
   GRID PATTERN BACKGROUND
   ═══════════════════════════════════════ */

.pattern-bg {
  position: relative;
}

.pattern-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(45, 45, 45, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.pattern-bg > * {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   IMAGE PLACEHOLDERS
   ═══════════════════════════════════════ */

.img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
}

.img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }

  .navbar-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 998;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-nav a {
    font-size: 24px;
    font-weight: 700;
  }

  .btn-cta-nav.mobile-hide {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 999;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .section {
    padding: 72px 0;
  }

  .display-types-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .section-title {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .product-card {
    padding: 0;
  }

  .product-card-body {
    padding: 28px 24px;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

/* ═══════════════════════════════════════
   IMAGE BANNERS & SHOWCASES
   ═══════════════════════════════════════ */

/* Brands banner — imagen de logos arriba del grid */
.brands-banner {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #F5F5F5, #FAFAFA);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px -8px rgba(45, 45, 45, 0.08);
}

.brands-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Garantía banner — sección por qué CP */
.garantia-banner {
  max-width: 480px;
  margin: 0 auto 60px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px -16px rgba(45, 45, 45, 0.30);
  border: 1px solid var(--border);
}

.garantia-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tech banner — antes del CTA en index */
.tech-banner-section {
  padding: 40px 0;
  background: var(--bg-light);
}

.tech-banner {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(45, 45, 45, 0.20);
  border: 1px solid var(--border);
  max-height: 380px;
}

.tech-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact banner — antes del CTA en contacto */
.contact-banner-section {
  padding: 40px 0;
}

.contact-banner {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(45, 45, 45, 0.20);
  border: 1px solid var(--border);
  max-height: 360px;
}

.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product showcase — imagen grande sobre la sección de displays */
.product-showcase {
  width: 100%;
  margin-bottom: 60px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(45, 45, 45, 0.20);
  border: 1px solid var(--border);
}

.product-showcase img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Product split — dos imágenes lado a lado en sección baterías */
.product-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.product-split-image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px -10px rgba(45, 45, 45, 0.15);
  transition: var(--transition);
}

.product-split-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(45, 45, 45, 0.25);
}

.product-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
}

/* About split — historia + showroom */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.about-split .about-content {
  margin-bottom: 0;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(45, 45, 45, 0.20);
  border: 1px solid var(--border);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Business banner — sección modelo de negocio */
.business-banner {
  width: 100%;
  margin-bottom: 50px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(45, 45, 45, 0.20);
  border: 1px solid var(--border);
}

.business-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive — banners e imágenes */
@media (max-width: 1024px) {
  .hero-image-deco {
    max-width: 500px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero-image-deco {
    max-width: 100%;
    margin-top: 24px;
  }

  .product-split {
    grid-template-columns: 1fr;
  }

  .garantia-banner {
    max-width: 100%;
  }

  .tech-banner,
  .contact-banner {
    max-height: 240px;
  }

  .brands-banner,
  .product-showcase,
  .business-banner,
  .about-image {
    border-radius: 16px;
  }
}
