/* Reset y estilos generales */
:root {
    --primary-color: #011A7D;
    --primary-hover: #1d4ed8;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --border-color: #e5e7eb;
    --bg-color: #f9fafb;
    --card-bg: #ffffff;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



.banner {
    max-width: 100%;
    
}

.banner img {
    max-height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;

}

.Navbar img:hover {
    transform: scale(1.02);
}

/* Contenido principal */
main {
    flex: 1;
    padding: 2.5rem 1rem;
    width: 100%;
}

.forms-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

/* Tarjetas de formulario */
.form-wrapper {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin: 1rem;
    flex: 1 1 45%;
    min-width: 300px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.form-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.from-box { 
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    text-align: center;
    letter-spacing: -0.5px;
}

/* Campos de formulario */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Estilos para layout en línea */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.d-flex .form-label {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 1rem;
    min-width: 200px;
    flex-shrink: 0;
}

.d-flex .form-control {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--card-bg);
    background-clip: padding-box;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-size: 10px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Tarjeta de guía */
.guia-card {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.guia-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}
.nota-guion {
    font-size: 0.75em; /* Hace el texto más pequeño */
    color: #6b7280; /* Un color más sutil */
    margin-left: 5px; /* Pequeño margen a la izquierda para separarlo del título */
    vertical-align: middle;
}

.guia-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Pie de página */
footer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #e2e8f0;
    padding: 1.5rem 1rem;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
    opacity: 0.9;
}

/* Efectos de hover y focus */
button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ajustes de accesibilidad */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
