/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;

}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: #7f2841;
    color: white;
    padding: 10px 20px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 100px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 10px;
}

.btn-yellow {
    background-color: #5a5c5c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
}

.header-icons a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
}

/* Contenedor principal */
main {
    max-width: 1050px;
    margin: 20px auto;

}

.container {
    background-color: #f8f9fa;
    border-radius: 5px;
}

h1 {
    padding: 15px;
    font-size: 30px;
    border-bottom: none;
    margin: 0;
    text-shadow:
        1px 1px 0px #e2e2e2,
        1px 1px 0px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    padding: 0;
}

/* Tabs */
.tabs-container {
    position: relative;
    padding: 15px 15px 0;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs {
    display: flex;
    margin-bottom: 0;
}

.tab {
    padding: 8px 15px;
    color: #333;
    margin-right: 5px;
    border-radius: 5px 5px 0 0;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-bottom: none;
    text-decoration: none;
    position: relative;
    font-size: 14px;
}
	.tabs .tab {
		cursor: pointer;
	}
.tab.active {
    font-weight: bold;
    background-color: #fff;
    border-bottom: 1px solid white;
    z-index: 1;
}

.tab:not(.active) {
    background-color: #e0e0e0;
}

.tab.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #e0e0e0;
    color: #999;
}

.tab.disabled:hover {
    background-color: #e0e0e0;
}

.privacy-button {
    position: relative;
    background-color: #7f2841;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.privacy-button i {
    margin-right: 5px;
}

/* Añadir línea debajo de las tabs */
.form-container {
    padding: 15px;
    position: relative;
}

.form-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
    margin-top: -1px;
}

/* Formulario */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

/* Captcha */
.captcha-container {
    display: flex;
    max-width: 300px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.captcha-checkbox {
    display: flex;
    align-items: center;
}

.captcha-checkbox input {
    margin-right: 10px;
}

.captcha-logo {
    display: flex;
    align-items: center;
}

.captcha-logo img {
    width: 30px;
    margin-right: 5px;
}

.captcha-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #666;
}

.btn-primary {
    background-color: #7f2841;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
}

/* Mensaje de certificado */
.certificate-message {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    border-top: none;
}

/* Sección negra */
.black-section {
    margin-top: 30px;
}

.black-content {
    padding: 20px;
    background-color: #fff;
    border-top: 4px solid #7f2841;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.black-header {
    margin-bottom: 15px;
    text-align: center;
}

.black-header h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.black-header h4 i {
    margin-right: 8px;
    color: #7f2841;
}

.black-header p {
    color: #666;
    font-size: 14px;
}

.payment-options-black {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #F8F9FA;
    border-radius: 4px;
    flex-wrap: wrap;
}

.payment-types {
    display: flex;
}

.payment-options-black label {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.payment-options-black input[type="radio"] {
    margin-right: 5px;
    cursor: pointer;
}

.payment-info {
    margin-left: auto;
    font-size: 13px;
    margin-right: 10px;
    color: #666;
}

.btn-show {
    background-color: white;
    color: #333;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-show:hover {
    background-color: #f0f0f0;
}

.btn-show i {
    margin-right: 5px;
    color: #7f2841;
}

.form-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 15px;
}

.black-form .form-group {
    margin-right: 0;
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
}

.black-form label {
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
}

.black-form label i {
    margin-right: 5px;
    color: #7f2841;
}

.black-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.black-form input:focus {
    border-color: #7f2841;
    outline: none;
    box-shadow: 0 0 0 2px rgba(127, 40, 65, 0.2);
}

.black-form input::placeholder {
    color: #aaa;
}

.date-input {
    position: relative;
    width: 100%;
}

.date-input input[type="date"] {
    width: 100%;
    padding-right: 30px;
}

.date-input input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
    cursor: pointer;
}

.btn-search {
    background-color: #7f2841;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    height: 42px;
}

.btn-search:hover {
    background-color: #9a3250;
}

.btn-search i {
    margin-right: 8px;
}

.payment-options {
    display: flex;
}

.payment-options label {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-size: 13px;
}

.payment-options input[type="radio"] {
    margin-right: 5px;
}

.payment-info {
    margin-left: auto;
    font-size: 13px;
    margin-right: 10px;
}

.btn-show {
    background-color: white;
    color: #333;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.btn-show i {
    margin-right: 5px;
}

/* Aviso de privacidad */
.privacy-notice {
    background-color: #d8e6f7;
    padding: 25px;
    margin: 20px 0;
    border-radius: 4px;
    box-shadow: 1px 2px rgba(0, 0, 0, 0.01);
    border-left: 4px solid #accffa;
}

.privacy-notice h3 {
    color: #363636;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow:
        1px 1px 0px #f5f5f5,
        1px 1px 0px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
}

.privacy-notice h3 i {
    color: #f0c14b;
    margin: 0 10px;
    font-size: 22px;
}

.privacy-notice p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
    padding: 0 10px;
}

.privacy-notice a {
    color: #7f2841;
    text-decoration: underline;
    font-weight: 500;
}

/* Sugerencias y contacto */
.suggestions {
    background-color: #ffefc3;
    padding: 25px;
    margin: 20px 0;
    border-radius: 4px;
    box-shadow: 1px 2px rgba(0, 0, 0, 0.01);
    border-left: 4px solid #f0c14b;
}

.suggestions h3 {
    color: #363636;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    text-shadow:
        1px 1px 0px #f5f5f5,
        1px 1px 0px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
}

.suggestions p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    padding: 0 10px;
}

.suggestions strong {
    color: #333;
    font-weight: 600;
}

.suggestions a {
    color: #7f2841;
    text-decoration: underline;
    font-weight: 500;
}

/* Formulario de contacto */
.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-form h3 {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.contact-form-section select {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.contact-form-section textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    color: #333;
    resize: vertical;
    min-height: 100px;
}

.contact-form-section textarea::placeholder {
    color: #999;
    opacity: 1;
}

.contact-map-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.map {
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.address {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.btn-submit {
    background-color: #7f2841;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #6a2035;
}

/* Footer */
/* footer {
    background-color: #7f2841;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    margin: 0 10px;
    font-size: 14px;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    margin: 0 10px;
    font-size: 18px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.footer-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px;
    font-size: 12px;
}

.footer-nav a i {
    font-size: 18px;
    margin-bottom: 5px;
} */

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    nav ul {
        margin: 10px 0;
    }

    .black-header {
        flex-wrap: wrap;
    }

    .payment-info,
    .btn-show {
        margin-top: 10px;
    }

    .form-row {
        flex-direction: column;
    }

    .black-form .form-group {
        margin-right: 0;
        margin-bottom: 15px;
    }

    /* Ajustes especu00edficos para la secciu00f3n 'Buscar por datos' */
    #datos-accordion-content .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    #datos-accordion-content input {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Estilos para el acordeón */
.accordion-container {
    width: 100%;
    margin-bottom: 20px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 0;
    background-color: #f8f9fa;
    overflow: hidden;
    border: 1px solid #ccc;
}

.accordion-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    position: relative;
}

.accordion-icon {
    color: #7f2841;
    margin-right: 15px;
    flex-shrink: 0;
}

.accordion-icon i {
    color: #7f2841;
    font-size: 18px;
}

.accordion-title {
    flex-grow: 0;
    margin-right: 15px;
}

.accordion-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.accordion-subtitle {
    flex-grow: 1;
}

.accordion-subtitle p {
    margin: 0;
    font-size: 14px;
    color: #666;
    text-align: right;
}

.accordion-toggle {
    margin-left: auto;
}

.accordion-toggle i {
    transition: transform 0.3s ease;
    color: #7f2841;
}

.accordion-item.active .accordion-toggle i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f9fa;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
    /* Ajustar según sea necesario */
}

#curp-accordion-content {
    padding: 20px !important;
    max-height: 500px !important;
    overflow: visible !important;
}

/* Estilos para la etiqueta CURP */
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.required-symbol {
    color: #7f2841;
}

/* Mensaje de error */
.error-message {
    color: #7f2841;
    font-size: 13px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    border-left: 3px solid #7f2841;
    padding-left: 10px;
}

.error-message i {
    margin-right: 5px;
}

/* Estilos para el captcha */
.captcha-container {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 4px;
    padding: 10px;
    max-width: 300px;
    border: 1px solid #dee2e6;
}

.captcha-checkbox {
    display: flex;
    align-items: center;
}

.captcha-logo {
    display: flex;
    align-items: center;
}

.captcha-logo img {
    width: 30px;
    height: 30px;
}

.captcha-text {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    font-size: 10px;
    color: #666;
}

.btn-primary {
    background-color: #7f2841;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

/* Estilos para el botu00f3n de bu00fasqueda */
.form-actions {
    text-align: center;
    margin-top: 20px;
}

/* Estilos para el input */
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Estilos para el nuevo diseño de wizard en el componente main-tabs-container */
.main-tabs-container {
    margin: 20px 0;
    overflow: hidden;
    position: relative;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.wizard-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px 5px;
    z-index: 1;
}

/* Lnea de progreso en el fondo */
.wizard-tabs:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 4px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    z-index: -1;
    border-radius: 4px;
}

.wizard-tab {
    display: flex;
    align-items: center;
    padding: 15px;
    position: relative;
    text-decoration: none;
    flex: 1;
    max-width: 400px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 0 10px;
    z-index: 2;
}

.wizard-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #7f2841;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* Efecto de halo alrededor del número */
.wizard-step-number:before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #7f2841;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.wizard-content {
    flex: 1;
}

.wizard-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    display: flex;
    align-items: center;
}

.wizard-title i {
    margin-right: 8px;
    color: #7f2841;
}

.wizard-description {
    font-size: 14px;
    color: #666;
}

.wizard-connector {
    height: 2px;
    background-color: #ddd;
    flex: 0.5;
    position: relative;
    max-width: 80px;
}

.wizard-connector:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #ddd;
    transform: translateY(-50%);
}

/* Estilos para la pestaña activa */
.wizard-tab.active {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #7f2841;
    border-width: 2px;
}

.wizard-tab.active .wizard-title {
    color: #7f2841;
}

.wizard-tab.active .wizard-step-number {
    background-color: #7f2841;
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(127, 40, 65, 0.3);
}

.wizard-tab.active .wizard-step-number:before {
    opacity: 0.7;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
}

/* Efectos hover */
.wizard-tab:not(.active):hover {
    background-color: #f9f9f9;
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
}

.wizard-tab:not(.active):hover .wizard-step-number {
    transform: scale(1.05);
    background-color: #9a3050;
}

.wizard-tab:not(.active):hover .wizard-step-number:before {
    opacity: 0.5;
}

/* Estilos para pestaña deshabilitada */
.wizard-tab.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.wizard-tab.disabled .wizard-step-number {
    background-color: #999;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .wizard-tabs {
        flex-direction: column;
    }

    .wizard-tabs:before {
        top: 15%;
        bottom: 15%;
        left: 50%;
        right: auto;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
    }

    .wizard-tab {
        margin: 5px 0;
        width: 100%;
        max-width: none;
    }

    .wizard-connector {
        width: 2px;
        height: 30px;
        max-width: none;
    }

    .wizard-connector:after {
        top: 100%;
        left: 50%;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid #ddd;
        border-bottom: none;
        transform: translateX(-50%);
    }
}

/* Estilos para el selector de acciones simple */
.action-selector {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fbFcfd;
}

.action-title {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 900;
}

.action-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-button {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
}

.action-button.active {
    border-color: #eee;
    box-shadow: 0 8px 20px rgba(127, 40, 65, 0.08);
}

.action-button.active::before {
    background-color: #7f2841;
}

.action-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f0f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.action-button:hover .action-icon,
.action-button.active .action-icon {
    background-color: #7f2841;
}

.action-icon i {
    font-size: 24px;
    color: #7f2841;
    transition: all 0.3s ease;
}

.action-button:hover .action-icon i,
.action-button.active .action-icon i {
    color: #fff;
}

.action-content {
    flex: 1;
}

.action-content h3 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.action-content p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }

    .action-button {
        max-width: 100%;
        margin-bottom: 15px;
    }
}

.action-button-header {
    background-color: #7f2841;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-button-body {
    padding: 25px 20px;
    flex-grow: 1;
}

.action-button-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.action-button-desc {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.action-button-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.action-button-arrow {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f8f0f2;
    color: #7f2841;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-button:hover .action-button-arrow {
    background-color: #7f2841;
    color: #fff;
}

.action-button i {
    font-size: 36px;
    color: #fff;
}

/* Estilos para los mensajes de estado */
.status-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
    max-width: 90%;
}

.status-message i {
    margin-right: 10px;
    font-size: 18px;
}

.status-message.loading {
    background-color: #e9f5ff;
    color: #0066cc;
    border-left: 4px solid #0066cc;
}

.status-message.success {
    background-color: #edf9f0;
    color: #28a745;
    border-left: 4px solid #28a745;
}

.status-message.error {
    background-color: #fff2f2;
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -20px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Estilos responsivos para los mensajes */
@media (max-width: 768px) {
    .status-message {
        padding: 10px 15px;
        font-size: 14px;
    }

    .status-message i {
        font-size: 16px;
    }
}

.search-form-container {
    margin-top: 20px;
}

.search-form-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #F8F9FA;
    border-radius: 6px 6px 0 0;
    border: 1px solid #ddd;
    border-bottom: none;
}

.search-form-header span {
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #333;
}

.search-form-header span i {
    margin-right: 8px;
    color: #7f2841;
}

.search-form-container .black-form {
    padding: 20px;
    background-color: #F8F9FA;
    border-radius: 0 0 6px 6px;
}

/* Estilos para la etiqueta CURP */
.curp-label {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.required-symbol {
    color: #7f2841;
}

/* Mensaje de error */
.error-message {
    color: #7f2841;
    font-size: 13px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    border-left: 3px solid #7f2841;
    padding-left: 10px;
}

.error-message i {
    margin-right: 5px;
}

/* Clase para el fondo oscuro del acordeón */
.dark-bg {
    background-color: #222;
    color: white;
}

.dark-bg input {
    background-color: white;
    color: #333;
}

/* Estilos para la etiqueta CURP en fondo oscuro */
.dark-bg .curp-label {
    color: #ff6b6b;
}

.dark-bg .required-symbol {
    color: #ff6b6b;
}

/* Mensaje de error en fondo oscuro */
.dark-bg .error-message {
    color: #ff6b6b;
    border-left: none;
    padding-left: 0;
}

.dark-bg .error-message i {
    color: #ff6b6b;
    font-size: 8px;
    margin-right: 5px;
}

/* Estilos para la sección de confirmación de identidad */
.identity-confirmation {
    margin-top: 30px;
}

.confirmation-card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.confirmation-header {
    color: #7f2841;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.confirmation-header i {
    font-size: 24px;
    margin-right: 10px;
}

.confirmation-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.confirmation-content {
    padding: 20px;
}

.user-info-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.user-info-item:last-child {
    border-bottom: none;
}

.user-info-item label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.user-info-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.confirmation-message {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
}

.confirmation-message i {
    color: #7f2841;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 2px;
}

.confirmation-message p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.confirmation-actions {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-secondary {
    background-color: #f2f2f2;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #e6e6e6;
}

/* Inputs con iconos */
.input-with-icon {
    position: relative;
    margin-bottom: 18px;
    width: 100%;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f2841;
    font-size: 16px;
    z-index: 1;
}

.input-with-icon input {
    padding-left: 40px;
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.input-with-icon input::placeholder {
    color: #999;
    opacity: 1;
}

/* Estilos para la sección de forma de pago */
.payment-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-option {
    flex: 1;
    min-width: 250px;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 150px;
    /* Altura fija para ambas tarjetas */
}

.payment-option input[type="radio"]:checked+label {
    border-color: #7f2841;
    background-color: #f8e7eb;
}

.payment-option label i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
    color: #7f2841;
}

.payment-option label span {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.payment-description {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}

.payment-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.payment-places {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.payment-places li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.payment-places li i {
    margin-right: 10px;
    color: #7f2841;
}

.account-info {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 4px solid #7f2841;
}

.account-info p {
    margin-bottom: 8px;
}

.account-number {
    font-weight: bold;
    letter-spacing: 1px;
}

.payment-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.summary-item.total {
    font-weight: bold;
    font-size: 18px;
    border-bottom: none;
    color: #7f2841;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

/* Estilos para la sección de entrega de documento */
.document-delivery-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
}

.document-download {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    margin: 30px 0;
}

.document-download i {
    color: #dc3545;
    margin-bottom: 15px;
}

.document-download h4 {
    margin-bottom: 15px;
}

.document-download p {
    margin-bottom: 20px;
}

#download-document-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#download-document-button i {
    color: white;
    margin-bottom: 0;
}

/* Estilos para el acordeón */
.accordion-container {
    width: 100%;
    margin-bottom: 20px;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    position: relative;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-icon {
    width: 40px;
    height: 40px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.accordion-icon i {
    color: #7f2841;
    font-size: 18px;
}

.accordion-title {
    flex-grow: 1;
}

.accordion-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.accordion-title p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #666;
}

.accordion-toggle {
    margin-left: 10px;
}

.accordion-toggle i {
    transition: transform 0.3s ease;
    color: #7f2841;
}

.accordion-item.active .accordion-toggle i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #F8F9FA;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 15px;
}

/* Ajustes para la sección negra dentro del acordeón */
.main-accordion .black-section {
    margin-top: 0;
    border-top: none;
}

.main-accordion .black-content {
    border-radius: 0;
}

/* Ajustes para las pestañas dentro del acordeón */
#solicitar-content .tabs-container {
    padding-top: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

#solicitar-content .tabs {
    justify-content: center;
    padding-bottom: 15px;
}

/* Estilos para el botón de privacidad fuera del acordeón */
.privacy-button-container {
    display: flex;
    justify-content: flex-end;
    margin: 15px 0;
}

.privacy-button {
    display: inline-flex;
    align-items: center;
    background-color: #1a73e8;
    /* Azul más oscuro: ratio ~4.8:1 */
    border: 1px solid #155ac6;
    /* tono más oscuro del borde */
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.privacy-button:hover {
    background-color: #6ba7f5;
    border-color: #155ac6;
}

.privacy-button i {
    margin-right: 5px;
    color: white;
}

/* Estilos para el contenedor de la imagen del formato de referencia */
.reference-format-container {
    margin: 15px 0;
    text-align: center;
    background-color: #333;
    padding: 15px;
    border-radius: 6px;
}

.reference-format-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #444;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #222;
    margin: 5% auto;
    padding: 25px;
    border: 1px solid #444;
    border-top: 4px solid #7f2841;
    width: 80%;
    max-width: 800px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideDown 0.4s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h3 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: #7f2841;
    text-decoration: none;
    cursor: pointer;
}

.reference-format-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }
}

/* Estilos para el contenedor de búsqueda siempre visible */
.search-form-container {
    margin-top: 20px;
}

.search-form-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #F8F9FA;
    border-radius: 6px 6px 0 0;
    border: 1px solid #ddd;
    border-bottom: none;
}

.search-form-header span {
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #333;
}

.search-form-header span i {
    margin-right: 8px;
    color: #7f2841;
}

.search-form-container .black-form {
    padding: 20px;
    background-color: #F8F9FA;
    border: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
}

/* Estilos para la etiqueta CURP */
.curp-label {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.required-symbol {
    color: #7f2841;
}

/* Mensaje de error */
.error-message {
    color: #7f2841;
    font-size: 13px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    border-left: 3px solid #7f2841;
    padding-left: 10px;
}

.error-message i {
    margin-right: 5px;
}

/* Clase para el fondo oscuro del acordeón */
.dark-bg {
    background-color: #222;
    color: white;
}

.dark-bg input {
    background-color: white;
    color: #333;
}

/* Estilos para la etiqueta CURP en fondo oscuro */
.dark-bg .curp-label {
    color: #ff6b6b;
}

.dark-bg .required-symbol {
    color: #ff6b6b;
}

/* Mensaje de error en fondo oscuro */
.dark-bg .error-message {
    color: #ff6b6b;
    border-left: none;
    padding-left: 0;
}

.dark-bg .error-message i {
    color: #ff6b6b;
    font-size: 8px;
    margin-right: 5px;
}

/* Estilos para la sección de confirmación de identidad */
.identity-confirmation {
    margin-top: 30px;
}

.confirmation-card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.confirmation-header {
    color: #7f2841;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.confirmation-header i {
    font-size: 24px;
    margin-right: 10px;
}

.confirmation-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.confirmation-content {
    padding: 20px;
}

.user-info-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.user-info-item:last-child {
    border-bottom: none;
}

.user-info-item label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.user-info-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.confirmation-message {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
}

.confirmation-message i {
    color: #7f2841;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 2px;
}

.confirmation-message p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.confirmation-actions {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-secondary {
    background-color: #f2f2f2;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #e6e6e6;
}

/* Inputs con iconos */
.input-with-icon {
    position: relative;
    margin-bottom: 18px;
    width: 100%;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f2841;
    font-size: 16px;
    z-index: 1;
}

.input-with-icon input {
    padding-left: 40px;
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.input-with-icon input::placeholder {
    color: #999;
    opacity: 1;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.contact-form-section select {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}