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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #e8e7ef;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  position: sticky;
  top: 0;
  background: rgba(10,10,15,0.9);
  border-bottom: 1px solid #222;
}

.logo span {
  color: #ffb347;
}

nav a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
}

nav a:hover {
  color: white;
}

/* BOTONES */
.btn {
  background: white;
  color: black;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}

.btn:hover {
  background: #ffb347;
}

.btn-outline {
  background: transparent;
  border: 1px solid #555;
  color: white;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 45px;
}

.hero span {
  color: #ffb347;
}

.subtitle {
  margin-top: 15px;
  color: #aaa;
}

.hero-buttons {
  margin-top: 25px;
}

.stats {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* SECCIONES */
section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* CARD */
.card {
  background: #14141f;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #222;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #ffb347;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

/* PLANES */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.plan {
  background: #14141f;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #222;
  text-align: center;
}

.plan.featured {
  border: 2px solid #ffb347;
}

.price {
  font-size: 28px;
  margin: 15px 0;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
}
/* LOGO REDONDO LED */
.logo-hero{
  width:280px;
  height:280px;
  object-fit:cover;
  border-radius:50%;
  display:block;
  margin:0 auto 20px auto;

  box-shadow:
    0 0 10px #d4af37,
    0 0 25px #d4af37,
    0 0 45px rgba(212,175,55,0.7);
  border:2px solid #d4af37;
}

/* DORADO TITULOS */
.gold-text{
  background: linear-gradient(90deg,#d4af37,#fff3b0,#d4af37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight:700;
}

/* FAQ lindo */
.faq-item{
  padding:15px;
  margin-bottom:10px;
  border-radius:10px;
  background:rgba(255,255,255,0.03);
}

.faq-item h3{
  margin-bottom:5px;
}
.about-text{
  font-size:16px;
  line-height:1.7;
  margin-bottom:15px;
  color:#ddd;
}
/* PLANES RESPONSIVE */
.plans{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* cada plan */
.plan{
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}

/* lista limpia */
.plan ul{
  padding-left: 18px;
  line-height: 1.6;
}

/* destacado */
.plan.featured{
  border: 1px solid #d4af37;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

/* 📱 MOBILE */
@media (max-width: 768px){

  .plans{
    flex-direction: column;
    align-items: center;
  }

  .plan{
    width: 90%;
    max-width: 100%;
  }

}
