.vh-25 {
    min-height: 25vh !important;
}
.vh-50 {
    min-height: 50vh !important;
}
.vh-75 {
    min-height: 75vh !important;
}


.step {
    display: none;
}

.step.active {
    display: block;
}

.progress {
    height: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.1);
    overflow: hidden;
    position: relative;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    gap: 30px;
}

.logo-principal {
    flex: 0 0 auto;
    max-width: 150px;
    height: auto;
}

.header-banner {
    flex: 0 1 auto;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 10px;
}

.logo-escudo {
    flex: 0 0 auto;
    width: 90px;
    height: auto;
}

.header h1 {
    color: #dc3545;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.header p {
    color: #6c757d;
    font-size: 1.1em;
    margin-bottom: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-top: 4px solid #dc3545;
}

.form-container {
    padding: 40px;
}

.section-title {
    color: #dc3545;
    font-size: 1.3em;
    font-weight: 600;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #dc3545;
}

.section-title:first-of-type {
    margin-top: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .header {
        padding: 15px;
    }

    .header-banner {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo-principal {
        max-width: 120px;
    }

    .footer-logo-escudo {
        width: 70px;
    }
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.required {
    color: #dc3545;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #dc3545;
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

input:disabled,
select:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.submit-btn {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.status {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.info {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

#voucher-info {
    font-size: 13px;
    color: #6c757d;
    margin-top: 8px;
    font-style: italic;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #dc3545;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.1);
    border-top: 4px solid #dc3545;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo-principal {
    max-width: 150px;
    height: auto;
    flex-shrink: 0;
}

.footer-logo-escudo {
    width: 90px;
    height: auto;
    flex-shrink: 0;
}

.footer-info {
    flex: 1;
}

.footer h5 {
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.social-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

.footer p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

.brand-accent {
    background: linear-gradient(45deg, #dc3545, #c82333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}