body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(to bottom, #f4f4f4, #e9e4dc);
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    min-height: 100vh; 
    margin: 0;
    text-align: center;
}

header {
    padding: 50px 25px 20px; /* Escalado al 125% */
}

header h1 {
    color: #1f4e6b;
    letter-spacing: 2.5px;
    font-size: 45px; /* Antes 36px */
    margin: 0;
}

header h1 span {
    font-weight: normal;
}

header p {
    color: #666;
    font-size: 20px; /* Antes 16px */
    margin-top: 10px;
}

header h1::after {
    content: "";
    width: 75px; 
    height: 4px; /* Un poco más gruesa */
    background-color: orange;
    display: block;
    margin: 15px auto 0;
}

header hr {
    display: none;
}

nav {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px 30px; 
    margin: 0 auto 35px auto;
    width: max-content;
    border: 3px solid #0e3d5a; /* Borde un poco más grueso para compensar el tamaño */
    border-radius: 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 20px; /* Antes 16px */
    margin: 0 18px;
    padding-bottom: 6px;
    display: inline-block;
    border-bottom: 3px solid transparent; /* Subrayado más grueso */
    transition: all 0.3s ease;
}

nav a:hover {
    color: #1f4e6b;
    border-bottom: 3px solid #1f4e6b;
}

nav a.active {
    font-weight: bold;
    color: #1f4e6b;
    border-bottom: 3px solid orange;
}

.formulario {
    width: 500px; /* Escalado desde 400px (el 125%) */
    margin: 25px auto 50px auto;
    background-color: white;
    padding: 45px; /* Más espacio para respirar */
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.formulario h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 28px; /* Antes 22px */
}

.formulario h3::after {
    content: "";
    width: 55px;
    height: 3px;
    background-color: orange;
    display: block;
    margin: 10px auto 0;
}

label,
.form-title {
    display: block;
    margin-top: 18px;
    font-size: 18px; /* Antes 14px */
    color: #555;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 15px; /* Inputs bien amplios */
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    background-color: #f7f7f7;
    font-size: 20px; /* Antes 16px */
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

textarea {
    resize: none;
    height: 150px; /* Textarea proporcionado al nuevo tamaño */
}

input:focus,
select:focus,
textarea:focus {
    border-color: #1f6f8b;
    background-color: white;
    outline: none;
}

.opciones {
    margin-top: 18px;
    font-size: 18px; /* Antes 14px */
}

.opciones input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    transform: scale(1.5); /* Checkbox ampliado para que no se vea enano */
}

.opciones a {
    float: right;
    text-decoration: none;
    color: #1f6f8b;
}

.opciones a:hover {
    text-decoration: underline;
}

.opciones::after {
    content: "";
    display: block;
    clear: both;
}

button {
    width: 100%;
    margin-top: 30px;
    padding: 18px;
    background: #0e3d5a;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 20px; /* Antes 16px */
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

button:hover {
    background: #145a7a;
}

footer {
    font-size: 18px; /* Antes 14px */
    color: #888;
    margin-top: 40px;
    padding-bottom: 40px;
}