/* ESTILO BASE */
body {
  font-family: 'Manrope', sans-serif;
  background-color: #0e0e0e;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.center {
  text-align: center;
}

/* SEPARADORES Y FONDOS */

 section {
    padding: 4rem 0;
  }


section:nth-child(odd) {
  background-color: #0e0e0e;
}

section:nth-child(even) {
  background-color: #151515;
}

section + section {
  border-top: 1px solid #1e1e1e;
}
  .fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s ease forwards; }
    @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

    .btn-outline {
      background: transparent;
      border: 2px solid #f0a500;
      color: #f0a500;
      padding: 0.6rem 1.2rem;
      border-radius: 2rem;
      transition: 0.3s;
    }
    .btn-outline:hover {
      background: #f0a500;
      color: #000;
    }

    section:nth-child(even) { background-color: #151515; }

    .card, .faq-item, .quote {
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover, .faq-item:hover, .blog-card:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .divider {
      width: 100%;
      height: 80px;
      background: url('../assets/divider.svg') no-repeat center;
      background-size: cover;
    }

    .blog-card img, .wall-gallery img {
      loading: lazy;
    }

    .arrow-down {
      text-align: center;
      font-size: 2rem;
      color: #f0a500;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(10px); }
    }
/* BOTÓN PRINCIPAL */
.btn-main {
  background-color: #f0a500;
  color: #0e0e0e;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 12px;
  display: inline-block;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-main:hover {
  background-color: #ffb700;
}

/* HERO */
.hero {
  background: url('../assets/img-hero-fondo.jpg') no-repeat center center;
  background-size: cover;
  background-color: #0e0e0e; /* fallback */
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.stats {
  background-color: #121212;
  padding: 3rem 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  text-align: center;
}

.stat {
  min-width: 150px;
}

.stat h2 {
  font-size: 2.5rem;
  color: #f0a500;
  transition: all 1s ease-in-out;
}

.stat p {
  font-size: 1rem;
  color: #ccc;
}

/* CÓMO FUNCIONA */
.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.step {
  flex: 1 1 200px;
  text-align: center;
  max-width: 250px;
}

.step img {
  height: 80px;
  margin-bottom: 1rem;
}

.step h3 {
  color: #f0a500;
  margin-bottom: 0.5rem;
}


.ico-paso {
  color: #f0a500;
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.ico-paso:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px #f0a50055);
}



/* BENEFICIOS */
.benefit-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.card {
  background: #151515;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  height: 60px;
  margin-bottom: 1rem;
}

.card h3 {
  color: #f0a500;
}

.card p {
  color: #ccc;
}

/* TESTIMONIOS */
.testimonial-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.bubble {
  background: #1f1f1f;
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 400px;
  position: relative;
  border-left: 5px solid #f0a500;
}

.bubble p {
  font-style: italic;
  color: #ddd;
}

.bubble span {
  display: block;
  margin-top: 1rem;
  color: #f0a500;
  font-weight: bold;
}

/* BLOG */
.blog-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.blog-card {
  width: 300px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card p {
  padding: 1rem;
}

/* WOL PÚBLICO */
.wall-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.wall-gallery img {
  width: 100%;
  border-radius: 8px;
}

.wall-gallery + .center {
  margin-top: 1.5rem;
}

/* FAQ */


  .faq-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    margin: 1rem auto;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  }

  .faq-item h3::before {
    content: '❓ ';
    display: inline;
  }

  .faq-item h3 {
    color: #f0a500;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .faq .btn-main {
    display: inline-block;
    margin-top: 2rem;
  }

  .faq .center {
    text-align: center;
  }

/* FOOTER */
.footer {
  background: #000;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #aaa;
}
