/* ============================================
   RESET TOTAL
   ============================================ */

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ============================================
   ESTILOS SOLO PARA LANDING PAGE
   ============================================ */

.landing-body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   NAVBAR (COMPARTIDO)
   ============================================ */

.navbar-minimal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-container-minimal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-emoji {
  font-size: 1.8rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d5016;
}

.nav-links-minimal {
  display: flex;
  gap: 2rem;
}

.nav-links-minimal a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links-minimal a:hover {
  color: #4CAF50;
}

.hamburger {
  display: none;
}

.nav-menu-mobile {
  display: none;
}

/* ============================================
   CONTENEDOR VERTICAL
   ============================================ */

.landing-body .container-vertical {
  width: 100% !important;
  max-width: 850px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;

}/* ============================================
   HERO SECTION - TODO EN UNO
   ============================================ */

.landing-body .section-hero {
  width: 100% !important;
  min-height: calc(100vh - 70px) !important;
  margin-top: 70px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, #e8f5e9 0%, #f8f8f8 100%) !important;
  padding: 60px 20px !important;
}

.landing-body .hero-icon {
  font-size: 8.5rem;
  margin-bottom: 1.5rem;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.landing-body .hero-title {
  font-size: 3.2rem;
  color: #2d5016;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.landing-body .hero-subtitle {
  font-size: 1.35rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.landing-body .btn-big {
  display: inline-block;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white;
  padding: 22px 65px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
}

.landing-body .btn-big:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.5);
}

/* ============================================
   FOOTER (sin cambios)
   ============================================ */

.landing-body .footer-black {
  width: 100%;
  background: #1a1a1a;
  color: white;
  padding: 60px 20px 20px;
}

.landing-body .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.landing-body .footer-col {
  display: flex;
  flex-direction: column;
}

.landing-body .footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.landing-body .footer-col p {
  color: #aaa;
  line-height: 1.6;
}

.landing-body .footer-col a {
  color: #aaa;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.landing-body .footer-col a:hover {
  color: #4CAF50;
}

.landing-body .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #333;
  text-align: center;
}

.landing-body .footer-bottom p {
  color: #666;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
  .landing-body .hero-icon {
    font-size: 4.5rem !important;
  }
  
  .landing-body .hero-title {
    font-size: 2.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  
  .landing-body .hero-subtitle {
    font-size: 1.15rem !important;
    margin-bottom: 2.5rem !important;
  }
  
  .landing-body .btn-big {
    padding: 18px 50px !important;
    font-size: 1.3rem !important;
  }
  
  .landing-body .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .landing-body .hero-icon {
    font-size: 3.5rem !important;
  }
  
  .landing-body .hero-title {
    font-size: 1.9rem !important;
  }
  
  .landing-body .hero-subtitle {
    font-size: 1rem !important;
  }
  
  .landing-body .btn-big {
    padding: 16px 40px !important;
    font-size: 1.2rem !important;
  }
  
  .landing-body .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* ============================================
   MENÚ HAMBURGUESA MEJORADO
   ============================================ */

@media (max-width: 968px) {
  .nav-links-minimal {
    display: none;
  }
  
  /* Botón hamburguesa más bonito */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .hamburger:hover {
    background: rgba(76, 175, 80, 0.1);
  }
  
  .hamburger span {
    width: 28px;
    height: 3px;
    background: #2d5016;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  /* Animación del hamburguesa */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
  }
  
  /* Menú desplegable más bonito */
  .nav-menu-mobile {
    display: flex;
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: calc(100vh - 70px);
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    flex-direction: column;
    padding: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    list-style: none;
    overflow-y: auto;
  }
  
  .nav-menu-mobile.active {
    right: 0;
  }
  
  /* Items del menú mejorados */
  .nav-menu-mobile li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  
  .nav-menu-mobile li:first-child {
    margin-top: 20px;
  }
  
  .nav-menu-mobile a {
    color: #333;
    text-decoration: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
  }
  
  .nav-menu-mobile a:hover,
  .nav-menu-mobile a:active {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.1) 0%, transparent 100%);
    border-left-color: #4CAF50;
    color: #4CAF50;
    padding-left: 30px;
  }
  
  /* Overlay oscuro detrás del menú */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 499;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .nav-overlay.active {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .landing-body .hero-title {
    font-size: 2rem;
  }
  
  .landing-body .hero-icon {
    font-size: 4rem;
  }
  
  .landing-body .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .landing-body .action-text {
    font-size: 1.1rem;
  }
  
  .landing-body .btn-big {
    padding: 18px 40px;
    font-size: 1.2rem;
  }
  
  .landing-body .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}