/* =================================
   Maquinet Industrial - Design System
   ================================= */

/* CSS Variables */
:root {
  /* Colors - Logo Based */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-light: #c0c0c0;
  --color-gray-dark: #333333;
  --color-red: #dc3545;

  /* Semantic Colors */
  --color-primary: var(--color-black);
  --color-accent: var(--color-red);
  --color-text-dark: var(--color-black);
  --color-text-light: var(--color-white);
  --color-text-gray: var(--color-gray-dark);
  --color-bg-dark: var(--color-black);
  --color-bg-light: var(--color-white);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Mobile Spacing Overrides */
  --space-mobile-xs: 0.375rem;
  --space-mobile-sm: 0.75rem;
  --space-mobile-md: 1rem;
  --space-mobile-lg: 1.5rem;
  --space-mobile-xl: 2rem;
  --space-mobile-2xl: 2.5rem;
  --space-mobile-3xl: 3rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --section-padding: 4rem 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style-position: inside;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--text-4xl);
  font-weight: 800;
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--text-5xl);
  }

  h2 {
    font-size: var(--text-4xl);
  }

  h3 {
    font-size: var(--text-3xl);
  }
}

/* Layout Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-3xl) 0;
}

/* Mobile: Reducir padding vertical */
@media (max-width: 767px) {
  .section {
    padding: var(--space-mobile-2xl) 0;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

/* Section Alternation */
.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section-light {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section-red {
  background-color: var(--color-red);
  color: var(--color-text-light);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

/* Mobile: Gaps más pequeños */
@media (max-width: 767px) {
  .grid {
    gap: var(--space-mobile-md);
  }
}

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

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--color-white);
}

.text-red {
  color: var(--color-red);
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: var(--text-base);
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: #c92a2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: var(--text-lg);
}

/* Mobile: Botones grandes más compactos */
@media (max-width: 767px) {
  .btn-lg {
    padding: 1rem 1.75rem;
    font-size: var(--text-base);
  }
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .btn-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 1000;
}

/* Mobile: Botones más pequeños y mejor posicionados */
@media (max-width: 767px) {
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  color: white;
}

/* Mobile: Botones flotantes más pequeños */
@media (max-width: 767px) {
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .floating-btn img {
    width: 24px !important;
    height: 24px !important;
  }
}

.floating-btn.whatsapp {
  background-color: #25d366;
}

.floating-btn.phone {
  background-color: var(--color-red);
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  overflow: hidden;
  padding-bottom: var(--space-3xl);
}

/* Mobile: Hero más compacto y sin parallax */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-top: var(--space-mobile-2xl);
    padding-bottom: var(--space-mobile-2xl);
    background-attachment: scroll;
    /* Mejor rendimiento en móvil */
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(220, 53, 69, 0.1) 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.15) 0%, transparent 70%);
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* New Hero Redesign */
.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo-container {
  margin-bottom: var(--space-lg);
}

.hero-logo {
  max-width: 220px;
  margin: 0 auto;
}

/* Mobile: Logo más pequeño */
@media (max-width: 767px) {
  .hero-logo {
    max-width: 160px;
  }
}

.hero-badge-wrapper {
  margin-bottom: var(--space-md);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-red) 0%, #ff4757 100%);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 20px rgba(220, 53, 69, 0.5);
  animation: pulse-badge 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Mobile: Badge más compacto */
@media (max-width: 767px) {
  .hero-badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.625rem;
    letter-spacing: 1px;
  }
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.5);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.7);
  }
}

.hero-main {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

/* Mobile: Título más pequeño */
@media (max-width: 767px) {
  .hero-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-mobile-md);
    line-height: 1.3;
  }
}

.hero-highlight {
  display: block;
  background: linear-gradient(135deg, #ff6b6b 0%, var(--color-red) 50%, #ff4757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 1em;
  margin-top: var(--space-sm);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Mobile: Subtítulo más pequeño */
@media (max-width: 767px) {
  .hero-subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-mobile-lg);
  }
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: Features más compactas */
@media (max-width: 767px) {
  .hero-features {
    gap: var(--space-mobile-sm);
    margin-bottom: var(--space-mobile-lg);
  }
}

.hero-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  font-weight: 600;
}

/* Mobile: Features más pequeñas */
@media (max-width: 767px) {
  .hero-feature {
    padding: var(--space-mobile-sm);
    font-size: var(--text-sm);
    gap: 0.375rem;
  }
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: var(--color-red);
}

.hero-feature-icon {
  font-size: 1.75rem;
}

/* Mobile: Iconos más pequeños */
@media (max-width: 767px) {
  .hero-feature-icon {
    font-size: 1.25rem;
  }
}

.hero-price-box {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 2px solid var(--color-red);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: Price box más compacto */
@media (max-width: 767px) {
  .hero-price-box {
    padding: var(--space-mobile-md) var(--space-mobile-lg);
    margin-bottom: var(--space-mobile-lg);
  }
}

.hero-price-label {
  display: block;
  font-size: var(--text-base);
  color: var(--color-gray-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-price-amount {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b6b 0%, var(--color-red) 50%, #ff4757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile: Precio más pequeño */
@media (max-width: 767px) {
  .hero-price-amount {
    font-size: var(--text-2xl);
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  padding-bottom: var(--space-lg);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-lg);
  font-size: var(--text-lg);
  font-weight: 700;
  transition: all var(--transition-base);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 280px;
  justify-content: center;
}

/* Mobile: Botones más compactos */
@media (max-width: 767px) {
  .hero-btn {
    padding: 1rem 1.5rem;
    font-size: var(--text-base);
    min-width: 100%;
    gap: var(--space-sm);
  }
}

.hero-btn-icon {
  font-size: 1.5rem;
}

/* Mobile: Iconos de botón más pequeños */
@media (max-width: 767px) {
  .hero-btn-icon {
    font-size: 1.25rem;
  }

  .hero-btn-icon img {
    width: 24px !important;
    height: 24px !important;
  }
}

.hero-btn-primary {
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  color: white;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero-btn-secondary:hover {
  background: white;
  color: var(--color-black);
  transform: translateY(-3px);
}

/* CTA Buttons Grid */
.cta-buttons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: CTA buttons más compactos */
@media (max-width: 767px) {
  .cta-buttons-grid {
    gap: var(--space-mobile-md);
    margin-bottom: var(--space-mobile-lg);
  }
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Mobile: CTA buttons más pequeños */
@media (max-width: 767px) {
  .cta-btn {
    padding: 1rem 1.25rem;
    gap: var(--space-mobile-md);
  }
}

.cta-btn-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

/* Mobile: Iconos CTA más pequeños */
@media (max-width: 767px) {
  .cta-btn-icon {
    font-size: 2rem;
  }

  .cta-btn-icon img {
    width: 40px !important;
    height: 40px !important;
  }
}

.cta-btn-content {
  flex: 1;
  text-align: left;
}

.cta-btn-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: white;
}

/* Mobile: Títulos CTA más pequeños */
@media (max-width: 767px) {
  .cta-btn-title {
    font-size: var(--text-lg);
  }
}

.cta-btn-subtitle {
  font-size: var(--text-lg);
  font-weight: 600;
  opacity: 0.95;
  color: white;
}

/* Mobile: Subtítulos CTA más pequeños */
@media (max-width: 767px) {
  .cta-btn-subtitle {
    font-size: var(--text-base);
  }
}

.cta-btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
}

.cta-btn-whatsapp:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-btn-phone {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
}

.cta-btn-phone:hover {
  transform: translateX(5px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--text-5xl);
  }

  .hero-subtitle {
    font-size: var(--text-2xl);
  }

  .hero-features {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }

  .hero-price-amount {
    font-size: var(--text-4xl);
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--text-6xl);
  }
}

/* Header/Logo */
.header {
  padding: 1.5rem 0;
  background-color: transparent;
}

.logo {
  max-width: 200px;
  height: auto;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.feature-list li {
  padding: 0.75rem 0;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.feature-list li::before {
  content: '✓';
  color: var(--color-red);
  font-weight: bold;
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.section-dark .feature-list li::before {
  color: var(--color-red);
}

/* Cards */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile: Cards más compactas */
@media (max-width: 767px) {
  .card {
    padding: var(--space-mobile-lg);
  }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-red), #ff6b6b);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-red);
}

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

.section-dark .card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.section-dark .card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: var(--color-red);
}

.card h3 {
  color: var(--color-red);
  margin-bottom: var(--space-md);
}

.section-dark .card h3 {
  color: var(--color-red);
}

/* Process Steps */
.process-steps {
  counter-reset: step-counter;
}

.process-step {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: var(--space-xl);
}

.process-step::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--text-xl);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-lg);
}

.contact-item svg,
.contact-item .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-red);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-info {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }
}

/* Footer */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer h4 {
  color: var(--color-red);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.footer a {
  color: var(--color-gray-light);
}

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

.footer-bottom {
  border-top: 1px solid var(--color-gray-dark);
  padding-top: var(--space-lg);
  text-align: center;
  color: var(--color-gray-light);
  font-size: var(--text-sm);
}

.footer-bottom a {
  color: var(--color-red);
  font-weight: 600;
}

/* Problem/Solution Section */
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.problem-item::before {
  content: '❌';
  font-size: var(--text-xl);
  flex-shrink: 0;
}

/* Spacing Utilities */
.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

/* Responsive Images */
.hero-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-image {
    max-width: 600px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadein {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility: Hidden on Mobile */
@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

/* Utility: Hidden on Desktop */
@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

/* Icon Cards */
.icon-card {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, transparent 100%);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.icon-card:hover {
  border-color: var(--color-red);
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, transparent 100%);
  transform: translateY(-5px);
}

.icon-card .icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
}

.section-dark .icon-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .icon-card:hover {
  border-color: var(--color-red);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

/* Stat Box */
.stat-box {
  background: linear-gradient(135deg, var(--color-red) 0%, #c92a2a 100%);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.stat-number {
  font-size: var(--text-5xl);
  font-weight: 800;
  display: block;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

/* Mobile: Números de estadísticas más pequeños */
@media (max-width: 767px) {
  .stat-number {
    font-size: var(--text-3xl);
  }
}

.stat-label {
  font-size: var(--text-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* Mobile: Labels de estadísticas más pequeñas */
@media (max-width: 767px) {
  .stat-label {
    font-size: var(--text-sm);
    letter-spacing: 0.5px;
  }
}

/* Problem Card with Icon */
.problem-card {
  background: rgba(220, 53, 69, 0.05);
  border-left: 4px solid var(--color-red);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.problem-card:hover {
  background: rgba(220, 53, 69, 0.1);
  transform: translateX(5px);
}

.problem-card .icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-dark .problem-card {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--color-red);
}

.section-dark .problem-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Benefits Grid Enhanced */
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.02) 0%, transparent 100%);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.benefit-card:hover {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.08) 0%, transparent 100%);
  border-color: rgba(220, 53, 69, 0.3);
  transform: translateX(10px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-red) 0%, #ff4757 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Tech Spec Card */
.tech-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Mobile: Tech cards más compactas */
@media (max-width: 767px) {
  .tech-card {
    padding: var(--space-mobile-lg);
  }
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.tech-card h3 {
  position: relative;
  z-index: 1;
}

/* =====================================
   ANIMACIONES DE ENTRADA/SALIDA
   ===================================== */

/* Estado inicial - oculto */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estado visible */
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animación con delay para elementos internos */
.section.visible .card,
.section.visible .benefit-card,
.section.visible .problem-card {
  animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Delay escalonado para grid items */
.section.visible .grid>*:nth-child(1) {
  animation-delay: 0.1s;
}

.section.visible .grid>*:nth-child(2) {
  animation-delay: 0.2s;
}

.section.visible .grid>*:nth-child(3) {
  animation-delay: 0.3s;
}

.section.visible .grid>*:nth-child(4) {
  animation-delay: 0.4s;
}

.section.visible .grid>*:nth-child(5) {
  animation-delay: 0.5s;
}

.section.visible .grid>*:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================
   DIVISORES SUTILES ENTRE SECCIONES
   ===================================== */

/* Divisor base */
.section-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

/* Divisor visible cuando la sección siguiente está visible */
.section-divider.visible {
  opacity: 1;
}

/* Divisor Curve - Transición oscuro a claro */
.section-divider.curve-dark-to-light {
  background-color: var(--color-bg-dark);
}

.section-divider.curve-dark-to-light svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-divider.curve-dark-to-light .shape-fill {
  fill: var(--color-bg-light);
}

/* Divisor Curve - Transición claro a oscuro */
.section-divider.curve-light-to-dark {
  background-color: var(--color-bg-light);
}

.section-divider.curve-light-to-dark svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-divider.curve-light-to-dark .shape-fill {
  fill: var(--color-bg-dark);
}

/* Divisor Tilt Opacity - Oscuro a claro */
.section-divider.tilt-dark-to-light {
  background: linear-gradient(135deg,
      var(--color-bg-dark) 0%,
      var(--color-bg-dark) 50%,
      var(--color-bg-light) 50%,
      var(--color-bg-light) 100%);
  height: 80px;
  transform: skewY(-1.5deg);
  transform-origin: top left;
  margin-top: -40px;
  margin-bottom: -40px;
}

/* Divisor Tilt Opacity - Claro a oscuro */
.section-divider.tilt-light-to-dark {
  background: linear-gradient(135deg,
      var(--color-bg-light) 0%,
      var(--color-bg-light) 50%,
      var(--color-bg-dark) 50%,
      var(--color-bg-dark) 100%);
  height: 80px;
  transform: skewY(-1.5deg);
  transform-origin: top left;
  margin-top: -40px;
  margin-bottom: -40px;
}

/* Divisor Curve - Rojo a claro */
.section-divider.curve-red-to-light {
  background-color: var(--color-red);
}

.section-divider.curve-red-to-light svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-divider.curve-red-to-light .shape-fill {
  fill: var(--color-bg-light);
}

/* Divisor Tilt - Oscuro a rojo */
.section-divider.tilt-dark-to-red {
  background: linear-gradient(135deg,
      var(--color-bg-dark) 0%,
      var(--color-bg-dark) 50%,
      var(--color-red) 50%,
      var(--color-red) 100%);
  height: 80px;
  transform: skewY(-1.5deg);
  transform-origin: top left;
  margin-top: -40px;
  margin-bottom: -40px;
}

/* Divisor Curve - Oscuro a rojo */
.section-divider.curve-dark-to-red {
  background-color: var(--color-bg-dark);
}

.section-divider.curve-dark-to-red svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-divider.curve-dark-to-red .shape-fill {
  fill: var(--color-red);
}

/* Divisor Curve - Claro a rojo */
.section-divider.curve-light-to-red {
  background-color: var(--color-bg-light);
}

.section-divider.curve-light-to-red svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-divider.curve-light-to-red .shape-fill {
  fill: var(--color-red);
}




/* =====================================
   MICRO-ANIMACIONES
   ===================================== */

/* Hover en títulos */
.section h2 {
  position: relative;
  padding-bottom: 20px;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-red), transparent);
  transition: width var(--transition-slow);
}

.section.visible h2::after {
  width: 150px;
}

/* Animación de números */
.stat-number {
  display: inline-block;
  transition: transform var(--transition-base);
}

.stat-box:hover .stat-number {
  transform: scale(1.1) rotate(5deg);
}

/* Pulso sutil en badges */
@keyframes subtle-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
  }

  50% {
    box-shadow: 0 4px 30px rgba(220, 53, 69, 0.5);
  }
}

/* Efecto de brillo en botones */
.btn-primary::before,
.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.btn-primary,
.hero-btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary:hover::before,
.hero-btn-primary:hover::before {
  left: 100%;
}

/* Shake en iconos importantes */
@keyframes shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  75% {
    transform: rotate(5deg);
  }
}

.hero-badge:hover {
  animation: shake 0.5s ease-in-out;
}

/* Glow effect en hover de cards */
.card,
.benefit-card,
.problem-card {
  position: relative;
  overflow: hidden;
}

.card::after,
.benefit-card::after,
.problem-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.card:hover::after,
.benefit-card:hover::after,
.problem-card:hover::after {
  width: 300px;
  height: 300px;
}

/* =====================================
   ANIMACIONES PARA ELEMENTOS ESPECÍFICOS
   ===================================== */

/* Animación de entrada de hero */
.hero-title,
.hero-subtitle,
.hero-features,
.hero-price-box,
.hero-cta {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-logo-container {
  opacity: 0;
  animation: fadeInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo-container {
  animation-delay: 0.1s;
}

.hero-badge-wrapper {
  animation-delay: 0.2s;
}

.hero-title {
  animation-delay: 0.3s;
}

.hero-subtitle {
  animation-delay: 0.4s;
}

.hero-features {
  animation-delay: 0.5s;
}

.hero-price-box {
  animation-delay: 0.6s;
}

.hero-cta {
  animation-delay: 0.7s;
}

/* Responsive: reducir animaciones en mobile */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mejorar rendimiento en mobile */
@media (max-width: 767px) {
  .section {
    transition-duration: 0.5s;
  }

  .section-divider.wave::before {
    animation: wave 30s linear infinite;
  }
}

/* Hacer el hero no animado inicialmente para mejor UX */
.hero {
  opacity: 1 !important;
  transform: none !important;
}

.hero-badge-wrapper {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

/* =====================================
   CARRUSEL DE FOTOS
   ===================================== */

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-gray-light);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

/* Mobile: Aspect ratio más cuadrado para mejor visualización */
@media (max-width: 767px) {
  .carousel-slide {
    aspect-ratio: 1/1;
  }
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: white;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  font-size: var(--text-lg);
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.carousel-slide:hover .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(220, 53, 69, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: var(--color-red);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: var(--space-md);
}

.carousel-btn-next {
  right: var(--space-md);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile: Botones más pequeños y mejor posicionados */
@media (max-width: 767px) {
  .carousel-btn {
    width: 36px;
    height: 36px;
    background: rgba(220, 53, 69, 0.85);
  }

  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-btn-prev {
    left: 0.5rem;
  }

  .carousel-btn-next {
    right: 0.5rem;
  }
}

/* Indicadores */
.carousel-indicators {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  padding: var(--space-sm) var(--space-md);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.carousel-indicator.active {
  background: var(--color-red);
  border-color: var(--color-red);
  width: 30px;
  border-radius: 10px;
}

/* Mobile: Indicadores ultra pequeños - FORZADO */
@media (max-width: 767px) {
  .carousel-indicators {
    bottom: 0.25rem !important;
    gap: 2px !important;
    padding: 2px 4px !important;
    background: rgba(0, 0, 0, 0.3) !important;
  }

  .carousel-indicator {
    width: 3px !important;
    height: 3px !important;
    min-width: 3px !important;
    min-height: 3px !important;
    border-width: 0 !important;
    background: rgba(255, 255, 255, 0.6) !important;
  }

  .carousel-indicator.active {
    width: 8px !important;
    height: 3px !important;
    border-radius: 3px !important;
    background: var(--color-red) !important;
  }

  .carousel-indicator:hover {
    transform: scale(1.1) !important;
    background: rgba(255, 255, 255, 0.9) !important;
  }
}

/* Animación de entrada */
.carousel-container {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tropical Fruits Section */
.tropical-fruits-grid {
  margin-top: var(--space-3xl);
}

.fruits-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .fruits-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .fruits-showcase {
    grid-template-columns: repeat(6, 1fr);
  }
}

.fruit-card {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.fruit-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--color-red);
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4);
}

.fruit-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  animation: bounce 2s ease-in-out infinite;
}

.fruit-card:hover .fruit-icon {
  animation: spin 0.6s ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fruit-card h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.fruit-card p {
  font-size: var(--text-sm);
  color: var(--color-gray-light);
  opacity: 0.8;
  margin-bottom: 0;
}

.fruits-image-container {
  margin-top: var(--space-2xl);
}

.tropical-benefits-box {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-3xl);
  backdrop-filter: blur(10px);
}

.tropical-benefits-box h3 {
  color: var(--color-white);
  margin-bottom: var(--space-xl);
}

.benefit-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-red);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.benefit-item h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: var(--space-xs);
}

.benefit-item p {
  font-size: var(--text-base);
  color: var(--color-white);
  opacity: 0.85;
  margin-bottom: 0;
}

/* Tropical Fruits Section - Compact */
.fruits-showcase-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

@media (min-width: 640px) {
  .fruits-showcase-compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .fruits-showcase-compact {
    grid-template-columns: repeat(6, 1fr);
  }
}

.fruit-card-mini {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.fruit-card-mini:hover {
  transform: translateY(-5px);
  border-color: var(--color-red);
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

.fruit-icon-mini {
  font-size: 2rem;
  line-height: 1;
  transition: transform var(--transition-base);
}

.fruit-card-mini:hover .fruit-icon-mini {
  transform: scale(1.2);
}

.fruit-card-mini span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  opacity: 0.9;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .fruit-icon-mini {
    font-size: 2.5rem;
  }

  .fruit-card-mini span {
    font-size: var(--text-base);
  }
}

/* =====================================
   OPTIMIZACIONES GLOBALES PARA MÓVIL
   ===================================== */

/* Mejorar legibilidad de textos en móvil */
@media (max-width: 767px) {

  /* Ajustar tamaños de texto globales */
  .text-xl {
    font-size: var(--text-lg) !important;
  }

  .text-2xl {
    font-size: var(--text-xl) !important;
  }

  .text-3xl {
    font-size: var(--text-2xl) !important;
  }

  .text-4xl {
    font-size: var(--text-3xl) !important;
  }

  /* Reducir márgenes inferiores */
  .mb-xl {
    margin-bottom: var(--space-mobile-lg) !important;
  }

  .mb-lg {
    margin-bottom: var(--space-mobile-md) !important;
  }

  /* Optimizar padding del container */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Mejorar imágenes en móvil */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Ajustar divisores en móvil */
  .section-divider svg {
    height: 40px;
  }

  /* Optimizar footer en móvil */
  .footer {
    padding: var(--space-mobile-xl) 0 var(--space-mobile-md);
  }

  .footer-content {
    gap: var(--space-mobile-lg);
    margin-bottom: var(--space-mobile-lg);
  }

  /* Mejorar espaciado de listas */
  .feature-list li {
    font-size: var(--text-base);
    padding: 0.5rem 0;
  }

  /* Optimizar stat boxes en móvil */
  .stat-box {
    padding: var(--space-mobile-lg);
  }

  /* Mejorar botones en general */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--text-base);
  }

  /* Ajustar sección de promoción */
  #promocion {
    padding-bottom: var(--space-mobile-2xl) !important;
  }

  /* Mejorar CTA final en móvil */
  #cta-final h2 {
    font-size: var(--text-2xl) !important;
  }

  #cta-final .text-xl {
    font-size: var(--text-base) !important;
  }

  #cta-final .text-3xl {
    font-size: var(--text-xl) !important;
  }

  /* Ajustar grid de stats */
  #cta-final .grid-3 {
    gap: var(--space-mobile-md) !important;
    margin-bottom: var(--space-mobile-lg) !important;
  }

  /* Mejorar sección de servicios */
  #servicios .grid-2 {
    gap: var(--space-mobile-lg);
  }

  #servicios img {
    margin-top: var(--space-mobile-lg);
  }

  /* Optimizar sección de frutas tropicales */
  #frutas-tropicales {
    padding: var(--space-mobile-xl) 0 !important;
  }

  #frutas-tropicales h2 {
    font-size: var(--text-2xl) !important;
    margin-bottom: var(--space-mobile-md) !important;
  }

  /* Mejorar galería en móvil */
  #galeria h2 {
    font-size: var(--text-2xl) !important;
  }

  #galeria .text-xl {
    font-size: var(--text-base) !important;
  }

  /* Evitar overflow horizontal */
  body {
    overflow-x: hidden;
  }

  /* Mejorar touch targets */
  a,
  button {
    min-height: 44px;
    min-width: 44px;
  }

  /* Optimizar parallax en móvil (desactivar) */
  .hero {
    transform: none !important;
  }
}