/* nse-profile.css - DISEÑO MINIMALISTA PARA PERFIL */

.nse-profile-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Noto Sans', system-ui, sans-serif;
    font-weight: 400;
    color: #2c3e50;
}

/* Mensajes */
.nse-profile-message {
    padding: 16px 20px;
    border-radius: 0;
    margin: 0 0 30px 0;
    font-weight: 500;
    border-left: 3px solid;
}

.nse-success {
    background: #e8f5e8;
    color: #2d5a27;
    border-left-color: #4caf50;
}

/* Contenedor principal */
.nse-visitor-profile,
.nse-visitor-creation {
    background: white;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

/* Cabecera */
.nse-profile-header,
.nse-creation-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.nse-profile-header h2,
.nse-creation-header h2 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #190061;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.nse-profile-header p,
.nse-creation-header p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #7f8c8d;
    margin: 0;
}

/* Información de acreditación */
.nse-accreditation-info {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 3px solid #190061;
}

.nse-accreditation-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #190061;
    margin: 0 0 12px 0;
}

.nse-accreditation-info p {
    margin: 6px 0;
    color: #2c3e50;
    font-weight: 400;
}

/* Secciones del formulario */
.nse-form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.nse-form-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #190061;
    margin: 0 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

/* Filas y grupos */
.nse-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

.nse-form-group {
    flex: 1;
    min-width: 280px;
}

.nse-form-group.nse-full-width {
    flex: 1 0 100%;
}

/* Etiquetas */
.nse-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.nse-form-group .required::after {
    content: " *";
    color: #e74c3c;
}

/* Campos de formulario */
.nse-form-group input,
.nse-form-group select,
.nse-form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #bdc3c7;
    background: transparent;
    font-size: 1rem;
    font-family: 'Noto Sans', system-ui, sans-serif;
    color: #2c3e50;
    transition: all 0.3s ease;
    outline: none;
}

.nse-form-group input:focus,
.nse-form-group select:focus,
.nse-form-group textarea:focus {
    border-bottom-color: #190061;
    background: #f8f9fa;
    padding-left: 12px;
    padding-right: 12px;
}

.nse-form-group textarea {
    resize: vertical;
    min-height: 80px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    padding: 12px;
}

.nse-form-group textarea:focus {
    border-color: #190061;
    background: #f8f9fa;
}

.nse-form-group select {
    background: white;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    padding: 12px;
}

.nse-form-group select:focus {
    border-color: #190061;
    background: #f8f9fa;
}

/* Acciones del formulario */
.nse-form-actions {
    padding: 40px 0 20px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
    margin-top: 30px;
}

/* Botones */
/* Botones perfil visitante */
.nse-creation-actions .nse-profile-btn {
  display: inline-block;
  min-width: 220px;
  padding: 12px 24px;
  margin: 0 8px;
  text-align: center;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 200;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nse-creation-actions .nse-profile-btn:hover {
  background-color: #0a184d !important; /* azul marino */
  border-color: #0a184d !important;
  color: #fff !important;
}

.nse-btn-primary,
.nse-btn-secondary {
  /* se igualan estilos: */
  background-color: #fff !important;
  border: 1px solid #000 !important;
  color: #000 !important;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 200;
}


/* Página de creación */
.nse-creation-content {
    padding: 40px 20px;
    text-align: center;
}

.nse-creation-message {
    margin-bottom: 30px;
}

.nse-creation-message p {
    margin: 10px 0;
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

.nse-creation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .nse-profile-wrapper {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .nse-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .nse-form-group {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .nse-form-actions {
        padding: 30px 0 15px 0;
    }
    
    .nse-profile-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .nse-creation-actions {
        flex-direction: column;
    }
    
    .nse-creation-actions .nse-profile-btn {
        width: 100%;
    }
    
    .nse-profile-header h2,
    .nse-creation-header h2 {
        font-size: 1.5rem;
    }
}