@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap');

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

body {
  font-family: 'Outfit', sans-serif;
  background: #fefefe;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2 {
  font-weight: 800;
}

.hero {
  background: linear-gradient(to bottom right, #101010, #202020);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero .logo {
  width: 100px;
  margin-bottom: 20px;
  animation: zoomIn 1s ease-in-out;
}

.hero h1 {
  font-size: 2.8rem;
  animation: slideIn 1.2s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  animation: fadeIn 2s ease;
}

.cta-button {
  margin-top: 30px;
  background: #ffc107;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.cta-button:hover {
  transform: scale(1.05);
  background: #ffb300;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery {
  background: #fff;
}

.gallery-container {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px;
  scroll-snap-type: x mandatory;
}

.gallery-container img {
  height: 420px;
  border-radius: 12px;
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

.benefits ul {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
}

.benefits li {
  margin: 15px 0;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.cta-final {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #000;
}

footer {
  padding: 30px;
  text-align: center;
  background: #111;
  color: #bbb;
  font-size: 0.9rem;
}

footer a {
  color: #ffc107;
  text-decoration: none;
  margin: 0 8px;
}

/* Animaciones clave */
@keyframes slideIn {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
