body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0b0c10;
  color: #c5c6c7;
  text-align: center;
}

/* ======== HEADER ======== */
header {
  background: linear-gradient(180deg, #0b0c10 0%, #1f2833 100%);
  padding: 80px 20px 60px 20px;
}
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 300px; /* Aumentamos el tamaño del logo */
  height: auto;
  filter: drop-shadow(0 0 25px rgba(102, 252, 241, 0.4));
  transition: transform 0.4s ease;
}

.logo:hover {
  transform: scale(1.08);
}

header h1 {
  font-size: 3rem;
  color: #66fcf1;
  margin: 15px 0 5px 0;
  letter-spacing: 2px;
}

header p {
  font-size: 1.2rem;
  color: #45a29e;
  margin: 0;
}

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

section h2 {
  color: #66fcf1;
  font-size: 2rem;
  margin-bottom: 40px;
}

/* ======== SOBRE NOSOTROS ======== */
.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
}

/* ======== SERVICIOS ======== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.service {
  background-color: #1f2833;
  border-radius: 12px;
  padding: 30px;
  width: 250px;
  box-shadow: 0 0 10px rgba(102, 252, 241, 0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(102, 252, 241, 0.3);
}

.service h3 {
  color: #66fcf1;
  margin-bottom: 10px;
}

/* ======== PLANES ======== */
.plan-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.plan {
  background-color: #1f2833;
  border-radius: 12px;
  padding: 30px;
  width: 280px;
  border: 1px solid #45a29e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(102, 252, 241, 0.3);
}

.plan h3 {
  color: #66fcf1;
}

.plan p {
  font-size: 0.95rem;
}

.plan .price {
  font-size: 1.5rem;
  color: #45a29e;
  margin-top: 15px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.plan ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #c5c6c7;
}

.plan span {
  font-size: 0.85rem;
  color: #45a29e;
}
.contact {
  background-color: transparent;
  padding: 60px 20px;
}

.contact h2 {
  color: #66fcf1;
}

.whatsapp-btn {
  background: linear-gradient(90deg, #45a29e, #66fcf1);
  color: #0b0c10;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: linear-gradient(90deg, #66fcf1, #45a29e);
  transform: scale(1.05);
}

/* ======== FOOTER ======== */
footer {
  background: #0b0c10;
  color: #45a29e;
  padding: 20px;
  border-top: 1px solid #1f2833;
}

footer a {
  color: #66fcf1;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }

  .service-list, .plan-list {
    flex-direction: column;
    align-items: center;
  }
}
