*{
  margin:0;

  box-sizing:border-box;
  }
  
  body{
  font-family:'Segoe UI',sans-serif;
  background:#0f172a;
  color:white;
  }
  /* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #0f172a;
  color: white;
}

/* NAVBAR */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* MENU */
.menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.menu a:hover {
  color: #3b82f6;
}

/* BOTON HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 28px;

  user-select: none;
}

/* MÓVIL */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
    color: white;
  }

  .menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
  }

  .menu.active {
    max-height: 500px; /* Ajusta según cantidad de enlaces */
  }

  .menu li {
    width: 100%;
  }

  .menu li a {
    display: block;
    padding: 12px 0;
  }
}

  /* NAVBAR */
  
  header{
  position:fixed;
  width:100%;
  top:0;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(12px);
  z-index:1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    flex-wrap: wrap; /* permite que los elementos se muevan si no caben */
  }
  
  /* Estilos para pantallas pequeñas (móviles) */
  @media (max-width: 768px) {
    .navbar {
      padding: 12px 20px; /* menos espacio en los lados */
      flex-direction: column; /* los elementos se apilan verticalmente */
      align-items: flex-start; /* alineación más natural en móviles */
    }
  
    .navbar a, .navbar button {
      margin: 8px 0; /* separación entre elementos */
    }
  }
  
  .logo{
  font-size:22px;
  font-weight:bold;
  letter-spacing:2px;
  }
  
  .menu{
  display:flex;
  gap:25px;
  list-style:none;
  }
  
  .menu a{
  text-decoration:none;
  color:white;
  font-size:14px;
  transition:0.3s;
  }
  
  .menu a:hover{
  color:#3b82f6;
  }
  
  /* HERO */
  
  .hero{
  height:100vh;
  
  background:
  linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.85)),
  url("inicio.jpeg") center/cover;
  
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
  }
  
  .hero-content h1{
  font-size:60px;
  margin-bottom:20px;
  }
  
  .hero-content p{
  font-size:20px;
  opacity:0.9;
  margin-bottom:30px;
  }
  
  .hero-buttons{
  display:flex;
  gap:15px;
  justify-content:center;
  }
  
  .btn{
  background:#3b82f6;
  padding:14px 30px;
  border-radius:6px;
  text-decoration:none;
  color:white;
  font-weight:bold;
  transition:0.3s;
  }
  
  .btn:hover{
  transform:scale(1.05);
  background:#2563eb;
  }
  
  .btn-outline{
  border:2px solid white;
  padding:12px 28px;
  border-radius:6px;
  text-decoration:none;
  color:white;
  transition:0.3s;
  }
  
  .btn-outline:hover{
  background:white;
  color:black;
  }
  
  /* SERVICIOS */
  
  #servicios{
  padding:120px 20px;
  text-align:center;
  background:#020617;
  }
  
  .subtitle{
  opacity:0.8;
  margin-top:10px;
  }
  
  .services{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin-top:60px;
  }
  
  .service-card{
  background:#0f172a;
  padding:35px;
  width:260px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.4s;
  }
  
  .service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.5);
  }
  
  /* PLANES */
  
  #planes{
  padding:120px 20px;
  
  background:
  linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.9)),
  url("https://images.unsplash.com/photo-1498050108023-c5249f4df085");
  
  background-size:cover;
  text-align:center;
  }
  
  .pricing{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin-top:60px;
  }
  
  .price-card{
  background:rgba(255,255,255,0.05);
  padding:40px;
  width:280px;
  border-radius:14px;
  backdrop-filter:blur(8px);
  transition:0.4s;
  }
  
  .price-card:hover{
  transform:translateY(-10px);
  }
  
  .price-card ul{
  list-style:none;
  margin:20px 0;
  }
  
  .price-card li{
  margin:8px 0;
  }
  
  .price-card h4{
  font-size:28px;
  margin:15px 0;
  }
  
  .featured{
  transform:scale(1.08);
 
  }
  
  .badge{
  position:absolute;
  margin-top:-25px;

  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
  }
  
  /* SOBRE */
  
  #sobre{
  padding:120px 20px;
  text-align:center;
  background:#020617;
  }
  
  .about-container{
  max-width:700px;
  margin:auto;
  }
  
  .about-container p{
  margin-top:20px;
  line-height:1.7;
  opacity:0.9;
  }
  
  /* CONTACTO */
  
  #contacto{
  padding:120px 20px;
  background:url("contacto.jpeg") center/cover;
  }
  
  .contact-box{
  max-width:450px;
  margin:auto;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  padding:40px;
  border-radius:14px;
  text-align:center;
  }
  
  .contact-box input,
  .contact-box textarea{
  width:100%;
  padding:12px;
  margin-top:10px;
  border:none;
  border-radius:6px;
  }
  
  .contact-box button{
  margin-top:15px;
  background:#3b82f6;
  border:none;
  padding:12px;
  width:100%;
  color:white;
  border-radius:6px;
  cursor:pointer;
  }
  
  /* FOOTER */
  
  footer{
  text-align:center;
  padding:25px;
  background:black;
  font-size:14px;
  }
  
  /* WHATSAPP */
  
  .whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:white;
  padding:14px 20px;
  border-radius:40px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  }
  
  /* RESPONSIVE */
  
  @media (max-width:768px){
  
  .hero-content h1{
  font-size:40px;
  }
  
  .services{
  flex-direction:column;
  align-items:center;
  }
  
  .pricing{
  flex-direction:column;
  align-items:center;
  }
  
  }
  /* FAQ PREMIUM */

#faq{
  padding:120px 20px;
  background:#020617;
  }
  
  .faq-header{
  text-align:center;
  margin-bottom:70px;
  }
  
  .faq-header h2{
  font-size:40px;
  margin-bottom:10px;
  }
  
  .faq-header p{
  opacity:0.7;
  }
  
  /* CONTENEDOR */
  
  .faq-container{
  max-width:900px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
  }
  
  /* ITEM */
  
  .faq-item{
  
  background:rgba(255,255,255,0.05);
  
  backdrop-filter:blur(10px);
  
  border-radius:12px;
  
  border:1px solid rgba(255,255,255,0.08);
  
  transition:0.3s;
  }
  
  .faq-item:hover{
  border-color:#3b82f6;
  }
  
  /* PREGUNTA */
  
  .faq-question{
  
  width:100%;
  
  background:none;
  
  border:none;
  
  padding:22px;
  
  font-size:16px;
  
  color:white;
  
  display:flex;
  
  justify-content:space-between;
  
  align-items:center;
  
  cursor:pointer;
  }
  
  /* ICONO */
  
  .icon{
  
  width:30px;
  height:30px;
  
  display:flex;
  align-items:center;
  justify-content:center;
  
  border-radius:50%;
  
  background:#3b82f6;
  
  font-weight:bold;
  
  transition:0.3s;
  }
  
  /* RESPUESTA */
  
  .faq-answer{
  
  max-height:0;
  
  overflow:hidden;
  
  transition:max-height 0.45s ease;
  }
  
  .faq-answer p{
  
  padding:0 22px 22px 22px;
  
  opacity:0.85;
  
  line-height:1.6;
  }
  
  /* ACTIVO */
  
  .faq-item.active .faq-answer{
  max-height:200px;
  }
  
  .faq-item.active .icon{
  transform:rotate(45deg);
  background:#2563eb;
  }
  
  /* RESPONSIVE */
  
  @media (max-width:768px){
  
  .faq-header h2{
  font-size:30px;
  }
  
  }
  .process {
    padding: 80px 20px;
    background: #0f172a;
    color: white;
    text-align: center;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
  }
  
  .process-title {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .process-subtitle {
    color: #cbd5f5;
    margin-bottom: 50px;
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .step {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-8px);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    margin: auto;
    margin-bottom: 20px;
  }
  
  .step h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .step p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* responsive */
  
  @media (max-width: 900px) {
    .process-steps {
      grid-template-columns: 1fr;
    }
  }
  .monthly-plans{
    padding:80px 20px;
    background:#111827;
    color:white;
    text-align:center;
  }
  
  .monthly-title{
    font-size:36px;
    margin-bottom:10px;
  }
  
  .monthly-subtitle{
    color:#cbd5e1;
    margin-bottom:50px;
  }
  
  .monthly-plan{
    background:#1f2937;
    padding:35px;
    border-radius:12px;
    margin-bottom:30px;
    transition:0.3s;
  }
  
  .monthly-plan:hover{
    transform:translateY(-6px);
  }
  
  .monthly-price{
    font-size:42px;
    font-weight:bold;
    margin:20px 0;
  }
  
  .monthly-price span{
    font-size:16px;
    color:#94a3b8;
  }
  
  .monthly-plan ul{
    list-style:none;
    padding:0;
    margin-bottom:25px;
  }
  
  .monthly-plan li{
    margin:10px 0;
    color:#cbd5e1;
  }
  
  .btn-monthly{
    display:inline-block;
    padding:12px 25px;
    background:#3b82f6;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s;
  }
  
  .btn-monthly:hover{
    background:#2563eb;
  }
  
  .featured{
    
    transform:scale(1.03);
  }
  
  .monthly-note{
    margin-top:40px;
    color:#94a3b8;
    font-size:14px;
  }
  
  @media(max-width:900px){
    .monthly-plan{
      margin-bottom:20px;
    }
  }