
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

.paquetes-section {
  background-color: #f7faff;
  padding: 60px 20px;
  text-align: center;
}

.paquetes-section .precio-anterior {
  text-decoration: line-through;
  color: #888;
  font-size: 0.7em;
  margin-right: 8px;
  display: block;
}


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

.paquete-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 320px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}

.paquete-card:hover {
  cursor: pointer;
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 119, 204, 0.2);
  border-color: #0077cc;
}

.paquete-card:hover h3 {
  color: #005fa3;
}

.paquete-card h3 {
  color: #0077cc;
  margin-bottom: 10px;
}

.precio {
  font-size: 1.8em;
  color: #222;
  font-weight: bold;
  margin-bottom: 15px;
}

.paquete-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.paquete-card ul li {
  padding: 6px 0;
  font-size: 1em;
  color: #444;
}

.paquete-card.destacado {
  border: 2px solid #0077cc;
  background-color: #e8f3ff;
}

.btn-contactar {
  display: inline-block;
  padding: 10px 18px;
  background-color: #075E54;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.btn-contactar:hover {
  background-color: #25D366;
}

@media (max-width: 768px) {
  .paquetes-container {
    flex-direction: column;
    align-items: center;
  }
}


section {
  padding: 60px 20px;
  text-align: center;
}

.servicios-section {
  background: #e9f1fc;
  padding: 60px 20px;
  text-align: center;
}

.servicios-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 30px auto 0;
  flex-wrap: wrap;
}

.servicio-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 25px;
  max-width: 400px;
  flex: 1 1 350px;
  font-size: 1.1em;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.servicio-card h3 {
  color: #0077cc;
  margin-bottom: 15px;
}

.servicio-card p,ul{
  text-align: left;
}

@media (max-width: 768px) {
  .servicios-container {
    flex-direction: column;
    gap: 20px;
  }
}

.info {
  max-width: 800px;
  margin: auto;
  font-size: 1.2em;
}
.highlight {
  color: #0077cc;
  font-weight: bold;
}
.examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.card img {
  width: 100%;
  display: block;
}
.card h3 {
  margin: 15px;
  font-size: 1.4em;
  color: #0077cc;
}
.card p {
  margin: 0 15px 20px;
  font-size: 1em;
}
.contact-section {
  background: #f0f8ff;
}
.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
}
.contact-form button {
  background: #0077cc;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #005fa3;
}
footer {
  background: #222;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
footer .social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.5em;
  transition: color 0.3s ease;
}
footer .social-icons a:hover {
  color: #0077cc;
}
@media (max-width: 768px) {
  .examples {
    flex-direction: column;
    align-items: center;
  }
}
