:root {
  /* Colores principales */
  --color-primary: #2d5016;
  --color-primary-dark: #1a3009;
  --color-secondary: #ff6b35;
  --color-accent: #4a7c2a;
  
  /* Colores de texto */
  --color-text-light: #ffffff;
  --color-text-dark: #333333;
  
  /* Fondos */
  --bg-light: #ffffff;
  --bg-dark: var(--color-primary);
  
  /* Espaciado */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  /* Tipografía */
  --font-family-primary: 'Montserrat', sans-serif;
  --font-family-heading: 'Playfair Display', serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.50rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 3rem;
  
  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
  
  /* Bordes */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-dark);
  line-height: 1.6;
  width: 100%;
  position: relative;
  overflow-y: auto;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* estilos index */
/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  min-width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  left: 0;
  right: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  object-fit: cover;
  object-position: center center;
  filter: brightness(65%);
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 10;
  box-sizing: border-box;
  overflow: hidden;
}

/* Asegurar que el contenedor interno ocupe el 100% del ancho */
.hero-content > div {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* Glassmorphism container */
.hero-glass-container {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 0;
  border: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out;
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-header {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  color: #ffffff;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

.trust-icon {
  font-size: 1.2rem;
}

.trust-text {
  white-space: nowrap;
}

/* Hero Description */
.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1.5rem auto;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Hero Promo */
.hero-promo {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}


/* BOTONES */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Botón Primario - CTA Principal */
.btn-primary {
    background-color: #f15f5f;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(241, 95, 95, 0.6), 0 0 15px rgba(241, 95, 95, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3);
}

/*
.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:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2a5e48 0%, #1f4a3a 100%);
  box-shadow: 0 8px 25px rgba(46, 125, 98, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px) scale(1.02);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary:focus-visible {
  outline: 3px solid rgba(46, 125, 98, 0.5);
  outline-offset: 3px;
}

.btn-icon {
  font-size: 1.1rem;
}

/* Botón Secundario - Glass Style */
.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-secondary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.btn-arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: scaleIn 0.8s ease-out 1s backwards, floatPulse 3s ease-in-out infinite 2s;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 3px 12px rgba(0, 0, 0, 0.3);
  }
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6), 0 4px 14px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:active {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
  }


  .hero-image {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .hero-overlay {
    height: 100vh !important;
    height: 100dvh !important;
  }

  .hero-content {
    padding: 0;
    
    height: 100vh !important;
  
    width: 100vw !important;
  }

  .hero-glass-container {
    padding: 2rem 1.5rem;
    border-radius: 0;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .trust-badges {
    gap: 1rem;
    margin: 1rem 0;
  }

  .trust-item {
    font-size: 0.85rem;
  }

  .trust-icon {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    padding: 14px 28px;
    font-size: 1rem;
    justify-content: center;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    bottom: 5.5rem;
    right: 1.5rem;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
  }

  .hero-image {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .hero-overlay {
    height: 100vh !important;
    height: 100dvh !important;
  }

  .hero-content {
    height: 100vh !important;
    height: 100dvh !important;
  }

  .hero-glass-container {
    padding: 1.75rem 1.25rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-promo {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 5rem;
    right: 1.25rem;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  border-bottom: 1px solid white;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  font-weight: bold;
  border-bottom: 2px solid white;
}

}