/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.main-content {
  background-color: transparent;  /* Más transparente */
  backdrop-filter: blur(6px);
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: transparent;
  color: #ffffff;
  line-height: 1.6;
}

/* Fondo animado global */
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, #0a0a0a, #141e30);
}

body > *:not(#tsparticles) {
  position: relative;
  z-index: 1;
}

/* Secciones generales */
section {
  padding: 60px 20px;
  background-color: transparent;
  backdrop-filter: blur(8px);
  text-align: center;
  color: #fff;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffcc00;
}

section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #ccc;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
  background-color: #ffe066;
  transform: scale(1.05);
}

/* Tarjetas */
.beneficios-lista,
.pasos,
.resumen-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.beneficio,
.paso,
.resumen-col,
.beneficios-socio li {
  background-color: rgba(28, 28, 28, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  color: #ccc;
  text-align: left;
}

.beneficio:hover,
.paso:hover,
.resumen-col:hover {
  transform: translateY(-8px);
}

.beneficio h3,
.paso h3,
.resumen-col h3 {
  color: #ffcc00;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Centramos sección de texto libre */
.ofrecemos {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ofrecemos p {
  max-width: 700px;
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

/* Contacto */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

button[type="submit"] {
  cursor: pointer;
}

/* Footer */
footer {
  position: relative;
  z-index: 1;
  background-color: rgba(17, 17, 17, 0.15);
  backdrop-filter: blur(6px);
  text-align: center;
  padding: 20px;
  color: #ccc;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .beneficios-lista,
  .pasos,
  .resumen-grid {
    flex-direction: column;
    align-items: center;
  }

  .resumen-col {
    width: 90%;
  }
}
.dual-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 60px 20px;
  background-color: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.text-column {
  flex: 1 1 55%;
}

.image-column {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;  /* <-- Esto apila verticalmente */
  justify-content: flex-start;
  align-items: center;
  gap: 10px; /* Espacio entre imágenes */
}

.image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Tarjeta individual */
.card-feature {
  margin-bottom: 25px;
  padding: 20px;
  background-color: rgba(28, 28, 28, 0.9);
  border-left: 5px solid #ffc107;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.card-feature h3 {
  color: #ffc107;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .dual-column {
    flex-direction: column;
    padding: 10px;
  }

  .image-column, .text-column {
    flex: 1 1 100%;
  }
}
.image-column img:last-child {
  margin-bottom: 0;
}
.image-card {
  background-color: rgba(28, 28, 28, 0.9);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: center;
  max-width: 100%;
}

.image-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.image-card p {
  color: #ccc;
  font-size: 0.95rem;
}
.video-wrapper {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===== Estilos para Contrato VIP ===== */
.contract-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px 30px;
  background-color: rgba(28, 28, 28, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  text-align: left;
}

.contract-container h2 {
  color: #ffcc00;
  text-align: center;
  margin-bottom: 25px;
}

.contract-container p, 
.contract-container li {
  color: #ccc;
  line-height: 1.6;
}

.contract-container label {
  font-weight: bold;
  color: #ffcc00;
}

.contract-container input,
.contract-container select,
.contract-container textarea {
  width: 100%;
  margin: 8px 0 20px 0;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: rgba(40, 40, 40, 0.9);
  color: #fff;
  font-size: 1rem;
}

.contract-container input:focus,
.contract-container textarea:focus {
  outline: 2px solid #ffcc00;
}

.signature-pad {
  border: 2px dashed #ffcc00;
  background: rgba(10,10,10,0.7);
  border-radius: 8px;
  width: 100%;
  height: 200px;
  cursor: crosshair;
  margin-bottom: 20px;
}

.signature-actions {
  text-align: right;
  margin-top: 5px;
}

.signature-actions button {
  background-color: #ffcc00;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
}

.signature-actions button:hover {
  background-color: #ffe066;
}

/* Área de vista previa del PDF */
.pdf-preview {
  margin-top: 30px;
  border: 1px solid #ffcc00;
  padding: 15px;
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.8);
  color: #ccc;
}

/* Botones principales */
.action-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

.action-buttons .btn {
  flex: 1 1 auto;
  margin: 5px;
  text-align: center;
}

/* Mensaje de confirmación */
.confirmation-message {
  text-align: center;
  background-color: rgba(40, 40, 40, 0.9);
  color: #ffcc00;
  padding: 15px;
  border-radius: 10px;
  margin-top: 25px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}


