#intro {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.img-left {
  width: 180px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.img-right {
  width: 80px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.img-left {
  left: -200px;
  animation: entradaIzquierda 1.5s cubic-bezier(.68,-0.55,.27,1.55) forwards;
}

.img-right {
  right: -200px;
  animation: entradaDerecha 1.5s cubic-bezier(.68,-0.55,.27,1.55) forwards;
}

.texto-intro {
  margin-top: 80px;
  font-size: 22px;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  animation: aparecerTexto 1s ease-in-out 1s forwards;
  margin-left: 5%;
}

@keyframes entradaIzquierda {
  0% { left: -200px; }
  80% { left: 45%; }
  100% { left: 50%; }
}

@keyframes entradaDerecha {
  0% { right: -200px; }
  80% { right: 45%; }
  100% { right: 50%; }
}

@keyframes aparecerTexto {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade out después de un tiempo */
#intro.fade-out {
  animation: salir 1s ease forwards;
}

@keyframes salir {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


.boton-enviar {
  background-color: #73ecf8;
  color: white;
  padding: 12px 30px;
  width: 100%; /* Esto lo hace largo, puedes usar un valor fijo como 300px si prefieres */
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color:black;
}

.boton-enviar:hover {
  background-color: #06bcce;
  color: black;
}

/*///////////////////////////////////////////////////*/
/*////////// I N S C R I P  F O R M  A///////////////*/
/*///////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////*/


/* =====================
   RESET BÁSICO
===================== */
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #f4f6f8;
  color: #333;
}

/* =====================
   LOGO / IMAGEN
===================== */
body img {
  max-width: 100px;
  margin: 20px auto;
  display: block;
  border-radius: 100%;
}

/* =====================
   CONTENEDOR PRINCIPAL
===================== */
.container {
  background: #fff;
  width: 95%;
  max-width: 850px;
  margin: 0 auto 40px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.container h1 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.container hr {
  border: none;
  height: 1px;
  background: #ddd;
  margin: 15px 0;
}

.description {
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

/* =====================
   TABLAS → FORMULARIO
===================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

td {
  padding: 6px;
  vertical-align: top;
  font-size: 0.9rem;
}

/* etiquetas */
td:first-child {
  width: 35%;
  font-weight: bold;
}

/* ===== BOTONES AGREGAR ===== */
.btn-agregar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 8px 16px;
  margin: 8px 0;

  font-size: 14px;
  font-weight: 600;
  cursor: pointer;

  border-radius: 8px;
  border: 2px dashed #1e3a8a;
  color: #1e3a8a;
  background-color: #f8fafc;

  transition: all 0.25s ease;
  user-select: none;
}

/* Ocultamos el checkbox real */
.btn-agregar input[type="checkbox"] {
  display: none;
}

/* Hover */
.btn-agregar:hover {
  background-color: #1e3a8a;
  color: #fff;
}

/* Activo (cuando está marcado) */
.btn-agregar input[type="checkbox"]:checked + span,
.btn-agregar input[type="checkbox"]:checked {
  background-color: #1e3a8a;
  color: #fff;
  border-style: solid;
}

/* Efecto visual cuando está activo */
.btn-agregar:has(input:checked) {
  background-color: #1e3a8a;
  color: #fff;
  border-style: solid;
}

/* Responsive */
@media (max-width: 480px) {
  .btn-agregar {
    width: 100%;
    justify-content: center;
  }
}


/* =====================
   INPUTS (NO TEL)
===================== */
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 9px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
}

/* =====================
   TELÉFONO (intl-tel-input)
   ⚠️ NO romper la librería
===================== */
.iti {
  width: 100%;
}

.iti input {
  width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
}

/* =====================
   RADIO BUTTONS
===================== */
label {
  font-size: 0.9rem;
  cursor: pointer;
}

input[type="radio"] {
  margin-right: 5px;
}

/* =====================
   BOTÓN ENVIAR
===================== */
.boton-enviar {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2c7be5;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background .3s;
}

.boton-enviar:hover {
  background: #1a68d1;
}

/* =====================
   MODAL
===================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  width: 95%;
  max-width: 500px;
  padding: 20px;
  border-radius: 10px;
  animation: fadeIn .3s ease;
}

.modal-content h3 {
  text-align: center;
  margin-top: 0;
}

#resumenDatos p {
  font-size: 0.9rem;
  margin: 4px 0;
}

/* =====================
   BOTONES MODAL
===================== */
.modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-cancelar,
.btn-confirmar {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.btn-cancelar {
  background: #ccc;
}

.btn-confirmar {
  background: #28a745;
  color: #fff;
}

/* =====================
   ANIMACIÓN
===================== */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 600px) {

  td:first-child {
    width: 100%;
    display: block;
  }

  td {
    display: block;
    width: 100%;
  }

  table tr {
    margin-bottom: 10px;
    display: block;
  }

  .container h1 {
    font-size: 1.3rem;
  }
}
/*///////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////*/
/*/////// E V A N G E L I S M O   F O R M ///////////*/
/*///////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////*/

/* Variables de Color */
:root {
    --evangelism-primary: #17F9FF;
    --evangelism-primary-hover: #00d4db;
    --evangelism-bg: #121824;
    --evangelism-card-bg: #1e293b;
    --evangelism-text: #ffffff;
    --evangelism-text-secondary: #ffffff;
    --evangelism-border: #334155;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.evangelism-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffff;
    color: var(--evangelism-text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.evangelism-container {
    background-color: var(--evangelism-card-bg);
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--evangelism-border);
}

.evangelism-logo {
    display: block;
    max-width: 120px;
    margin: 0 auto 20px;
    height: auto;
}

.evangelism-title {
    color: var(--evangelism-primary);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(23, 249, 255, 0.2);
}

.evangelism-quote {
    background: rgba(23, 249, 255, 0.05);
    border-left: 4px solid var(--evangelism-primary);
    padding: 12px 15px;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--evangelism-text-secondary);
    border-radius: 0 8px 8px 0;
}

.evangelism-info {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid var(--evangelism-border);
}

.evangelism-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.evangelism-info p:last-child {
    margin-bottom: 0;
}

/* Formularios e Inputs */
.evangelism-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.evangelism-field {
    display: flex;
    flex-direction: column;
}

.evangelism-label {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--evangelism-primary);
}

.evangelism-input,
.evangelism-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--evangelism-border);
    border-radius: 6px;
    background-color: #0f172a;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.evangelism-input:focus,
.evangelism-select:focus {
    outline: none;
    border-color: var(--evangelism-primary);
    box-shadow: 0 0 8px rgba(23, 249, 255, 0.4);
}

/* Respuesta Ajax */
.evangelism-ajax-res {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
}

/* ==========================================
   Nuevos estilos: Checkbox de privacidad y Botón
   ========================================== */

/* Estilos para el Checkbox y su etiqueta */
.evangelism-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--evangelism-text-secondary);
    cursor: pointer;
    line-height: 1.4;
}

.evangelism-checkbox {
    accent-color: var(--evangelism-primary);
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.evangelism-privacy-check span {
    user-select: none;
}

/* Estilos para el Botón de Envío */
.evangelism-btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    color: #0f172a;
    background-color: var(--evangelism-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(23, 249, 255, 0.3);
    margin-top: 10px;
}

.evangelism-btn-submit:hover:not(:disabled) {
    background-color: var(--evangelism-primary-hover);
    box-shadow: 0 6px 18px rgba(23, 249, 255, 0.5);
    transform: translateY(-1px);
}

.evangelism-btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

/* Estado Deshabilitado (disabled) */
.evangelism-btn-submit:disabled {
    background-color: #334155;
    color: #64748b;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

/* ==========================================
   Corrección visual para intlTelInput
   ========================================== */

/* 1. Ajuste del contenedor principal de intlTelInput */
.iti {
    width: 100%;
    color: #333333; /* Color oscuro para el texto dentro del menú desplegable */
}

/* 2. Resetear margen/padding de la lista desplegable */
.iti__country-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
}

/* 3. Alinear correctamente las filas de banderas y textos */
.iti__country {
    display: flex !important;
    align-items: center !important;
    padding: 8px 10px !important;
    gap: 8px !important;
    font-size: 0.9rem !important;
}

.iti__country-name {
    color: #1e293b !important;
    margin-right: 6px !important;
}

.iti__dial-code {
    color: #64748b !important;
}

/* 4. Asegurar alineación del ícono de la bandera */
.iti__flag-container {
    padding: 1px !important;
}

.iti__selected-flag {
    padding: 0 6px 0 8px !important;
    border-radius: 6px 0 0 6px !important;
}

/* Media Query para pantallas muy pequeñas */
@media (max-width: 480px) {
    .evangelism-container {
        padding: 20px 15px;
    }

    .evangelism-title {
        font-size: 1.4rem;
    }
}

/*///////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////*/


