/* Reset General */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: #fff;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #003d5b, #1b5e20, #7b1e1e); /* Fondo degradado oscuro */
  background-attachment: fixed; /* Fijo al hacer scroll */
}

/* Estilos del Header */
.header {
  width: 100%;
  padding: 15px 30px;
  background-color: rgba(0, 0, 0, 0.9); /* Más oscuro para profesionalismo */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header h1 {
  font-size: 1.5rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.hero .content {
  z-index: 2;
  text-align: center;
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4); /* Sombra suave para destacar */
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Botones */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(to right, #005f7a, #2e7d32); /* Degradado más oscuro */
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.cta-button:hover {
  background: linear-gradient(to right, #2e7d32, #c62828); /* Suave transición al rojo oscuro */
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsividad */
@media (max-width: 1024px) {
  .hero h1 {
      font-size: 2.5rem;
  }

  .cta-button {
      font-size: 0.9rem;
      padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
      font-size: 2rem;
  }

  .hero p {
      font-size: 1rem;
  }

  .cta-button {
      font-size: 0.8rem;
      padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
      font-size: 1.5rem;
  }

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

  .cta-button {
      font-size: 0.7rem;
      padding: 8px 16px;
  }
}
/* Botones */
.cta-button {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(to right, #005f7a, #2e7d32); /* Degradado inicial */
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

/* Hover Más Llamativo */
.cta-button:hover {
  background: linear-gradient(to right, #00e1ff, #45ff45); /* Colores más brillantes */
  transform: scale(1.1); /* Ampliación sutil */
  box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.6); /* Brillo suave */
  color: #ffffff;
  text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.8); /* Resalta el texto */
}
