* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0b0b0b;
  color: white;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 45px;
}

/* NAV */
.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: white;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #ff9800;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(45deg, #ff9800, #ff5722);
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 80px 20px;
}

.card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* SPLIT */
.split {
  display: flex;
  gap: 40px;
  padding: 80px 20px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 20px;
}

/* PRECIOS */
.pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px;
  flex-wrap: wrap;
}

.price {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 20px;
  width: 250px;
  text-align: center;
}

.destacado {
  background: linear-gradient(45deg, #ff9800, #ff5722);
}

/* ABOUT */
.about {
  text-align: center;
  padding: 80px 20px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: black;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
}

/* ANIMACIONES */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .split {
    flex-direction: column;
  }

}