 /* ============================================
           DESIGN SYSTEM
        ============================================ */
 :root {
     --navy: #2A1262;
     --navy-mid: #3D1FA0;
     --navy-light: #4A22A8;
     --gold: #D4557F;
     --gold-light: #E887A7;
     --cream: #EAE4FE;
     --white: #FFFFFF;
     --text-dark: #180A40;
     --text-mid: #5B4B8A;
     --text-light: #9B88C8;
     --border: #D6CAFF;
     --shadow-sm: 0 2px 8px rgba(42, 18, 98, 0.08);
     --shadow-md: 0 8px 30px rgba(42, 18, 98, 0.14);
     --shadow-lg: 0 20px 60px rgba(42, 18, 98, 0.20);
     --radius-sm: 6px;
     --radius-md: 12px;
     --radius-lg: 20px;
     --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Open Sans', sans-serif;
     color: var(--text-dark);
     background: var(--white);
     overflow-x: hidden;
 }

 /* ============================================
           UTILITY
        ============================================ */
 .container {
     max-width: 1180px;
     margin: 0 auto;
     padding: 0 32px;
 }

 .section-label {
     font-size: 0.72rem;
     font-weight: 600;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--gold);
     display: block;
     margin-bottom: 12px;
 }

 .section-title {
     font-family: 'Open Sans', sans-serif;
     font-size: clamp(1.8rem, 3vw, 2.6rem);
     font-weight: 700;
     color: var(--navy);
     line-height: 1.25;
 }

 .section-title.light {
     color: var(--white);
 }

 .divider {
     width: 48px;
     height: 3px;
     background: var(--gold);
     border-radius: 2px;
     margin: 20px 0 32px;
 }

 /* ============================================
           WHATSAPP BUTTON
        ============================================ */
 .whatsapp-btn {
     position: fixed;
     bottom: 28px;
     right: 28px;
     z-index: 9999;
 }

 .whatsapp-btn a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 58px;
     height: 58px;
     border-radius: 50%;
     background: #25D366;
     box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
     transition: var(--transition);
     background-image: url('img/img-wp.png');
     background-size: cover;
 }

 .whatsapp-btn a:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
 }

 /* ============================================
           NAVIGATION
        ============================================ */
 #navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     padding: 0 32px;
     transition: var(--transition);
 }

 #navbar.scrolled {
     background: rgba(42, 18, 98, 0.97);
     backdrop-filter: blur(12px);
     box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
 }

 .nav-inner {
     max-width: 1180px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 72px;
 }

 .nav-logo {
     font-family: 'Open Sans', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--white);
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .nav-logo span {
     display: inline-block;
     width: 36px;
     height: 36px;
     background: var(--gold);
     color: var(--navy);
     font-size: 0.9rem;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
 }

 nav ul {
     list-style: none;
     display: flex;
     gap: 4px;
 }

 nav ul li a {
     color: rgba(255, 255, 255, 0.82);
     text-decoration: none;
     font-size: 0.82rem;
     font-weight: 500;
     letter-spacing: 0.04em;
     padding: 8px 14px;
     border-radius: var(--radius-sm);
     transition: var(--transition);
     text-transform: uppercase;
 }

 nav ul li a:hover {
     color: var(--gold-light);
     background: rgba(212, 85, 127, 0.12);
 }.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--gold-light);
    color: var(--white);
}
 /* Mobile nav toggle */
 .nav-toggle {
     display: none;
     background: none;
     border: none;
     color: var(--white);
     font-size: 1.5rem;
     cursor: pointer;
 }

 /* ============================================
           HERO
        ============================================ */
 .hero {
     min-height: 100vh;
     background: linear-gradient(135deg, rgba(42, 18, 98, 0.92) 0%, rgba(42, 18, 98, 0.88) 60%, rgba(74, 34, 168, 0.80) 100%),
         url('img/fondo.jpg') center center / cover no-repeat fixed;
     display: flex;
     align-items: center;
     padding-top: 72px;
     position: relative;
     overflow: hidden;
 }

 .hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 120px;
     background: linear-gradient(to top, var(--white), transparent);
 }

 .hero-content {
     position: relative;
     z-index: 1;
     max-width: 700px;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(212, 85, 127, 0.18);
     border: 1px solid rgba(212, 85, 127, 0.35);
     color: var(--gold-light);
     padding: 7px 16px;
     border-radius: 100px;
     font-size: 0.78rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 28px;
 }

 .hero-badge i {
     font-size: 0.7rem;
 }

 .hero h1 {
     font-family: 'Open Sans', sans-serif;
     font-size: clamp(2.4rem, 5vw, 4rem);
     font-weight: 700;
     color: var(--white);
     line-height: 1.18;
     margin-bottom: 24px;
 }

 .hero h1 em {
     font-style: normal;
     color: var(--gold-light);
 }

 .hero p {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.78);
     line-height: 1.75;
     max-width: 560px;
     margin-bottom: 40px;
     font-weight: 300;
 }

 .hero-actions {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
 }

 .btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: var(--gold);
     color: var(--navy);
     padding: 15px 30px;
     border-radius: var(--radius-sm);
     font-weight: 700;
     font-size: 0.9rem;
     text-decoration: none;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     transition: var(--transition);
     border: 2px solid var(--gold);
 }

 .btn-primary:hover {
     background: var(--gold-light);
     border-color: var(--gold-light);
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(212, 85, 127, 0.4);
 }

 .btn-outline {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: transparent;
     color: var(--white);
     padding: 15px 30px;
     border-radius: var(--radius-sm);
     font-weight: 600;
     font-size: 0.9rem;
     text-decoration: none;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     transition: var(--transition);
     border: 2px solid rgba(255, 255, 255, 0.35);
 }

 .btn-outline:hover {
     border-color: var(--white);
     background: rgba(255, 255, 255, 0.08);
 }

 .hero-stats {
     display: flex;
     gap: 48px;
     margin-top: 60px;
     padding-top: 40px;
     border-top: 1px solid rgba(255, 255, 255, 0.15);
 }

 .stat-item {
     text-align: left;
 }

 .stat-number {
     font-family: 'Open Sans', sans-serif;
     font-size: 2rem;
     font-weight: 700;
     color: var(--gold-light);
     display: block;
 }

 .stat-label {
     font-size: 0.78rem;
     color: rgba(255, 255, 255, 0.55);
     text-transform: uppercase;
     letter-spacing: 0.08em;
 }

 /* ============================================
           SOBRE MI
        ============================================ */
 .sobre-mi {
     padding: 100px 0;
     background: var(--white);
 }

 .sobre-mi-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .sobre-mi-image {
     position: relative;
 }

 .sobre-mi-image img {
     width: 100%;
     border-radius: var(--radius-lg);
     display: block;
     object-fit: cover;
 }

 .sobre-mi-image::before {
     content: '';
     position: absolute;
     inset: -16px -16px 16px 16px;
     border: 2px solid var(--gold);
     border-radius: var(--radius-lg);
     z-index: -1;
 }
.sobre-mi-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 28px 36px;
}

.sobre-mi-banner-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.sobre-mi-banner p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.75;
    margin: 0;
}

.sobre-mi-banner p strong {
    color: var(--navy);
    font-weight: 700;
}
 .credential-badge {
     position: absolute;
     bottom: -20px;
     right: -20px;
     background: var(--navy);
     color: var(--white);
     padding: 20px 24px;
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-lg);
     text-align: center;
 }

 .credential-badge strong {
     display: block;
     font-size: 1.6rem;
     font-family: 'Open Sans', sans-serif;
     color: var(--gold);
 }

 .credential-badge span {
     font-size: 0.75rem;
     opacity: 0.7;
     text-transform: uppercase;
     letter-spacing: 0.08em;
 }

 .sobre-mi-text p {
     color: var(--text-mid);
     line-height: 1.8;
     margin-bottom: 20px;
     font-size: 1rem;
 }

 .feature-list {
     list-style: none;
     margin-top: 28px;
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .feature-list li {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 0.95rem;
     color: var(--text-dark);
     font-weight: 500;
 }

 .feature-list li i {
     width: 28px;
     height: 28px;
     background: rgba(212, 85, 127, 0.15);
     color: var(--gold);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.75rem;
     flex-shrink: 0;
 }

 /* ============================================
           OBLIGADOS
        ============================================ */
 .obligados {
     background: var(--cream);
     padding: 100px 0;
 }

 .obligados-new {
     display: grid;
     grid-template-columns: 1.15fr 0.85fr;
     gap: 28px;
     margin-top: 48px;
     align-items: start;
 }

 .req-card {
     background: var(--navy);
     border-radius: var(--radius-lg);
     overflow: hidden;
 }

 .req-card-header {
     padding: 24px 28px 18px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .req-card-header .icon-box {
     width: 40px;
     height: 40px;
     background: var(--gold);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 1rem;
     flex-shrink: 0;
 }

 .req-card-header h3 {
     font-size: 1.05rem;
     font-weight: 700;
     color: var(--white);
     margin: 0;
 }

 .req-items {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .req-items li {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 16px;
     padding: 16px 28px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.07);
     transition: background var(--transition);
 }

 .req-items li:last-child {
     border-bottom: none;
 }

 .req-items li:hover {
     background: rgba(255, 255, 255, 0.04);
 }

 .req-items li .req-text {
     font-size: 0.86rem;
     color: rgba(255, 255, 255, 0.72);
     line-height: 1.5;
     flex: 1;
 }

 .req-items li .req-amount {
     font-size: 0.85rem;
     font-weight: 700;
     color: var(--gold-light);
     white-space: nowrap;
     background: rgba(232, 135, 167, 0.15);
     padding: 5px 13px;
     border-radius: 100px;
     border: 1px solid rgba(232, 135, 167, 0.28);
     flex-shrink: 0;
 }

 .obligados-right {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .sancion-card {
     background: var(--white);
     border-radius: var(--radius-lg);
     border: 1.5px solid var(--border);
     overflow: hidden;
     box-shadow: var(--shadow-sm);
 }

 .sancion-card-header {
     background: var(--gold);
     padding: 14px 22px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .sancion-card-header h3 {
     font-size: 0.95rem;
     font-weight: 700;
     color: var(--white);
     margin: 0;
 }

 .sancion-card-header i {
     color: var(--white);
 }

 .sancion-card-body {
     padding: 20px 22px;
 }

 .sancion-highlight {
     background: var(--cream);
     border-radius: var(--radius-sm);
     padding: 14px 18px;
     margin-bottom: 12px;
     border-left: 3px solid var(--navy);
     border-radius: 0;
 }

 .sancion-highlight strong {
     display: block;
     font-size: 0.95rem;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 6px;
 }

 .sancion-highlight p {
     font-size: 0.83rem;
     color: var(--text-mid);
     line-height: 1.6;
     margin: 0;
 }

 .sancion-note {
     font-size: 0.82rem;
     color: var(--text-mid);
     line-height: 1.6;
     display: flex;
     gap: 8px;
     align-items: flex-start;
 }

 .sancion-note i {
     color: var(--gold);
     margin-top: 2px;
     flex-shrink: 0;
 }

 .docs-card {
     background: var(--cream);
     border-radius: var(--radius-lg);
     padding: 22px 24px;
     border: 1.5px solid var(--border);
 }

 .docs-card-title {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 16px;
     padding-bottom: 12px;
     border-bottom: 1px solid var(--border);
 }

 .docs-card-title h3 {
     font-size: 0.95rem;
     font-weight: 700;
     color: var(--navy);
     margin: 0;
 }

 .docs-card-title i {
     color: var(--gold);
 }

 .docs-steps {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 11px;
     margin: 0;
     padding: 0;
 }

 .docs-steps li {
     display: flex;
     align-items: flex-start;
     gap: 11px;
     font-size: 0.85rem;
     color: var(--text-mid);
     line-height: 1.5;
 }

 .docs-steps li .step-num {
     width: 22px;
     height: 22px;
     min-width: 22px;
     background: var(--navy);
     color: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.68rem;
     font-weight: 700;
     margin-top: 1px;
 }

 /* ============================================
           FECHAS
        ============================================ */
 .fechas {
     padding: 100px 0;
     background: var(--navy);
 }

 .fechas .section-title {
     color: var(--white);
 }

 .intro-text-fechas {
     width: 100%;
     margin-bottom: 40px;
     background: rgba(255, 255, 255, 0.12);
     border: 1.5px solid rgba(255, 255, 255, 0.22);
     border-radius: var(--radius-md);
     padding: 28px 36px;
     display: grid;
     grid-template-columns: auto 1fr;
     gap: 24px;
     align-items: center;
     backdrop-filter: blur(4px);
 }

 .intro-text-fechas .fechas-info-icon {
     width: 52px;
     height: 52px;
     background: var(--gold);
     border-radius: var(--radius-sm);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 1.2rem;
     flex-shrink: 0;
 }

 .intro-text-fechas .fechas-info-text {
     color: #ffffff;
     line-height: 1.8;
     font-size: 0.9rem;
     font-weight: 300;
 }

 .intro-text-fechas .fechas-info-text strong {
     color: var(--gold-light);
     font-weight: 700;
 }

 .fechas-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: 12px;
 }

 .fecha-card {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-md);
     padding: 16px 18px;
     display: flex;
     flex-direction: column;
     gap: 8px;
     transition: var(--transition);
     cursor: default;
 }

 .fecha-card:hover {
     background: rgba(212, 85, 127, 0.18);
     border-color: var(--gold);
     transform: translateY(-2px);
 }

 .fecha-nit {
     font-size: 1.3rem;
     font-weight: 800;
     color: var(--gold-light);
     letter-spacing: 0.04em;
     line-height: 1;
 }

 .fecha-nit-label {
     font-size: 0.68rem;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: rgba(255, 255, 255, 0.4);
     font-weight: 600;
 }

 .fecha-divider {
     width: 28px;
     height: 2px;
     background: var(--gold);
     border-radius: 2px;
     opacity: 0.6;
 }

 .fecha-date {
     font-size: 0.82rem;
     color: rgba(255, 255, 255, 0.85);
     font-weight: 500;
     line-height: 1.4;
 }

 .fechas-search-wrap {
     margin-bottom: 32px;
     display: flex;
     align-items: center;
     gap: 12px;
     flex-wrap: wrap;
 }

 .fechas-search-box {
     display: flex;
     align-items: center;
     background: rgba(255, 255, 255, 0.08);
     border: 1.5px solid rgba(255, 255, 255, 0.2);
     border-radius: var(--radius-md);
     padding: 0 18px;
     gap: 10px;
     transition: var(--transition);
     max-width: 320px;
     width: 100%;
 }

 .fechas-search-box:focus-within {
     border-color: var(--gold);
     background: rgba(255, 255, 255, 0.12);
 }

 .fechas-search-box i {
     color: rgba(255, 255, 255, 0.45);
     font-size: 0.9rem;
     flex-shrink: 0;
 }

 .fechas-search-box input {
     background: transparent;
     border: none;
     outline: none;
     color: var(--white);
     font-family: 'Open Sans', sans-serif;
     font-size: 1rem;
     font-weight: 600;
     width: 100%;
     padding: 14px 0;
     letter-spacing: 0.1em;
 }

 .fechas-search-box input::placeholder {
     color: rgba(255, 255, 255, 0.35);
     font-weight: 400;
     letter-spacing: 0;
     font-size: 0.88rem;
 }

 /* Quita las flechas del input number */
 .fechas-search-box input::-webkit-outer-spin-button,
 .fechas-search-box input::-webkit-inner-spin-button {
     -webkit-appearance: none;
 }

 .fechas-search-box input[type=number] {
     -moz-appearance: textfield;
 }

 .fechas-result-pill {
     display: none;
     align-items: center;
     gap: 8px;
     background: var(--gold);
     color: var(--white);
     padding: 10px 18px;
     border-radius: var(--radius-md);
     font-size: 0.88rem;
     font-weight: 700;
     animation: popIn 0.2s ease;
 }

 .fechas-result-pill i {
     font-size: 0.8rem;
 }

 .fechas-result-pill.visible {
     display: flex;
 }

 .fechas-result-pill.not-found {
     background: rgba(255, 255, 255, 0.12);
     color: rgba(255, 255, 255, 0.6);
 }

 @keyframes popIn {
     from {
         transform: scale(0.9);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 /* Tarjeta resaltada */
 .fecha-card.highlighted {
     background: var(--gold);
     border-color: var(--gold-light);
     transform: scale(1.04);
     box-shadow: 0 8px 32px rgba(212, 85, 127, 0.45);
 }

 .fecha-card.highlighted .fecha-nit {
     color: var(--white);
 }

 .fecha-card.highlighted .fecha-date {
     color: rgba(255, 255, 255, 0.9);
 }

 .fecha-card.highlighted .fecha-divider {
     background: rgba(255, 255, 255, 0.5);
     opacity: 1;
 }

 .fecha-card.highlighted .fecha-nit-label {
     color: rgba(255, 255, 255, 0.6);
 }

 .fecha-card.dimmed {
     opacity: 0.3;
     transform: scale(0.98);
 }

 /* ============================================
           NECESIDADES
        ============================================ */
 .necesidades {
     padding: 100px 0;
     background: var(--white);
 }

 .necesidades-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     margin-top: 48px;
 }

 .nec-block h3 {
     font-family: 'Open Sans', sans-serif;
     font-size: 1.1rem;
     color: var(--navy);
     margin-bottom: 16px;
     padding-bottom: 12px;
     border-bottom: 1px solid var(--border);
 }

 .nec-block ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .nec-block ul li {
     font-size: 0.92rem;
     color: var(--text-mid);
     line-height: 1.6;
     padding-left: 18px;
     position: relative;
 }

 .nec-block ul li::before {
     content: '→';
     position: absolute;
     left: 0;
     color: var(--gold);
     font-weight: 700;
 }

 .nec-block ul li a {
     color: var(--navy-light);
     font-weight: 600;
     text-decoration: none;
     border-bottom: 1px solid transparent;
     transition: var(--transition);
 }

 .nec-block ul li a:hover {
     border-bottom-color: var(--gold);
     color: var(--gold);
 }

 .nec-block p {
     font-size: 0.92rem;
     color: var(--text-mid);
     line-height: 1.7;
     margin-bottom: 12px;
 }

 .step-box {
     background: var(--cream);
     border-radius: var(--radius-md);
     padding: 28px 32px;
     border-left: 4px solid var(--gold);
     margin-top: 16px;
 }

 .step-box h3 {
     font-family: 'Open Sans', sans-serif;
     font-size: 1rem;
     color: var(--navy);
     margin-bottom: 12px;
     padding: 0;
     border: none;
 }

 .btn-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--navy);
     color: var(--white);
     padding: 10px 20px;
     border-radius: var(--radius-sm);
     font-size: 0.82rem;
     font-weight: 600;
     text-decoration: none;
     letter-spacing: 0.04em;
     transition: var(--transition);
     margin-top: 12px;
 }

 .btn-link:hover {
     background: var(--navy-light);
     transform: translateX(3px);
 }

 /* ============================================
           DOCS
        ============================================ */
 .docs {
     padding: 100px 0;
     background: var(--cream);
 }

 .docs-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-top: 48px;
 }

 .doc-card {
     background: var(--white);
     border-radius: var(--radius-md);
     padding: 32px;
     border: 1px solid var(--border);
     box-shadow: var(--shadow-sm);
 }

 .doc-card h3 {
     font-family: 'Open Sans', sans-serif;
     font-size: 1rem;
     color: var(--navy);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .doc-card h3 i {
     color: var(--gold);
 }

 .doc-card ul,
 .doc-card>ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 9px;
 }

 .doc-card ul li,
 .doc-card>ul li {
     font-size: 0.88rem;
     color: var(--text-mid);
     padding-left: 16px;
     position: relative;
     line-height: 1.5;
 }

 .doc-card ul li::before,
 .doc-card>ul li::before {
     content: '·';
     position: absolute;
     left: 0;
     color: var(--gold);
     font-weight: 900;
     font-size: 1.2rem;
     line-height: 1.1;
 }

 .doc-card .sub-list {
     margin-top: 8px;
     padding-left: 12px;
     border-left: 2px solid var(--border);
 }

 .questions-card {
     grid-column: 1 / -1;
     background: var(--navy);
     color: var(--white);
     border-radius: var(--radius-md);
     padding: 36px;
 }

 .questions-card h3 {
     font-family: 'Open Sans', sans-serif;
     font-size: 1.2rem;
     color: var(--gold-light);
     margin-bottom: 24px;
 }

 .questions-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .question-item {
     background: rgba(255, 255, 255, 0.06);
     border-radius: var(--radius-sm);
     padding: 20px;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .question-item strong {
     display: block;
     color: var(--gold-light);
     font-size: 0.88rem;
     margin-bottom: 8px;
 }

 .question-item p {
     font-size: 0.85rem;
     opacity: 0.75;
     line-height: 1.6;
 }

 /* ============================================
           FAQ ACCORDION
        ============================================ */
 .faq {
     padding: 100px 0;
     background: var(--white);
 }

 .accordion-list {
     margin-top: 48px;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .accordion-item {
     border: 1px solid var(--border);
     border-radius: var(--radius-md);
     overflow: hidden;
     transition: var(--transition);
 }

 .accordion-item:hover {
     border-color: var(--gold);
 }

 .accordion-item-header {
     padding: 22px 28px;
     font-size: 0.95rem;
     font-weight: 600;
     color: var(--text-dark);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     background: var(--white);
     transition: var(--transition);
 }

 .accordion-item-header:hover {
     background: var(--cream);
     color: var(--navy);
 }

 .accordion-item-header::after {
     content: "\002B";
     font-size: 1.5rem;
     color: var(--gold);
     flex-shrink: 0;
     line-height: 1;
 }

 .accordion-item-header.active {
     background: var(--navy);
     color: var(--white);
 }

 .accordion-item-header.active::after {
     content: "\2212";
     color: var(--gold-light);
 }

 .accordion-item-body {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
 }

 .accordion-item-body-content {
     padding: 24px 28px;
     font-size: 0.9rem;
     color: var(--text-mid);
     line-height: 1.75;
     border-top: 1px solid var(--border);
     background: var(--cream);
 }

 /* ============================================
           TARIFAS
        ============================================ */
 .tarifas {
     padding: 100px 0;
     background: var(--cream);
 }

 .tarifas-intro {
     font-size: 1rem;
     color: var(--text-mid);
     line-height: 1.8;
     max-width: 840px;
     margin-top: 28px;
     margin-bottom: 56px;
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-bottom: 56px;
 }

 .pricing-card {
     background: var(--white);
     border-radius: var(--radius-md);
     padding: 36px 28px;
     border: 2px solid var(--border);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
 }

 .pricing-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: var(--gold);
     transform: scaleX(0);
     transition: var(--transition);
 }

 .pricing-card:hover {
     border-color: var(--gold);
     box-shadow: var(--shadow-md);
     transform: translateY(-4px);
 }

 .pricing-card:hover::before {
     transform: scaleX(1);
 }

 .pricing-card .discount-badge {
     display: inline-block;
     background: rgba(212, 85, 127, 0.15);
     color: var(--gold);
     font-size: 0.72rem;
     font-weight: 700;
     padding: 4px 12px;
     border-radius: 100px;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 16px;
 }

 .pricing-card h3 {
     font-family: 'Open Sans', sans-serif;
     font-size: 1.1rem;
     color: var(--navy);
     margin-bottom: 16px;
     line-height: 1.3;
 }

 .pricing-card p {
     font-size: 0.88rem;
     color: var(--text-mid);
     line-height: 1.7;
     margin-bottom: 24px;
 }

 .pricing-card .price {
     font-family: 'Open Sans', sans-serif;
     font-size: 2rem;
     color: var(--navy);
     font-weight: 700;
 }

 .pricing-card .price-original {
     font-size: 1rem;
     color: var(--text-light);
     text-decoration: line-through;
     margin-left: 8px;
 }

 .btn-card {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--navy);
     color: var(--white);
     padding: 12px 22px;
     border-radius: var(--radius-sm);
     font-size: 0.82rem;
     font-weight: 600;
     text-decoration: none;
     transition: var(--transition);
     margin-top: 20px;
     text-transform: uppercase;
     letter-spacing: 0.06em;
 }

 .btn-card:hover {
     background: var(--gold);
     color: var(--navy);
 }

 /* Payment methods */
 .payment-section {
     background: var(--navy);
     border-radius: var(--radius-lg);
     padding: 48px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
     margin-bottom: 48px;
 }

 .payment-section h2 {
     font-family: 'Open Sans', sans-serif;
     font-size: 1.6rem;
     color: var(--white);
     margin-bottom: 12px;
 }

 .payment-section>div:first-child p {
     color: rgba(255, 255, 255, 0.65);
     font-size: 0.9rem;
     line-height: 1.7;
 }

 .payment-methods {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .payment-method {
     display: flex;
     align-items: center;
     gap: 14px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-sm);
     padding: 14px 18px;
 }

 .payment-method i {
     color: var(--gold);
     font-size: 1.1rem;
     width: 20px;
 }

 .payment-method div strong {
     display: block;
     color: var(--white);
     font-size: 0.88rem;
 }

 .payment-method div span {
     color: rgba(255, 255, 255, 0.55);
     font-size: 0.8rem;
 }

 /* CTA Banner */
 .cta-banner {
     background: linear-gradient(135deg, rgba(42, 18, 98, 0.95), rgba(74, 34, 168, 0.9)),
         url('img/fondo-contacto.png') center / cover;
     border-radius: var(--radius-lg);
     padding: 56px 48px;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .cta-item {
     text-align: center;
     padding: 32px 24px;
     border: 1px solid rgba(212, 85, 127, 0.25);
     border-radius: var(--radius-md);
     transition: var(--transition);
 }

 .cta-item:hover {
     background: rgba(212, 85, 127, 0.08);
     border-color: var(--gold);
 }

 .cta-item p {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.82rem;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     margin-bottom: 8px;
 }

 .cta-item h3 {
     font-family: 'Open Sans', sans-serif;
     color: var(--white);
     font-size: 1.2rem;
     margin-bottom: 20px;
 }

 .btn-gold {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--gold);
     color: var(--navy);
     padding: 12px 24px;
     border-radius: var(--radius-sm);
     font-size: 0.82rem;
     font-weight: 700;
     text-decoration: none;
     text-transform: uppercase;
     letter-spacing: 0.06em;
     transition: var(--transition);
     border: none;
     cursor: pointer;
 }

 .btn-gold:hover {
     background: var(--gold-light);
     transform: translateY(-2px);
 }

 /* ============================================
           CAMBIOS / REFORMA
        ============================================ */
 .cambios {
     padding: 100px 0;
     background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
     position: relative;
 }

 .cambios::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url('img/fondo-contacto.png') center/cover;
     opacity: 0.08;
 }

 .cambios .container {
     position: relative;
 }

 .cambios .section-title {
     color: var(--white);
 }

 .uvt-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
     margin: 40px 0;
 }

 .uvt-card {
     background: rgba(255, 255, 255, 0.07);
     border: 1px solid rgba(212, 85, 127, 0.25);
     border-radius: var(--radius-md);
     padding: 24px;
     text-align: center;
 }

 .uvt-card .year {
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.5);
     text-transform: uppercase;
     letter-spacing: 0.1em;
 }

 .uvt-card .value {
     font-family: 'Open Sans', sans-serif;
     font-size: 1.6rem;
     color: var(--gold-light);
     margin: 8px 0 4px;
 }

 .uvt-card .label {
     font-size: 0.78rem;
     color: rgba(255, 255, 255, 0.45);
 }

 .changes-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .changes-list li {
     display: flex;
     gap: 16px;
     font-size: 0.92rem;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.65;
     padding: 18px 20px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: var(--radius-sm);
     border-left: 3px solid var(--gold);
 }

 .changes-list li i {
     color: var(--gold);
     margin-top: 3px;
     flex-shrink: 0;
 }

 /* ============================================
           SERVICIOS
        ============================================ */
 .servicios {
     padding: 100px 0;
     background: var(--cream);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
     margin-top: 48px;
 }

 .service-card {
     background: var(--white);
     border-radius: var(--radius-md);
     padding: 32px 24px;
     border: 1px solid var(--border);
     transition: var(--transition);
     position: relative;
 }

 .service-card:hover {
     box-shadow: var(--shadow-md);
     transform: translateY(-4px);
     border-color: var(--gold);
 }

 .service-icon {
     width: 52px;
     height: 52px;
     background: rgba(212, 85, 127, 0.12);
     border-radius: var(--radius-sm);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     color: var(--gold);
     font-size: 1.3rem;
     transition: var(--transition);
 }

 .service-card:hover .service-icon {
     background: var(--gold);
     color: var(--navy);
 }

 .service-card h3 {
     font-family: 'Open Sans', sans-serif;
     font-size: 1rem;
     color: var(--navy);
     margin-bottom: 16px;
     font-weight: 700;
 }

 .service-card ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .service-card ul li {
     font-size: 0.83rem;
     color: var(--text-mid);
     padding-left: 14px;
     position: relative;
     line-height: 1.5;
 }

 .service-card ul li::before {
     content: '·';
     position: absolute;
     left: 0;
     color: var(--gold);
     font-weight: 900;
 }

 /* ============================================
           CONTACTO
        ============================================ */
 .contacto {
     padding: 100px 0;
     background: var(--navy);
 }

 .contacto .section-title {
     color: var(--white);
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-top: 48px;
 }

 .contact-card {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-md);
     padding: 36px;
     display: flex;
     align-items: center;
     gap: 24px;
     transition: var(--transition);
 }

 .contact-card:hover {
     background: rgba(212, 85, 127, 0.1);
     border-color: var(--gold);
 }

 .contact-icon {
     width: 56px;
     height: 56px;
     background: var(--gold);
     border-radius: var(--radius-sm);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--navy);
     font-size: 1.3rem;
     flex-shrink: 0;
 }

 .contact-info h4 {
     font-size: 0.78rem;
     color: var(--gold-light);
     text-transform: uppercase;
     letter-spacing: 0.1em;
     margin-bottom: 6px;
 }

 .contact-info p {
     color: var(--white);
     font-size: 1.05rem;
     font-weight: 600;
 }

 /* ============================================
           FOOTER
        ============================================ */
 footer {
     background: #0D0620;
     padding: 32px;
     text-align: center;
     border-top: 1px solid rgba(255, 255, 255, 0.06);
 }

 footer p {
     color: var(--text-light);
     font-size: 0.82rem;
 }

 footer .txtAzul {
     color: var(--gold);
 }

 /* ============================================
           MOBILE NAV OVERLAY
        ============================================ */
 .mobile-nav {
     display: none;
     position: fixed;
     inset: 0;
     background: var(--navy);
     z-index: 2000;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 24px;
 }

 .mobile-nav.open {
     display: flex;
 }

 .mobile-nav a {
     color: var(--white);
     text-decoration: none;
     font-size: 1.2rem;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     transition: var(--transition);
 }

 .mobile-nav a:hover {
     color: var(--gold-light);
 }

 .mobile-close {
     position: absolute;
     top: 28px;
     right: 28px;
     background: none;
     border: none;
     color: var(--white);
     font-size: 1.8rem;
     cursor: pointer;
 }

 /* ============================================
           RESPONSIVE
        ============================================ */
 nav {
    display: block;
}

.nav-toggle {
    display: none;
}

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .sobre-mi-banner-icon,
    .fechas-info-icon {
        display: none;
    }

    .sobre-mi-banner {
        padding: 22px 24px;
    }

    .intro-text-fechas {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 28px;
        flex-wrap: wrap;
    }

    .sobre-mi-grid,
    .obligados-new,
    .necesidades-grid,
    .docs-content,
    .pricing-grid,
    .payment-section,
    .cta-banner,
    .uvt-grid,
    .services-grid,
    .contact-grid,
    .questions-grid {
        grid-template-columns: 1fr;
    }

    .questions-card {
        grid-column: auto;
    }

    .sobre-mi-image {
        display: none;
    }

    .credential-badge {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .payment-section {
        padding: 32px 24px;
    }

    .cta-banner {
        padding: 32px 24px;
        grid-template-columns: 1fr;
    }
}