* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(78, 168, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #0b1020, #101935 50%, #0b1020);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  scroll-margin-top: 90px;
}

.section {
  padding: 92px 0;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  text-align: center;
  color: #b8c1d9;
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: 1rem;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 13, 28, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

.logo {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.logo span {
  color: #ff0000;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #4ea8ff;
}

.btn-nav {
  background: linear-gradient(135deg, #4ea8ff, #2f8df5);
  padding: 10px 18px;
  border-radius: 10px;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(78, 168, 255, 0.18);
}

.btn-nav:hover {
  background: linear-gradient(135deg, #5ab0ff, #318ef0);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* BANNER SUPERIOR */
.hero-banner {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-banner-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* HERO */
.hero {
  padding: 72px 0 92px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: center;
}

.tag {
  display: inline-block;
  background: rgba(78, 168, 255, 0.15);
  color: #72bbff;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid rgba(78, 168, 255, 0.16);
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  font-weight: 800;
  max-width: 680px;
}

.hero-text h1 span {
  color: #69b9ff;
}

.hero-text p {
  color: #c8d2eb;
  margin-bottom: 24px;
  font-size: 1.04rem;
  max-width: 680px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce7ff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner-card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-banner-simple {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.96rem;
}

.btn.primary {
  background: linear-gradient(135deg, #4ea8ff, #2f8df5);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(78, 168, 255, 0.18);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #5ab0ff, #318ef0);
  transform: translateY(-2px);
}

.btn.secondary {
  border: 1px solid rgba(78, 168, 255, 0.5);
  color: #78bfff;
  background: transparent;
}

.btn.secondary:hover {
  background: rgba(78, 168, 255, 0.08);
  transform: translateY(-2px);
}

/* GRIDS */
.simple-grid {
  display: grid;
  gap: 24px;
}

.simple-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
}

.simple-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

/* CARDS */
.simple-card {
  background: linear-gradient(180deg, #121a33, #10182f);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.simple-card:hover {
  transform: translateY(-8px);
  border-color: rgba(78, 168, 255, 0.5);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.simple-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.simple-card p {
  color: #c8d2eb;
  margin-bottom: 10px;
}

.simple-card strong {
  color: #ffffff;
}

/* PRICES */
.price-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(78, 168, 255, 0.14);
  border: 1px solid rgba(78, 168, 255, 0.18);
  color: #7bc3ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.package-label {
  color: #69b9ff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.package-price span {
  font-size: 0.95rem;
  color: #9fb1d8;
  font-weight: 600;
  margin-left: 4px;
}

.package-simple .btn {
  margin-top: 10px;
}

.featured-card {
  border-color: #4ea8ff;
  box-shadow: 0 18px 34px rgba(78, 168, 255, 0.14);
  transform: translateY(-4px);
}

/* LISTS */
.simple-list {
  list-style: none;
  margin-top: 14px;
}

.simple-list li {
  color: #d6def5;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.simple-list li::before {
  content: "•";
  color: #4ea8ff;
  position: absolute;
  left: 0;
}

/* STATS */
.stats-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-box {
  background: linear-gradient(180deg, #121a33, #10182f);
  padding: 30px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.stat-box h3 {
  font-size: 2rem;
  color: #69b9ff;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-box p {
  color: #c8d2eb;
}

/* CONTACT */
.contact-cta {
  text-align: center;
  margin-top: 34px;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #060a14, #0a1020);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  align-items: start;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-logo {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.footer-text {
  color: #b8c1d9;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b8c1d9;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #4ea8ff;
  padding-left: 4px;
}

.footer-contact {
  color: #b8c1d9;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  border-color: rgba(78, 168, 255, 0.45);
  background: rgba(78, 168, 255, 0.12);
  color: #4ea8ff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 24px 0;
  margin-top: 42px;
  color: #8ea0c8;
  font-size: 0.94rem;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  z-index: 2000;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content,
  .simple-grid.two-cols,
  .simple-grid.three-cols,
  .stats-card {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.6rem;
  }

  .hero-banner-card {
    max-width: 100%;
  }

  .hero-banner-simple {
    height: 340px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 75px;
    right: 0;
    background: #121a33;
    flex-direction: column;
    width: 260px;
    padding: 20px;
    border-radius: 12px;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 54px 0 70px;
  }

  .hero-text h1 {
    font-size: 2.05rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .hero-banner-card,
  .simple-card {
    padding: 22px 18px;
  }

  .hero-banner-simple {
    height: 260px;
  }

  .package-price {
    font-size: 1.6rem;
  }

  .hero-badges span {
    font-size: 0.84rem;
  }

  .footer {
    padding-top: 48px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-text {
    max-width: 100%;
  }

  .social-icons {
    margin-top: 14px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 1.5rem;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .nav {
    padding: 14px 0;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.96rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-banner-simple {
    height: 220px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .simple-card {
    padding: 20px 16px;
  }

  .stat-box {
    padding: 24px 16px;
  }

  .stat-box h3 {
    font-size: 1.7rem;
  }
}
/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.process-card {
  position: relative;
  background: linear-gradient(180deg, #121a33, #10182f);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px 22px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(78, 168, 255, 0.45);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.process-number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.04em;
}

.process-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(78, 168, 255, 0.12);
  border: 1px solid rgba(78, 168, 255, 0.18);
  color: #69b9ff;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 1.14rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #ffffff;
}

.process-card p {
  color: #c8d2eb;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card {
    padding: 26px 20px;
  }
}