body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1f2933;
    margin: 0;
}

/* HERO */
.afiliacion-hero {
    height: 80vh;
    background: url('/public/recursos/landing3.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.afiliacion-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(14, 91, 179, 0.249), rgba(11, 28, 45, 0.282));
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: .9;
}

/* INTRO */
.afiliacion-intro {
    padding: 5rem 10%;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

/* SECCIONES DE REQUISITOS */
.requisitos-section {
    padding: 5rem 10%;
    background: #fff;
}



.requisitos-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.requisitos-list {
    max-width: 900px;
    margin: auto;
    list-style: none;
    padding: 0;
}

.requisitos-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, .9);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.requisitos-section.alt .requisitos-list li {
    background: rgba(255, 255, 255, .08);
}

.requisitos-list li i {
    color: #2563eb;
    min-width: 30px;
    font-size: 1.2rem;
}

.importante {


    padding: 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 2rem;


    position: relative;
    overflow: hidden;
}

.importante::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.importante li {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #b69d0f;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding: 1.25rem 1.5rem;

    position: relative;
    z-index: 1;
}

.importante li:last-child {
    margin-bottom: 0;
}

.importante li i {
    color: #edcd16 !important;
    font-size: 1.3rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.importante li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}



.importante li:hover::after {
    left: 100%;
}






/* NOTAS */
.notas-section {
    padding: 4rem 10%;
    text-align: center;
    background-image: url(/public/recursos/fondowa2.png);
    background-size: cover;
    background-position: center;
    color: #d1d5db;
    margin-bottom: 40px;

}

/* Estilos adicionales para las pestañas */
.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10%;
    margin-bottom: 40px;
}

.aff-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
    width: 100%;
    padding: 0 0;
    box-sizing: border-box;

}

.tabs-header {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: #2563eb;
}

.tab-button.active {
    color: #2563eb;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2563eb;
}

.tab-content {
    display: none;

}

.tab-content.active {
    display: block;
    animation: fadeInWithBg 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes fadeInWithBg {
    0% {
        opacity: 0;
        transform: translateY(10px);
        background-color: #ffe81a;
        /* amarillo inicial */
    }

    60% {
        background-color: #ffffff;
        /* transicion a blanco */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        background-color: #ffffff;
    }
}

.tab-content {
    background-color: transparent;
}


.requisitos-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.requisitos-section {
    padding: 3rem;
    background: #fff;
}



.requisitos-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.requisitos-list {
    list-style: none;
    padding: 0;
}

.requisitos-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, .9);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    font-size: 1rem;
    transition: all 0.3s ease;
}



.requisitos-list li i {
    color: #2563eb;
    min-width: 30px;
    font-size: 1.2rem;
}

.cuenta-section {
    margin-top: 0;
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    margin-right: 80px;
    color: #1a1a1a;
    position: relative;
    max-width: 480px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cuenta-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cuenta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2563eb;
}

.cuenta-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cuenta-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.4;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.01em;
}

.account-number {
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 0.05em;
}

.divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1.5rem 0;
}

.bank-logo {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #2563eb;
}

.action-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
}

.copy-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.copy-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-button.copied {
    background: #e9d122;
}

@media only screen and (max-width: 768px) {
    .cuenta-section {
        margin-right: 0;
        padding: 2rem;
    }

    .cuenta-section h3 {
        font-size: 1.125rem;
        padding-right: 60px;
    }

    .bank-logo {
        right: 2rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .account-number {
        font-size: 1.125rem;
    }

    .action-footer {
        justify-content: stretch;
    }

    .copy-button {
        width: 100%;
    }
}

/* ===================================
   RESPONSIVE TABLET (768px - 1024px)
   =================================== */
@media only screen and (max-width: 1024px) {

    /* Hero */
    .afiliacion-hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 2rem;
    }

    /* Layout */
    .aff-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 5%;
    }

    .tabs-container {
        padding: 0;
    }

    /* Cuenta Section */
    .cuenta-section {
        margin-right: 0;
        max-width: 100%;
    }

    /* Requisitos */
    .requisitos-section {
        padding: 3rem 5%;
    }

    .requisitos-section h2 {
        font-size: 1.8rem;
    }

    /* Notas */
    .notas-section {
        padding: 3rem 5%;
    }
}

/* ===================================
   RESPONSIVE MOBILE (max-width: 768px)
   =================================== */
@media only screen and (max-width: 768px) {

    /* Hero */
    .afiliacion-hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    /* Intro */
    .afiliacion-intro {
        padding: 3rem 5%;
        font-size: 1rem;
    }

    /* Layout */
    .aff-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;

    }

    /* Tabs Container */
    .tabs-container {
        padding: 0;
        margin: 2rem;

    }

    .requisitos-container {
        border-radius: 12px;
    }

    /* Tabs Header */
    .tabs-header {
        flex-direction: column;
        margin-bottom: 0;
    }

    .tab-button {
        width: 100%;
        text-align: left;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .tab-button.active::after {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0;
        bottom: auto;
    }

    .tab-button i {
        margin-right: 0.5rem;
    }

    /* Requisitos Section */
    .requisitos-section {
        padding: 2rem 1.5rem;
    }

    .requisitos-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .requisitos-list {
        max-width: 100%;
    }

    .requisitos-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .requisitos-list li i {
        font-size: 1.1rem;
        min-width: 24px;
    }

    /* Importante */
    .importante {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .importante li {
        padding: 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .importante li i {
        font-size: 1.1rem;
    }

    /* Cuenta Section */
    .cuenta-section {
        margin-right: 0;
        padding: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .cuenta-section:hover {
        transform: translateY(-4px);
    }

    .cuenta-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        padding-right: 50px;
    }

    .cuenta-section h3 {
        font-size: 1.1rem;
    }

    .bank-logo {
        top: 2rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .info-grid {
        gap: 1.25rem;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .account-number {
        font-size: 1.1rem;
        word-break: break-all;
    }

    .divider {
        margin: 1rem 0;
    }

    .action-footer {
        margin-top: 1.5rem;
        padding-top: 1rem;
        justify-content: stretch;
    }

    .copy-button {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Notas Section */
    .notas-section {
        padding: 2.5rem 5%;
        margin-bottom: 2rem;
    }

    .notas-section p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/* PAYMENT METHODS TABS */
.payment-tabs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    background: #f3f4f6;
    padding: 0.4rem;
    border-radius: 12px;
}

.pay-tab {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-tab.active {
    background: #ffffff;
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.payment-method-view {
    display: none;
}

.payment-method-view.active {
    display: block;
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* QR VIEW */
.qr-container {
    text-align: center;
    padding: 1.5rem 0;
}

.qr-frame {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
    border: 2px solid #f1f5f9;
}

.qr-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.qr-hint {
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 1.2rem;
}

.download-qr {
    background: #f1f5f9;
    color: #334155;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-qr:hover {
    background: #e2e8f0;
    color: #2563eb;
}

/* SUBMISSION AREA */
.submission-area {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed #e2e8f0;
}

.submit-voucher-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    font-family: "Montserrat", sans-serif;
}

.submit-voucher-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* MODAL STYLES */
.p-modal,
.v-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.p-modal-content {
    background: #fff;
    width: 100%;
    max-width: 700px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform-origin: center;
    animation: modalScale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

.p-modal-header {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e3a8a;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
}

.p-close,
.v-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.p-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* FORM STYLES */
.p-form {
    padding: 2.5rem;
    max-height: 80vh;
    overflow-y: auto;
}

.p-form-group {
    margin-bottom: 1.5rem;
}

.p-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.p-form input,
.p-form select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.2s;
    outline: none;
}

.p-form input:focus,
.p-form select:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.p-form input[readonly] {
    background: #f1f5f9;
    color: #64748b;
    cursor: not-allowed;
}

.p-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #2563eb;
    font-weight: 600;
}

.p-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* FILE INPUT */
.file-input-wrapper {
    position: relative;
    display: flex;
    gap: 0.75rem;
}

#fileVoucher {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-custom {
    flex-grow: 1;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    padding: 0.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #64748b;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

#fileVoucher:hover+.file-custom {
    border-color: #2563eb;
    background: #eff6ff;
    color: #2563eb;
}


.p-submit-btn {
    width: 100%;
    background: #edcd16;
    color: #1e3a8a;
    border: none;
    padding: 1.2rem;
    margin-top: 1rem;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(237, 205, 22, 0.3);
}

.p-submit-btn:hover {
    background: #ebd122;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 205, 22, 0.4);
}


.hidden {
    display: none !important;
}

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

    .p-form {
        padding: 1.5rem;
    }

    .p-modal-content {
        border-radius: 0;
        height: 100%;
        max-height: 100%;
    }

    .p-modal {
        padding: 0;
    }
}

/* LOGIN PROMPT SECTION */
.login-prompt-content {
    text-align: center;
    padding: 1rem 0;
}

.login-prompt-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}

.login-prompt-content h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-family: "Montserrat", sans-serif;
}

.login-prompt-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.login-redirect-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #edcd16;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 205, 22, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.login-redirect-btn:hover {
    background: #ebd122;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 205, 22, 0.4);
    color: #1e3a8a;
}

/* ===================================
   RESPONSIVE SMALL MOBILE (max-width: 480px)
   =================================== */
@media only screen and (max-width: 480px) {

    /* Hero */
    .afiliacion-hero {
        height: 45vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    /* Intro */
    .afiliacion-intro {
        padding: 2rem 1rem;
        font-size: 0.95rem;
    }

    /* Layout */
    .aff-layout {
        padding: 0;
        gap: 1.5rem;
    }

    /* Tabs */
    .tab-button {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
    }

    /* Requisitos */
    .requisitos-section {
        padding: 1.5rem 1rem;
    }

    .requisitos-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .requisitos-list li {
        padding: 0.85rem;
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .requisitos-list li i {
        font-size: 1rem;
    }

    /* Importante */
    .importante {
        padding: 0.85rem;
        margin-top: 1.25rem;
    }

    .importante li {
        padding: 0.85rem;
        font-size: 0.85rem;
    }

    /* Cuenta Section */
    .cuenta-section {
        padding: 1.5rem 1.25rem;
    }

    .cuenta-header {
        padding-right: 45px;
    }

    .cuenta-section h3 {
        font-size: 1rem;
    }

    .bank-logo {
        top: 1.5rem;
        right: 1.25rem;
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .info-label {
        font-size: 0.75rem;
    }

    .info-value {
        font-size: 0.95rem;
    }

    .account-number {
        font-size: 1rem;
    }

    .copy-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Notas */
    .notas-section {
        padding: 2rem 1rem;
    }

    .notas-section p {
        font-size: 0.85rem;
    }
}

/* ===================================
   LANDSCAPE MODE (Mobile Horizontal)
   =================================== */
@media only screen and (max-height: 500px) and (orientation: landscape) {
    .afiliacion-hero {
        height: 100vh;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

/* ===================================
   UTILITIES FOR RESPONSIVE
   =================================== */
@media only screen and (max-width: 768px) {

    /* Reduce animations on mobile for performance */
    * {
        animation-duration: 0.5s !important;
        transition-duration: 0.3s !important;
    }

    /* Better touch targets */
    .tab-button,
    .copy-button {
        min-height: 44px;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Better readability */
    p,
    li {
        line-height: 1.6;
    }
}