


/* ================= VARIABLES ================= */
/* ================= VARIABLES ================= */
:root {
  --marketing-green: #0a2f1c;
  --marketing-bright-green: #00ff66;
  --marketing-light-bg: #f5f5f5;
}

/* ================= RESET ================= */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #051c10;
  color: #051c10;

  /* Scroll overlay (cuando el navegador lo soporte) */
  overflow-y: overlay;

  /* Ocultar scrollbar en Firefox */
  scrollbar-width: none;
}

/* Ocultar scrollbar en Chrome */
body::-webkit-scrollbar {
  display: none;
}

/* ================= SCROLLBAR CUSTOM ================= */
.scrollbar {
  position: fixed;
  top: 0;
  right: 8px;
  width: 6px;
  height: 100vh;

  z-index: 9999;
  pointer-events: none; /* 👈 no interfiere con clicks */
}

.thumb {
  width: 100%;
  position: absolute;
  top: 0;

  background: var(--marketing-bright-green);
  border-radius: 10px;

  box-shadow: 0 0 10px var(--marketing-bright-green),
              0 0 20px var(--marketing-bright-green);

  transition: background 0.3s ease;
}

/* Hover opcional (si decides activar pointer-events) */
.scrollbar:hover .thumb {
  background: #00cc55;
}

/* ================= CONTENIDO DEMO ================= */
.contenido {
  min-height: 200vh; /* solo para probar scroll */
}

/* ================= NAVEGACIÓN ================= */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 15px 30px;
  display: flex;
  justify-content: flex-start;
  box-sizing: border-box;
  z-index: 10;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.menu a:hover {
  color: var(--marketing-bright-green);
}

/* ================= HERO ================= */
.hero-marketing {
  position: relative;
  background: linear-gradient(to bottom, #031108 0%, #0a331c 45%, #00883f 100%);
  padding: 100px 20px 80px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}


.hero-marketing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;


  background-image: url('img/dolar.jpg');
  background-size: cover;
  background-position: center;

  opacity: 0.1;

  z-index: -1;
  pointer-events: none;
}

.hero-logo {
  width: 100%;
  max-width: 550px;

  margin-bottom: 15px;
}

.hero-subtitle {
  color: white;
  font-size: 18px;

  font-weight: 400;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}


.btn-black {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #222;
  padding: 16px 35px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;


  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.btn-black:hover {
  transform: translateY(-6px) scale(1.05);
  background-color: #111111;
  border-color: #00ff66;
  box-shadow: 0 12px 25px rgba(0, 255, 102, 0.25);
}


.btn-black .bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #00ff66;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.btn-black:hover .bullet {
  transform: scale(1.3);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #000;
}

.promo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: red;
  font-size: 70px;
  background: white;
  border-radius: 15px;
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.experiences-section {
  background-color: #0e0e0e;
  padding: 50px 20px;
  text-align: center;
  color: #000;
}

/* ================= TITULOS ================= */
.eventos-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.05;
  margin: 30px ;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ================= TEXTOS SOLIDOS ================= */
.text-solid-white {
  color: #ffffff;
}

.text-solid-green {
  color: #00ff66;
}

/* ================= TEXTO OUTLINE (MEJORADO) ================= */
.text-outline {
  
  color: #03150a;
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: initial;
  text-shadow:
    -1.5px -1.5px 0 #ffffff,
    1.5px -1.5px 0 #ffffff,
    -1.5px 1.5px 0 #ffffff,
    1.5px 1.5px 0 #ffffff;
  font-weight: 800;
}
.experiences-container {
  max-width: 900px;
  margin: 0 auto;
}

.btn-wide-green {
  display: block;
  width: 100%;
  background-color: #006b38;
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 30px;
  transition: background-color 0.3s ease;
}

.btn-wide-green:hover {
  background-color: #004d28;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}


.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-item {
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  
}


.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.gallery-item.tall {
  height: 350px;
}

.gallery-item.short {
  height: 250px;
}


@media (max-width: 768px) {
  .experiences-title {
    font-size: 24px;
  }

  .btn-wide-green {
    font-size: 18px;
    padding: 12px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.short {
    height: 250px;
  }
}

/* ================= CARACTERÍSTICAS ================= */
.features-section {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;

  background-color: #010b05;
}


.features-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  object-fit: cover;
  opacity: 0.2;
}


.features-content-wrapper {
  position: relative;
  z-index: 1;
}


.features-header h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 60px;
  letter-spacing: -1px;
}


.features-header h2 span {
  font-weight: 800;
  display: block;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  background-color: #161616;
  color: #000000;
  padding: 50px 35px;
  border-radius: 35px;
  flex: 1;
  text-align: center;


  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-15px);

  box-shadow: 0 15px 40px rgba(0, 255, 102, 0.35);
}

.card .icon {
  font-size: 35px;
  color: #006b38;
  margin-bottom: 25px;
  display: inline-block;
}

.card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  color: #00ff66;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}

.card img {
  width: 70%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 400px;
  }
}

/* ================= BANNER INFO ================= */
.info-banner-section {
  padding: 100px 20px;
  background-color: #0e0e0e;
}

.info-box {

  background: #0a0a0a;
  border-radius: 25px;
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);


  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}


.info-box:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 107, 56, 0.15);
}

.info-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

.info-text {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #000000;
}

.info-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #00cc55;
}

.info-text p {
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 1.7;
  color: #ffffff;
}

/* Adaptación para pantallas de teléfonos  */
@media (max-width: 768px) {
  .info-box {
    flex-direction: column;
  }

  .info-img {
    min-height: 250px;
  }

  .info-text {
    padding: 40px 30px;
  }
}

/* ================= CONVENIOS ================= */
.partners-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #130e0e;
}

.partners-section h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 2px;
  color: #00883f;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-box {
  width: 220px;
  height: 120px;
  background-color: #f8f9fa;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  padding: 25px;


  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 107, 56, 0.1);
}

.partner-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* ================= FOOTER ================= */
.footer-section {
  background: linear-gradient(to bottom, #0a2f1c, #051c10);
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  padding: 80px 20px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
}

.footer-column a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: white;
}

/* ================= DISEÑO RESPONSIVO ================= */
@media (max-width: 768px) {
  .info-box {
    flex-direction: column;
  }

  .info-img {
    min-height: 200px;
  }

  .cards-container {
    flex-direction: column;
  }

  .footer-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
}