/* =========================================
   CONTACTO MODULE | STYLE.CSS
   ========================================= */

/* --- 1. CONFIGURACIÓN DEL WIZARD --- */
.form-wizard-container {
  max-width: 800px; 
  margin: 0 auto; 
  background: #050505; /* Fondo sólido oscuro para contraste */
  border: 1px solid #222; 
  padding: 40px; 
  border-radius: 16px;
  font-family: "Manrope", sans-serif !important;
}

.form-wizard-container h2, 
.form-wizard-container label, 
.form-wizard-container input,
.form-wizard-container textarea, 
.form-wizard-container select, 
.form-wizard-container button {
  font-family: "Manrope", sans-serif !important;
}

/* Animaciones */
.wizard-step { display: none; animation: fadeIn 0.4s ease; }
.wizard-step.active { display: block; }

.wizard-step h2 { 
  font-size: 1.8rem; 
  margin-bottom: 30px; 
  text-align: center; 
  color: #fff; 
  font-weight: 800; 
  letter-spacing: -1px; 
}

/* --- 2. INPUTS --- */
.form-group { margin-bottom: 25px; }
.form-group label { 
  display: block; 
  color: #aaa; 
  margin-bottom: 10px; 
  font-size: 0.95rem; 
  font-weight: 600; 
}

.form-group input, .form-group textarea {
  width: 100%; 
  background: #0a0a0a; 
  border: 1px solid #333; 
  color: #fff; 
  padding: 18px;
  border-radius: 8px; 
  outline: none; 
  transition: 0.3s; 
  font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus { 
  border-color: #fff; 
  background: #111; 
}

/* --- 3. GRID DE PLANES (FLAT BORDER -> NEON GLOW) --- */
.plans-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 20px; 
}

.plan-card {
  background: #0a0a0a; 
  padding: 30px 20px; 
  border-radius: 12px; 
  cursor: pointer; 
  transition: all 0.3s ease;
  text-align: center; 
  position: relative;
  overflow: hidden;
  
  /* BORDE SÓLIDO BASE (Grosor 2px para que se note el color plano) */
  border: 2px solid #333; /* Color por defecto si falla la clase */
}

.plan-header { 
  font-size: 0.8rem; 
  letter-spacing: 2px; 
  color: #888; 
  margin-bottom: 10px; 
  text-transform: uppercase; 
  font-weight: 700; 
}

.plan-price { 
  font-size: 2.2rem; 
  font-weight: 800; 
  color: #fff; 
  margin-bottom: 15px; 
  letter-spacing: -1px; 
  transition: color 0.3s;
}

.plan-card p { 
  font-size: 0.9rem; 
  color: #aaa; 
  line-height: 1.5; 
}

/* === MODIFICADORES DE COLOR === */

/* A) PLAN START (Azul) */
.plan-card.neon-blue {
    /* ESTADO REPOSO: Color Sólido (Mate) */
    border-color: #1e40af; /* Azul oscuro sólido */
}
.plan-card.neon-blue:hover, 
.plan-card.selected.neon-blue { 
    /* ESTADO ACTIVO: Color Brillante + Glow */
    border-color: #3b82f6; 
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.6); /* EL NEÓN */
    transform: translateY(-5px);
    background: #0f172a; /* Fondo tintado muy suave */
}
.plan-card.selected.neon-blue .plan-price { color: #3b82f6; }


/* B) PLAN GROW (Morado) */
.plan-card.neon-purple {
    /* ESTADO REPOSO: Color Sólido (Mate) */
    border-color: #6b21a8; /* Morado oscuro sólido */
}
.plan-card.neon-purple:hover, 
.plan-card.selected.neon-purple { 
    /* ESTADO ACTIVO */
    border-color: #a855f7; 
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.6); 
    transform: translateY(-5px); 
    background: #1e1b4b;
}
.plan-card.selected.neon-purple .plan-price { color: #a855f7; }


/* C) PLAN SCALE (Rojo/Naranja) */
.plan-card.neon-red {
    /* ESTADO REPOSO: Color Sólido (Mate) */
    border-color: #991b1b; /* Rojo oscuro sólido */
}
.plan-card.neon-red:hover, 
.plan-card.selected.neon-red { 
    /* ESTADO ACTIVO */
    border-color: #ef4444; 
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.6); 
    transform: translateY(-5px); 
    background: #2b0a0a;
}
.plan-card.selected.neon-red .plan-price { color: #ef4444; }


/* --- 4. RESUMEN Y BOTONES --- */
.summary-box { 
  background: #111; 
  padding: 25px; 
  border-radius: 12px; 
  margin-bottom: 25px; 
  border: 1px solid #333; 
}
.summary-box p { margin-bottom: 12px; color: #ccc; font-size: 1rem; }
.summary-box strong { color: #fff; font-weight: 700; }

.checkbox-legal { font-size: 0.8rem; color: #555; }
.checkbox-legal a { color: #888; text-decoration: underline; }

.btn-primary { 
  background: #fff; 
  color: #000; 
  padding: 16px 30px; 
  border-radius: 4px; 
  text-decoration: none; 
  font-weight: 800; 
  font-size: 0.9rem; 
  letter-spacing: 1px; 
  transition: transform 0.3s; 
  display: inline-block; 
  border: none; 
  cursor: pointer; 
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,255,255,0.2); }

.btn-secondary { 
  background: transparent; 
  border: 1px solid #666; 
  color: white; 
  padding: 10px 20px; 
  border-radius: 8px; 
  font-weight: 600; 
  text-decoration: none; 
  font-size: 0.9rem; 
  cursor: pointer;
}
.btn-secondary:hover { background: #222; border-color: white; }

/* --- 5. MINI INFO LEGAL --- */
.legal-mini-info { 
  background: #000; 
  border: 1px solid #333; 
  padding: 15px; 
  border-radius: 8px; 
  font-size: 0.65rem; 
  color: #777; 
  line-height: 1.4; 
}
.legal-mini-info p { 
  color: #fff; 
  margin-bottom: 8px; 
  font-weight: 700; 
  font-size: 0.7rem; 
  border-bottom: 1px solid #333; 
  padding-bottom: 5px; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}
.legal-mini-info ul { list-style: none; padding: 0; margin: 0; }
.legal-mini-info li { margin-bottom: 4px; }
.legal-mini-info strong { color: #aaa; }
.legal-mini-info a { color: var(--accent-blue, #3b82f6); text-decoration: none; }
.legal-mini-info a:hover { text-decoration: underline; }

@media (min-width: 1250px) {
  .form-wizard-container { position: relative; }
  .legal-mini-info { 
    position: absolute; 
    top: 0; 
    right: -260px; 
    width: 240px; 
    border-left: 2px solid var(--accent-blue, #3b82f6); 
  }
}
@media (max-width: 1249px) {
  .legal-mini-info { margin-top: 25px; border-top: 2px solid var(--accent-blue, #3b82f6); }
}
@media (max-width: 768px) {
    .container {
       
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        width: 100%;
    }

    .form-wizard-container {
       
        width: 100%;
        box-sizing: border-box;
        padding: 30px 20px; 
    }

  
    .form-group input, 
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- GLOBALES NECESARIOS --- */
.internal-hero {
    position: relative;
    padding: 120px 20px 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 10;
}
.label-box {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    font-family: "Syncopate", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-blue, #3b82f6);
    background: rgba(0,0,0,0.5);
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}
.internal-hero h1 {
    font-family: "Syncopate", sans-serif; 
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}
:root { --accent-blue: #3b82f6; }