* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.img-full {
    width: 100%;
    height: auto;
    display: block;
}

.notificacion {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notificacion-saliendo {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideOut {
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.notificacion-contenido {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 10px;
}

.notificacion-icono {
    font-size: 20px;
    flex-shrink: 0;
}

.notificacion-mensaje {
    flex: 1;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.notificacion-cerrar {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notificacion-error {
    border-left: 4px solid #dc2626;
}

.notificacion-success {
    border-left: 4px solid #16a34a;
}

.notificacion-info {
    border-left: 4px solid #2563eb;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-contenido {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 450px;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-icono {
    font-size: 28px;
}

.modal-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #1B4332;
    margin: 0;
}

.modal-body {
    padding: 20px;
}

.modal-body p {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    flex-direction: column;
}

.btn-modal {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-cancelar {
    background-color: #f3f4f6;
    color: #6b7280;
}

.btn-confirmar {
    background-color: #dc2626;
    color: #ffffff;
}

.main-header {
    background-color: #1B4332;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px;
    width: auto;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link:hover {
    color: #7ED957;
}

.dropdown .arrow {
    font-size: 12px;
    margin-left: 6px;
}

.btn-support {
    background-color: #ffffff;
    color: #1B4332;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 65px;
    padding: 60px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1B4332 0%, #2D5A45 50%, #1B4332 100%);
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(126, 217, 87, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 30px;
}

.title-regular {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    display: block;
    margin-bottom: 15px;
}

.highlight {
    background-color: #7ED957;
    color: #1B4332;
    padding: 10px 25px;
    display: inline-block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 4px 20px rgba(126, 217, 87, 0.4);
    text-transform: uppercase;
    border-radius: 5px;
}

.btn-primary {
    display: inline-block;
    background-color: #7ED957;
    color: #1B4332;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
}

.info-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.info-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-title {
    font-size: 26px;
    font-weight: 900;
    color: #1B4332;
    line-height: 1.2;
    margin: 0;
}

.info-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.divider {
    width: 50px;
    height: 4px;
    background-color: #7ED957;
}

.info-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    text-align: center;
    max-width: 500px;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #1B4332;
    padding: 14px 35px;
    border: 2px solid #1B4332;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.steps-section {
    background-color: #e9ecef;
    padding: 50px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
}

.step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.card-icon {
    width: 90px;
    height: 90px;
    background-color: #1B4332;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 45px;
    height: 45px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 18px;
}

.btn-card {
    display: inline-block;
    background-color: transparent;
    color: #1B4332;
    padding: 12px 30px;
    border: 2px solid #1B4332;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.form-section {
    background-color: #1B4332;
    padding: 50px 0;
}

.form-wrapper {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #7ED957;
}

.form-subtitle {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    margin: 20px 0 30px;
    opacity: 0.9;
}

.registration-form {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1B4332;
    margin-bottom: 8px;
}

.form-select,
.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #7ED957;
    box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.btn-submit {
    background-color: #6c757d;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
}

.btn-submit:hover:not(:disabled) {
    background-color: #5a6268;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.electric-section {
    background-color: #f0f4f3;
    padding: 50px 0;
    overflow: hidden;
}

.electric-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.electric-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.electric-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.electric-title {
    font-size: 24px;
    font-weight: 300;
    color: #1B4332;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.electric-subtitle {
    font-weight: 900;
    display: block;
    margin-top: 5px;
}

.electric-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.green-divider {
    width: 50px;
    height: 4px;
    background-color: #7ED957;
}

.electric-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    text-align: center;
    max-width: 500px;
}

.btn-exceptions {
    display: inline-block;
    background-color: transparent;
    color: #1B4332;
    padding: 14px 35px;
    border: 2px solid #1B4332;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1B4332;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        flex-direction: column;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .nav-link {
        padding: 10px 0;
        font-size: 16px;
    }

    .btn-support {
        margin-top: 20px;
    }
}

.registro-section {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    min-height: 100vh;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.progress-bar::-webkit-scrollbar {
    height: 3px;
}

.progress-bar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.progress-bar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 70px;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #d1d5db;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background-color: #1B4332;
    color: #ffffff;
}

.step-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
}

.progress-step.active .step-label {
    color: #1B4332;
    font-weight: 700;
}

.progress-line {
    flex: 0 0 30px;
    height: 2px;
    background-color: #d1d5db;
    margin-bottom: 20px;
}

.progress-line.completed {
    background-color: #1B4332;
}

.datos-basicos-form {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.form-row {
    margin-bottom: 20px;
}

.required {
    color: #dc2626;
    margin-left: 3px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1B4332;
}

.checkbox-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.btn-siguiente {
    background-color: #7ED957;
    color: #1B4332;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.solicitud-container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.placas-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 20px;
    text-decoration: underline;
}

.placa-individual-section,
.placa-archivo-section {
    border: none;
    padding: 0;
}

.placa-individual-section {
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.btn-agregar-placa {
    background-color: #1B4332;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
}

.terminos-checkbox {
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.terminos-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #1B4332;
    flex-shrink: 0;
}

.terminos-label {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    cursor: pointer;
}

.link-terminos {
    color: #1B4332;
    text-decoration: underline;
    font-weight: 600;
}

.archivo-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    background-color: #f9fafb;
}

.archivo-info {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.btn-seleccionar-archivo {
    background-color: #ffffff;
    color: #1B4332;
    padding: 12px 30px;
    border: 2px solid #1B4332;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.link-plantilla {
    color: #1B4332;
    text-decoration: underline;
    font-size: 13px;
    font-weight: 600;
}

.form-navigation {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.btn-anterior {
    background-color: #ffffff;
    color: #1B4332;
    padding: 14px 35px;
    border: 2px solid #1B4332;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    order: 2;
}

.btn-siguiente-solicitud {
    background-color: #7ED957;
    color: #1B4332;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    order: 1;
}

.btn-siguiente-solicitud:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#tabla-placas-container {
    margin-top: 30px;
    margin-bottom: 25px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabla-placas {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tabla-placas thead {
    background-color: #f3f4f6;
}

.tabla-placas th {
    padding: 12px 10px;
    text-align: left;
    font-weight: 700;
    color: #1B4332;
    font-size: 13px;
    border-bottom: 2px solid #e5e7eb;
}

.tabla-placas td {
    padding: 12px 10px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
    font-size: 13px;
}

.fechas-column {
    min-width: 180px;
}

.fechas-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fecha-grupo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fecha-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

.input-fecha {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
}

.input-fecha:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.input-fecha-fin {
    background-color: #f9fafb;
}

.select-duracion {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    background-color: #ffffff;
}

.btn-remover {
    background-color: #dc2626;
    color: #ffffff;
    padding: 6px 15px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.tabla-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
}

.pagination-select {
    padding: 6px 25px 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    margin-left: 8px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pagination {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

#pagination-info {
    font-size: 14px;
    color: #6b7280;
}

.confirmacion-container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.tabla-confirmacion {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tabla-confirmacion thead {
    background-color: #f3f4f6;
}

.tabla-confirmacion th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: #1B4332;
    font-size: 14px;
    border-bottom: 2px solid #e5e7eb;
}

.tabla-confirmacion td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
    font-size: 14px;
}

.tabla-confirmacion input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1B4332;
}

.compensacion-social {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #f9fafb;
}

.compensacion-pregunta {
    font-size: 16px;
    font-weight: 600;
    color: #1B4332;
    margin-bottom: 20px;
}

.compensacion-botones {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-compensacion {
    padding: 12px 30px;
    border: 2px solid #1B4332;
    background-color: #ffffff;
    color: #1B4332;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.btn-compensacion.active {
    background-color: #1B4332;
    color: #ffffff;
}

.total-pagar {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f3f4f6;
    border-radius: 10px;
}

.total-label {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 10px;
}

.total-valor {
    font-size: 28px;
    font-weight: 900;
    color: #1B4332;
    margin: 0;
}

.pse-container {
    text-align: center;
    margin-bottom: 30px;
}

.pse-logo {
    max-width: 150px;
    height: auto;
}

.confirmacion-navegacion {
    text-align: center;
}

.btn-anterior-confirmacion {
    background-color: #ffffff;
    color: #1B4332;
    padding: 14px 40px;
    border: 2px solid #1B4332;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 480px) {
    .title-regular {
        font-size: 28px;
    }

    .highlight {
        font-size: 32px;
    }

    .info-title {
        font-size: 30px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
    }
}

@media (min-width: 769px) {
    .hero {
        min-height: 50vh;
    }

    .title-regular {
        font-size: 32px;
    }

    .highlight {
        font-size: 38px;
        padding: 12px 30px;
    }

    .info-content {
        flex-direction: row;
        text-align: left;
        gap: 50px;
    }

    .info-right {
        align-items: flex-start;
    }

    .info-text {
        text-align: left;
    }

    .electric-content {
        flex-direction: row;
        text-align: left;
        gap: 50px;
    }

    .electric-right {
        align-items: flex-start;
    }

    .electric-text {
        text-align: left;
    }

    .modal-footer {
        flex-direction: row;
        justify-content: flex-end;
    }

    .btn-modal {
        width: auto;
        padding: 12px 30px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 700px;
    }

    .placas-grid {
        flex-direction: row;
        gap: 50px;
    }

    .placa-individual-section {
        flex: 1;
        border-right: 1px solid #e5e7eb;
        padding-right: 30px;
        padding-bottom: 0;
        border-bottom: none;
    }

    .placa-archivo-section {
        flex: 1;
        padding-left: 30px;
    }

    .form-navigation {
        flex-direction: row;
        justify-content: space-between;
    }

    .btn-anterior,
    .btn-siguiente-solicitud {
        width: auto;
        order: 0;
        padding: 15px 50px;
    }

    .compensacion-botones {
        flex-direction: row;
        justify-content: center;
    }

    .btn-compensacion {
        width: auto;
        padding: 12px 40px;
    }

    .tabla-pagination {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Modal PSE */
.pse-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pse-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pse-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.pse-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 8px;
}

.pse-modal-body {
    padding: 24px;
}

.pse-form-group {
    margin-bottom: 20px;
}

.pse-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.pse-radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.pse-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.pse-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.pse-input,
.pse-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    transition: all 0.2s;
}

.pse-input:focus,
.pse-select:focus {
    outline: none;
    border-color: #1B4332;
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.pse-select {
    color: #6b7280;
    cursor: pointer;
}

.pse-select option:first-child {
    color: #9ca3af;
}

.pse-select option:not(:first-child) {
    color: #374151;
}

.pse-edit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: #1B4332;
    margin-left: 8px;
}

.pse-input:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.pse-btn-pagar {
    width: 100%;
    padding: 14px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.pse-btn-pagar:hover {
    background-color: #00acc1;
}

.pse-btn-pagar:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.pse-powered-by {
    text-align: center;
    padding: 16px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
}

.pse-kushki-logo {
    width: 16px;
    height: 16px;
    background-color: #1B4332;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
}

.pse-footer-text {
    padding: 0 24px 24px;
    text-align: center;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.5;
}

.pse-footer-link {
    color: #1B4332;
    text-decoration: underline;
}

.pse-logo {
    max-width: 150px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.pse-logo:hover {
    transform: scale(1.05);
}

/* Modal de Carga */
.loading-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.loading-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1B4332;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1B4332;
    margin-bottom: 10px;
}

.loading-modal-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}