/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f7fcff;
  color:#1e293b;
  overflow-x:hidden;
}

/* CONTAINER */

.container{
  width:min(1200px,90%);
  margin:auto;
}

/* HEADER */

.header{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo img{
  width:150px;
}

.menu{
  display:flex;
  gap:25px;
}

.menu a{
  text-decoration:none;
  color:#1e293b;
  font-weight:600;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:15px;
}

.lang-btn{
  border:none;
  background:#7c3aed;
  color:white;
  padding:10px 16px;
  border-radius:30px;
  cursor:pointer;
}

.hamburger{
  display:none;
  background:none;
  border:none;
  font-size:24px;
}

/* HERO */

.hero{
  padding:140px 0 100px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.badge{
  display:inline-block;
  background:#dff7ff;
  color:#0891b2;
  padding:12px 20px;
  border-radius:30px;
  margin-bottom:20px;
  font-weight:700;
}

.hero h1{
  font-size:64px;
  line-height:1.1;
}

.hero h1 span{
  color:#06b6d4;
}

.hero p{
  margin:25px 0;
  font-size:20px;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 28px;
  border-radius:18px;
  text-decoration:none;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary{
  background:linear-gradient(135deg,#06b6d4,#7c3aed);
  color:white;
}

.btn-secondary{
  border:2px solid #cbd5e1;
  color:#1e293b;
}

.hero-image img{
  width:100%;
  border-radius:35px;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* SECTIONS */

section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:48px;
  margin-bottom:15px;
}

.section-title p{
  color:#64748b;
  font-size:18px;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:35px;
}

.about-text h2{
  font-size:48px;
  margin-bottom:25px;
}

.about-text p{
  margin-bottom:20px;
}

.about-text ul{
  list-style:none;
}

.about-text li{
  margin-bottom:15px;
}

/* SERVICES */

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.service-card{
  background:white;
  padding:40px;
  border-radius:30px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card span{
  font-size:45px;
}

.service-card h3{
  margin-top:20px;
}

/* PLANS */

.plans-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.plan-card{
  background:white;
  padding:50px;
  border-radius:35px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.featured{
  background:linear-gradient(135deg,#06b6d4,#7c3aed);
  color:white;
}

.price{
  font-size:52px;
  font-weight:900;
  margin:25px 0;
}

/* GALLERY */

.gallery-grid{
  columns:3 250px;
  gap:20px;
}

.gallery-grid img{
  width:100%;
  margin-bottom:20px;
  border-radius:25px;
}

/* FAQ */

.faq-container{
  max-width:800px;
  margin:auto;
}

.faq-item{
  background:white;
  margin-bottom:20px;
  border-radius:20px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  padding:25px;
  border:none;
  background:none;
  text-align:left;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.faq-answer{
  padding:0 25px 25px;
  display:none;
}

/* CONTACT */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:18px;
  border-radius:18px;
  border:1px solid #cbd5e1;
}

.contact-form textarea{
  min-height:150px;
}

/* SOCIALS */

.socials{
  margin-top:25px;
  display:flex;
  gap:15px;
}

.socials a{
  width:50px;
  height:50px;
  background:#7c3aed;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-decoration:none;
}

/* FOOTER */

.footer{
  background:#0f172a;
  color:white;
  text-align:center;
  padding:40px 0;
}

/* WHATSAPP */

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25d366;
  color:white;
  padding:16px 22px;
  border-radius:50px;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  z-index:999;
  font-weight:700;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* ANIMATIONS */

.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:900px){

  .hero-grid,
  .about-grid,
  .plans-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:46px;
  }

  .section-title h2,
  .about-text h2{
    font-size:36px;
  }

  .menu{
    position:fixed;
    top:80px;
    right:-100%;
    background:white;
    width:250px;
    height:100vh;
    flex-direction:column;
    padding:40px;
    transition:0.3s;
  }

  .menu.active{
    right:0;
  }

  .hamburger{
    display:block;
  }

}