/* ESERMA — Design System & Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-tertiary: #fbfbfd;
  
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --text-tertiary: #a1a1a6;
  
  --forest-green: #1e4620;
  --forest-green-medium: #2d6a4f;
  --forest-green-light: #d8f3dc;
  
  --tech-yellow: #ffb703;
  --tech-yellow-medium: #fb8500;
  --tech-yellow-light: #fff3cd;
  
  --border-color: rgba(0, 0, 0, 0.08);
  --border-color-light: rgba(0, 0, 0, 0.04);
  --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
  
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-dark: rgba(29, 29, 31, 0.85);
  --glass-blur: 20px;
  
  /* Font Families */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --nav-height: 72px;
  --container-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--text-tertiary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-green-medium), var(--tech-yellow));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-smooth);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Containers & Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

.grid-2x3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--forest-green);
  color: var(--bg-primary);
}
.btn-primary:hover {
  background-color: var(--forest-green-medium);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 106, 79, 0.2);
}

.btn-secondary {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background-color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-accent {
  background-color: var(--tech-yellow);
  color: var(--text-primary);
}
.btn-accent:hover {
  background-color: var(--tech-yellow-medium);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 133, 0, 0.2);
}

/* Fixed Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 900;
  transition: var(--transition-smooth);
}

nav .logo img {
  transition: var(--transition-smooth);
}

.logo .logo-text {
  filter: brightness(0) invert(1);
}

nav .nav-links a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-fast);
}

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

nav .cart-btn {
  color: #ffffff;
  transition: var(--transition-fast);
}

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

nav #nav-quote-cta {
  background-color: var(--tech-yellow);
  color: var(--text-primary);
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

nav #nav-quote-cta:hover {
  background-color: var(--tech-yellow-medium);
  box-shadow: 0 8px 20px rgba(251, 133, 0, 0.3);
}

nav.scrolled {
  background: #00260e;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-medium);
  height: 64px;
}

nav.scrolled .logo .logo-text {
  filter: brightness(0) invert(1);
}

nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

nav.scrolled .nav-links a:hover {
  color: var(--tech-yellow);
}

nav.scrolled .cart-btn {
  color: #ffffff;
}

nav.scrolled .cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

nav.scrolled #nav-quote-cta {
  background-color: var(--tech-yellow);
  color: var(--text-primary);
}

nav.scrolled #nav-quote-cta:hover {
  background-color: var(--tech-yellow-medium);
}

nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--forest-green);
  text-decoration: none;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

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

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

.mobile-only-cta {
  display: none;
}

.menu-toggle {
  display: none;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Cart Icon Button */
.cart-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.cart-btn:hover {
  background: var(--bg-secondary);
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--tech-yellow-medium);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 1 - Hero Section (Fullscreen Carousel) */
.hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.hero-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 38, 14, 0.45) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  color: #ffffff;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-slide-content {
  max-width: 800px;
  margin-top: calc(var(--nav-height) - 20px);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.5;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

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

.hero-ctas .btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.hero-ctas .btn-primary {
  background-color: var(--tech-yellow);
  color: var(--text-primary);
  border: none;
}
.hero-ctas .btn-primary:hover {
  background-color: var(--tech-yellow-medium);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 180, 0, 0.35);
}

.hero-ctas .btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-ctas .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Floating Stats Bar */
.hero-floating-stats-bar {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--tech-yellow);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 15;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.dot.active {
  background: var(--tech-yellow);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(244, 180, 0, 0.6);
}

/* Gear Animation */
.gear-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 350px;
}

.gear-svg {
  width: 280px;
  height: 280px;
  fill: none;
  stroke: var(--forest-green);
  stroke-width: 1.5;
  animation: spin 20s linear infinite;
  transform-origin: center;
}

.gear-inner-svg {
  position: absolute;
  width: 140px;
  height: 140px;
  stroke: var(--tech-yellow);
  stroke-width: 2;
  fill: none;
  animation: spin-reverse 15s linear infinite;
}

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

/* Ticker of Services */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-slide 30s linear infinite;
}

.ticker-item {
  padding: 0 40px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-item::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tech-yellow);
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header .section-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--forest-green-medium);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: inline-block;
}
.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* 2 - Maestranza Industrial Section */
.maestranza-section {
  background: var(--bg-tertiary);
}

.kpis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.kpi-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color-light);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}
.kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}
.kpi-card h4 {
  font-size: 2.2rem;
  color: var(--forest-green-medium);
  margin-bottom: 8px;
}
.kpi-card p {
  font-size: 0.9rem;
  font-weight: 500;
}

.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color-light);
  border-radius: 20px;
  padding: 40px 30px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--forest-green-light);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--forest-green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green);
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.service-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* 2b - ROPS / FOPS / OPS blindajes */
.rops-block {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--forest-green), #0a1c10);
  border-radius: 24px;
  padding: 60px;
  color: var(--bg-secondary);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-premium);
}
.rops-content h3 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 20px;
}
.rops-content p {
  color: var(--text-tertiary);
  margin-bottom: 30px;
}
.rops-acreditation {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.rops-badge {
  background: var(--tech-yellow);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.rops-acreditation h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* 3 - Importadas */
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.brand-chip {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color-light);
  border-radius: 16px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}
.brand-chip:hover {
  background: var(--bg-primary);
  box-shadow: var(--shadow-medium);
  transform: scale(1.05);
  border-color: var(--tech-yellow);
}

/* 4 - Conversión y Blindaje */
.conversion-section {
  background: var(--bg-tertiary);
}
.conversion-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.conversion-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step-item {
  display: flex;
  gap: 20px;
  background: var(--bg-primary);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}
.step-item:hover {
  transform: translateX(5px);
  border-color: var(--forest-green-light);
  box-shadow: var(--shadow-medium);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--tech-yellow);
  min-width: 40px;
}
.step-text h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.conversion-visual {
  background: var(--bg-primary);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-premium);
  text-align: center;
}
.conversion-tagline {
  background: var(--forest-green-light);
  color: var(--forest-green);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 24px;
}

/* 5 - Agro-Forestal */
.agro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.agro-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color-light);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}
.agro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--tech-yellow);
}
.agro-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--forest-green);
}

/* 6 - Capacitaciones */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.training-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color-light);
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.training-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--forest-green-medium);
  transform: scaleY(0);
  transition: var(--transition-smooth);
  transform-origin: bottom;
}
.training-card:hover {
  background: var(--bg-primary);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}
.training-card:hover::before {
  transform: scaleY(1);
}
.training-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-tertiary);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.training-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* 7 - Clientes */
.clients-section {
  background: var(--bg-secondary);
}
.clients-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Permitir saltos de línea para evitar desbordar los bordes */
  gap: 12px;
  margin-bottom: 40px;
}
.client-tab-btn {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: #0066cc; /* Mantener el color azul solicitado */
  padding: 10px 24px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.client-tab-btn:hover {
  color: #0044aa;
  border-color: #0066cc;
}
.client-tab-btn.active {
  background: var(--forest-green);
  color: #ffffff !important;
  border-color: var(--forest-green);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.client-logo-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color-light);
  border-radius: 16px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 1rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  text-align: center;
  padding: 10px;
}
.client-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  color: var(--forest-green);
}
.client-logo-card img {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(0.85) brightness(0.9);
  transition: var(--transition-smooth);
}
.client-logo-card:hover img {
  filter: none;
}

/* 8 - Certificaciones */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cert-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.cert-icon {
  width: 54px;
  height: 54px;
  background: var(--tech-yellow-light);
  color: var(--tech-yellow-medium);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* 9 - Vitrina de Maquinarias (Nuevo) */
.vitrina-section {
  background: var(--bg-primary);
}
.vitrina-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.search-bar-container {
  display: flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 6px 12px 6px 24px;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.search-input {
  border: none;
  background: transparent;
  flex-grow: 1;
  padding: 8px 0;
  font-size: 1rem;
  outline: none;
  font-family: var(--font-body);
}
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary); /* Evitar azul por defecto de iOS */
  padding: 10px 24px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn:hover {
  color: var(--forest-green);
  border-color: var(--forest-green-light);
}
.filter-btn.active {
  background: var(--forest-green);
  color: #ffffff !important;
  border-color: var(--forest-green);
}

.machinery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
.machinery-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.machinery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--forest-green-light);
}
.mach-img-container {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
  background: #ececec;
}
.mach-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.machinery-card:hover .mach-img-container img {
  transform: scale(1.05);
}
.condition-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.condition-badge.new {
  background: var(--forest-green);
  color: #ffffff;
}
.condition-badge.used {
  background: var(--tech-yellow);
  color: var(--text-primary);
}

.mach-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.mach-brand {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.mach-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.mach-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.mach-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color-light);
}
.spec-line {
  font-size: 0.8rem;
}
.spec-line span {
  font-weight: 600;
  color: var(--text-primary);
}
.mach-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color-light);
}
.mach-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-green-medium);
}

/* 10 - Wizard de Cotización Section */
.quote-section {
  background: var(--bg-secondary);
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}
.quote-info-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-medium);
}
.quote-info-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--forest-green);
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}
.info-list-item {
  display: flex;
  gap: 16px;
}
.info-list-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green-medium);
  font-size: 1.1rem;
  min-width: 40px;
}
.info-list-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.info-list-text p {
  font-size: 0.85rem;
}

/* Wizard Form */
.wizard-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-premium);
}
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.wizard-progress::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bg-secondary);
  z-index: 1;
}
.progress-line {
  position: absolute;
  top: 15px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--forest-green);
  z-index: 2;
  transition: var(--transition-smooth);
}
.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 3;
  transition: var(--transition-smooth);
  color: var(--text-secondary);
}
.progress-step.active {
  border-color: var(--forest-green);
  background: var(--forest-green);
  color: #ffffff;
}
.progress-step.completed {
  border-color: var(--forest-green);
  background: var(--forest-green-light);
  color: var(--forest-green);
}

.wizard-step-panel {
  display: none;
}
.wizard-step-panel.active {
  display: block;
  animation: fade-in 0.4s ease-out;
}

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

.wizard-step-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}
.form-control:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* Persistent Shopping Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg-primary);
  box-shadow: var(--shadow-premium);
  z-index: 960;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.cart-drawer.active {
  right: 0;
}
.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}
.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  text-align: center;
  color: var(--text-tertiary);
  margin-top: 60px;
}
.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color-light);
}
.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
}
.cart-item-info {
  flex-grow: 1;
}
.cart-item-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--forest-green-medium);
  font-weight: 600;
}
.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}
.cart-item-remove:hover {
  color: #d90429;
}
.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}
.cart-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 800;
  text-decoration: none;
  color: white;
  font-size: 2rem;
  transition: var(--transition-smooth);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Footer */
footer {
  background: var(--text-primary);
  color: var(--bg-secondary);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.6fr);
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  margin-bottom: 40px;
}
.footer-logo {
  color: #ffffff;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 0.9rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-col ul a:hover {
  color: #ffffff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.admin-trigger {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.admin-trigger:hover {
  color: var(--tech-yellow);
}

/* ==========================================================================
   CMS Admin Panel Styles
   ========================================================================== */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.admin-modal-overlay.active {
  display: flex;
  animation: fade-in 0.4s ease-out;
}
.admin-modal {
  width: 100vw;
  height: 100vh;
  background: var(--bg-primary);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Admin Lock / Password screen */
.admin-lock-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--bg-primary);
  z-index: 2;
}
.lock-card {
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.lock-icon {
  font-size: 3rem;
  color: var(--forest-green);
  margin-bottom: 24px;
}

/* Admin App Panel */
.admin-app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 240px 1fr;
  z-index: 1;
}
.admin-sidebar {
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.admin-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-menu-item {
  padding: 12px 20px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-menu-item:hover, .admin-menu-item.active {
  background: var(--bg-primary);
  color: var(--forest-green);
  box-shadow: var(--shadow-subtle);
}

.admin-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.admin-header {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-close {
  background: var(--bg-secondary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}
.admin-close:hover {
  background: #eee;
}

.admin-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 40px;
  min-height: 0;
}
.admin-tab-panel {
  display: none;
}
.admin-tab-panel.active {
  display: block;
}

/* CMS Analytics Panel styling */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.metric-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-color-light);
}
.metric-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.metric-card h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-top: 6px;
}

.charts-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.chart-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
}
.chart-card h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* SVG Chart details */
.svg-chart-container {
  position: relative;
  width: 100%;
  height: 200px;
}
.svg-chart-container svg {
  width: 100%;
  height: 100%;
}

/* CMS Content Edit UI */
.edit-form-section {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color-light);
}
.edit-form-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

/* CMS Inventory table */
.inventory-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
}
.inventory-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.inventory-table th, .inventory-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}
.inventory-table th {
  background: var(--bg-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}
.inventory-table tr:hover td {
  background: var(--bg-tertiary);
}
.action-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  margin-right: 8px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.action-icon-btn:hover {
  color: var(--forest-green);
}
.action-icon-btn.delete:hover {
  color: #d90429;
}

/* Custom Alert Message */
.custom-alert {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--glass-bg-dark);
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 30px;
  z-index: 1100;
  font-family: var(--font-display);
  font-weight: 500;
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(10px);
  display: none;
  animation: slide-up 0.3s ease-out;
}
@keyframes slide-up {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .rops-block {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .conversion-grid {
    grid-template-columns: 1fr;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .admin-app {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .charts-grid {
    grid-template-columns: 1fr;
  }
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .footer-grid {
    grid-template-columns: 1fr repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* Desactivar animaciones de revelado en móviles para rendimiento y fiabilidad absoluta */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Evitar scroll del fondo al abrir menú móvil */
  body.no-scroll {
    overflow: hidden;
  }

  /* Barra de Navegación Móvil Hamburguesa */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  }
  .menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition-smooth);
  }
  /* Animación de Hamburguesa a Cruz "X" */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(0, 38, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px;
    transition: var(--transition-smooth);
    z-index: 999;
    list-style: none;
    margin: 0;
  }
  nav.scrolled .nav-links {
    top: 64px;
    height: calc(100vh - 64px);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    font-size: 1.3rem;
    color: #ffffff;
    display: block;
    padding: 10px;
    font-family: var(--font-display);
    font-weight: 600;
  }
  .mobile-only-cta {
    display: block;
    margin: 15px auto 0 auto;
    width: 100%;
    max-width: 260px;
  }
  nav #nav-quote-cta {
    display: none; /* Ocultar botón CTA en la barra superior en móviles */
  }

  /* Ajustes Hero y Slidshow en Celulares */
  .hero-slide-content {
    text-align: center;
    padding: 0 10px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
  }

  /* Sacar barra de estadísticas del absoluto del Hero para evitar solapar textos */
  .hero-floating-stats-bar {
    position: static;
    background: #001207;
    padding: 45px 20px;
    margin-top: 0;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .carousel-dots {
    bottom: 24px;
  }

  /* Márgenes y Pading Generales */
  .section-padding {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  /* Ajuste de Grillas para evitar desbordes en teléfonos angostos */
  .grid-2x3 {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 16px;
  }
  .machinery-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 20px;
  }
  .clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr));
    gap: 12px;
  }
  .rops-block {
    padding: 24px;
    gap: 24px;
  }
  .rops-content h3 {
    font-size: 1.6rem;
  }
  .step-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

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

@media (max-width: 480px) {
  /* Mostrar ambos logos pero escalados a 32px para evitar desbordes */
  .logo img {
    height: 32px !important;
  }
  .logo {
    gap: 6px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
