/* Estilos globales */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 0px;
}

/* Header principal */
header {
  background-color: #fcb900;
  color: #000;
  padding: 30px 20px;
  min-height: 200px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

header p {
  margin: 10px 0;
  font-size: 1.2rem;
  font-style: italic;
  color: #222;
}
    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: #000;
    }

    header {
      background-color: #000;
      padding: 0rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-container img {
      height: 45px;
      border-radius: 50%;
    }

    .logo-container div {
      line-height: 1.1;
    }

    .logo-container span:first-child {
      color: #fff;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .logo-container span:last-child {
      color: #fcb900;
      font-size: 0.8rem;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    nav a {
      text-decoration: none;
      color: #fff;
      font-size: 0.9rem;
    }

    nav a:last-child {
      padding: 0.4rem 1rem;
      background-color: #fcb900;
      color: #000;
      border-radius: 20px;
      font-weight: 500;
      font-size: 0.85rem;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background-color: #fff;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #000;
        flex-direction: column;
        width: 100%;
        text-align: right;
        padding: 1rem 2rem;
      }

      nav a {
        margin: 0.5rem 0;
      }

      nav.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }
/* Botón CTA general */
.btn,
.boton-animado {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  margin-top: 15px;
}

.btn:hover {
  background-color: #fff;
  color: #000;
  border-color: #000;
}

.boton-animado {
  background-color: #fcb900;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 1.3rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boton-animado:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(252, 185, 0, 0.4);
}

/* Sección de características */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
}

.feature {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(252, 185, 0, 0.4);
}

.feature img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Sección de paquetes */
.paquete {
  background-color: #111;
  padding: 30px;
  border-radius: 12px;
  color: #fff;
  width: 100%;
  max-width: 350px;
  margin: 20px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paquete:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(252, 185, 0, 0.4);
}

.paquete h3 {
  color: #fcb900;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.paquete .precio {
  font-size: 2rem;
  font-weight: bold;
  color: #fcb900;
  margin-bottom: 15px;
}

.paquete p {
  margin: 10px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Botón dentro del paquete */
.paquete a {
  display: block;
  background-color: #fcb900;
  color: #000;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.paquete a:hover {
  background-color: #fff;
  color: #000;
}

/* Redes sociales */
.social-links a {
  margin: 0 10px;
  color: #fcb900;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

/* Sección de contacto nueva */
.contacto-seccion {
  padding: 4rem 1rem;
  background: #111;
  color: #fff;
}

.contacto-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Asegura que se centre horizontalmente */
  align-items: flex-start;
  gap: 2rem;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  animation: fadeInUp 1s ease-in-out;
  max-width: 1200px;
  margin: 0 auto; /* Centra el bloque completo en la pantalla */
}

.contacto-info,
.contacto-formulario {
  flex: 1 1 400px;
  max-width: 500px;
}

.titulo-animado {
  font-size: 2rem;
  color: #fcb900;
  animation: crecerDisminuir 3s infinite ease-in-out;
  text-align: center;
  margin-bottom: 1rem;
}

.contacto-info p {
  margin: 0.5rem 0;
}

.contacto-redes a img {
  width: 28px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.contacto-redes a:hover img {
  transform: scale(1.2);
}

.contacto-formulario form input,
.contacto-formulario form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #222;
  color: #fff;
}

.contacto-formulario form textarea {
  resize: vertical;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseText {
  0%, 100% {
    opacity: 1;
    letter-spacing: normal;
  }
  50% {
    opacity: 0.8;
    letter-spacing: 2px;
  }
}

/* RESPONSIVO para celulares */
@media (max-width: 768px) {
  body {
    text-align: center;
    padding: 0;
    margin: 0;
  }

  header {
    padding: 0px 0px;
  }

  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .btn,
  .boton-animado {
    padding: 10px 20px;
    font-size: 1rem;
    display: inline-block;
    margin: 10px auto;
  }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

/* Sección: ¿Por qué elegirnos? */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature {
  background-color: #111;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 340px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.feature img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: #222;
  padding: 10px;
}

.feature h3 {
  font-size: 1.4rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

  /* Sección de paquetes */
  .paquete {
    padding: 25px;
    max-width: 95%;
    margin: 20px auto;
    text-align: center;
  }

  .paquete h3 {
    font-size: 1.4rem;
  }

  .paquete .precio {
    font-size: 1.6rem;
  }

  .paquete p {
    font-size: 0.9rem;
  }

  /* Redes sociales */
  .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .social-links a {
    margin: 8px;
    font-size: 1rem;
  }

  /* Sección de contacto */
  .contacto-contenedor {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
  }

  .contacto-info,
  .contacto-formulario {
    width: 100%;
    max-width: 100%;
  }

  .contacto-info p {
    text-align: center;
  }

  .contacto-formulario form {
    width: 100%;
  }

  .contacto-formulario form input,
  .contacto-formulario form textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    box-sizing: border-box;
  }

  .contacto-formulario form textarea {
    resize: vertical;
    min-height: 120px;
  }
}

@keyframes crecerDisminuir {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}