 :root {
            --primary-color: #0E3A6D;
            --secondary-color: #7BA23F;
            --accent-color: #7BA23F;
            --bg-light: #F4F7F9;
            --bg-dark: #09232F;
            --text-main: #1E2A3A;
            --text-muted: #4A5B6E;
            --white: #FFFFFF;
            --border-color: #D1DBE5;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --font-sans: 'Montserrat', sans-serif;
            --font-serif: 'Playfair Display', serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.2;
        }

        p {
            color: var(--text-muted);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(14, 58, 109, 0.25);
        }

        .btn-primary:hover {
            background-color: #0B2E55;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(14, 58, 109, 0.35);
        }

        .btn-accent {
            background-color: var(--accent-color);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(123, 162, 63, 0.3);
        }

        .btn-accent:hover {
            background-color: #6A8F36;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(123, 162, 63, 0.4);
        }

        .btn-outline {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }

        .btn-secondary {
            background-color: var(--bg-light);
            color: var(--text-main);
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background-color: #E4EBF0;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 24px 0;
            transition: var(--transition);
        }

        .header.sticky {
            position: fixed;
            background-color: rgba(9, 35, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 14px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 55px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .nav-link:hover {
            color: var(--white);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 200;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background-color: var(--white);
            border-radius: 2px;
            transition: var(--transition);
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            padding-top: 140px;
            padding-bottom: 80px;
            background-color: var(--bg-dark);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.35;
            background: linear-gradient(135deg, rgba(14, 58, 109, 0.6) 0%, rgba(9, 35, 47, 0.55) 100%),
                url('banner-home.jpg') no-repeat center center;
            background-size: cover;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: table;
            width: 100%;
        }

        .hero-row {
            display: table-row;
        }

        .hero-left {
            display: table-cell;
            width: 60%;
            vertical-align: middle;
            padding-right: 40px;
        }

        .hero-right {
            display: table-cell;
            width: 40%;
            vertical-align: middle;
        }

        .hero-tag {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--secondary-color);
            margin-bottom: 16px;
            display: block;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 24px;
            line-height: 1.15;
        }

        .hero-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
            max-width: 540px;
        }

        .hero-features {
            margin-bottom: 40px;
        }

        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-feature-item svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: var(--secondary-color);
            stroke-width: 2.5;
            flex-shrink: 0;
        }

        .hero-cta-wrapper {
            display: block;
        }

        .hero-disclaimer {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 12px;
            display: block;
        }

        .trust-section {
            background-color: var(--white);
            padding: 30px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            position: relative;
            z-index: 10;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .trust-item {
            padding: 12px 8px;
            transition: var(--transition);
            border-radius: 12px;
        }

        .trust-item:hover {
            transform: translateY(-2px);
            background-color: rgba(14, 58, 109, 0.02);
        }

        .trust-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 10px auto;
            color: var(--primary-color);
        }

        .trust-icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .trust-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--bg-dark);
            line-height: 1.2;
            margin-bottom: 2px;
            letter-spacing: -0.5px;
        }

        .trust-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .why-invest {
            padding: 100px 0;
            background-color: var(--white);
        }

        .section-wrapper {
            display: table;
            width: 100%;
        }

        .section-cell-text {
            display: table-cell;
            width: 50%;
            vertical-align: middle;
            padding-right: 60px;
        }

        .section-cell-img {
            display: table-cell;
            width: 50%;
            vertical-align: middle;
        }

        .section-title {
            font-size: 2.2rem;
            color: var(--bg-dark);
            margin-bottom: 24px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            margin-top: 16px;
        }

        .why-invest-p {
            font-size: 1.05rem;
            margin-bottom: 20px;
            text-align: justify;
        }

        .image-container-premium {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .image-overlay-card {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background-color: var(--bg-dark);
            color: var(--white);
            padding: 20px 30px;
            border-left: 4px solid var(--secondary-color);
            max-width: 280px;
        }

        .image-overlay-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .image-overlay-card h4 {
            font-size: 1.2rem;
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
        }

        .seguridad-rentabilidad {
            padding: 100px 0;
            background-color: var(--bg-light);
        }

        .seguridad-rentabilidad .section-title {
            text-align: center;
        }

        .seguridad-rentabilidad .section-title::after {
            margin: 16px auto 0;
        }

        .seguridad-rentabilidad .intro-text {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px auto;
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }

        .benefit-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid rgba(14, 58, 109, 0.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(14, 58, 109, 0.08);
            border-color: rgba(14, 58, 109, 0.1);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: rgba(14, 58, 109, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .benefit-card:hover .benefit-icon {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .benefit-icon svg {
            width: 26px;
            height: 26px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .benefit-card h4 {
            font-size: 1.05rem;
            color: var(--bg-dark);
            margin-bottom: 10px;
        }

        .benefit-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        /* --- NUEVA SECCIÓN: ¿QUÉ NECESITAS PARA COMENZAR A INVERTIR? --- */
        .necesitas-section {
            padding: 120px 0;
            background-color: var(--white);
        }

        .necesitas-header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 70px auto;
        }

        .necesitas-header .section-title {
            display: inline-block;
            margin-bottom: 20px;
        }

        .necesitas-header .section-title::after {
            margin: 16px auto 0;
        }

        .necesitas-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 650px;
            margin: 0 auto;
        }

        .necesitas-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .necesitas-card {
            background-color: var(--white);
            border-radius: 14px;
            padding: 40px 30px 30px;
            border: 1px solid rgba(14, 58, 109, 0.06);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .necesitas-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .necesitas-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(14, 58, 109, 0.1);
            border-color: rgba(14, 58, 109, 0.12);
        }

        .necesitas-card:hover::before {
            opacity: 1;
        }

        .necesitas-icon-wrapper {
            width: 62px;
            height: 62px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(14, 58, 109, 0.05) 0%, rgba(123, 162, 63, 0.08) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            font-size: 2rem;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .necesitas-card:hover .necesitas-icon-wrapper {
            background: linear-gradient(135deg, rgba(14, 58, 109, 0.1) 0%, rgba(123, 162, 63, 0.15) 100%);
            transform: scale(1.05);
        }

        .necesitas-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--bg-dark);
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }

        .necesitas-card-subtitle {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 14px;
            letter-spacing: 0.2px;
        }

        .necesitas-card-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .necesitas-card-divider {
            width: 40px;
            height: 2px;
            background-color: rgba(14, 58, 109, 0.15);
            margin-bottom: 16px;
            border-radius: 1px;
            transition: var(--transition);
        }

        .necesitas-card:hover .necesitas-card-divider {
            width: 55px;
            background-color: var(--primary-color);
        }

        .necesitas-card-footer {
            font-size: 0.82rem;
            color: #6B7D8E;
            line-height: 1.5;
            font-weight: 500;
        }

        /* --- SECTION: PROCESO --- */
        .process {
            padding: 100px 0;
            background-color: var(--white);
        }

        .process-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            gap: 20px;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-number-box {
            width: 60px;
            height: 60px;
            background-color: var(--white);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
            margin: 0 auto 24px auto;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .process-step:hover .step-number-box {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 0 0 6px rgba(14, 58, 109, 0.15);
        }

        .process-step h4 {
            font-size: 1.05rem;
            color: var(--bg-dark);
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 0.9rem;
        }

        .process-steps::before {
            content: "";
            position: absolute;
            top: 30px;
            left: calc(12.5% + 30px);
            right: calc(12.5% + 30px);
            height: 2px;
            background: var(--bg-light);
            z-index: 1;
        }

        .lead-capture {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--bg-dark) 0%, #06151c 100%);
        }

        .form-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 45px 50px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
            max-width: 620px;
            margin: 0 auto;
        }

        .form-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .form-header h2 {
            font-size: 1.8rem;
            color: var(--bg-dark);
            margin-bottom: 8px;
        }

        .wizard-progress {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
            max-width: 85%;
            margin-left: auto;
            margin-right: auto;
        }

        .wizard-progress::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            height: 3px;
            width: 100%;
            background-color: var(--bg-light);
            z-index: 1;
        }

        .wizard-progress-bar {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            height: 3px;
            width: 0%;
            background-color: var(--primary-color);
            z-index: 1;
            transition: width 0.4s ease;
        }

        .wizard-step-indicator {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: var(--white);
            border: 2px solid var(--border-color);
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.85rem;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .wizard-step-indicator.active {
            border-color: var(--primary-color);
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 0 0 4px rgba(14, 58, 109, 0.15);
        }

        .wizard-step-indicator.completed {
            border-color: var(--secondary-color);
            background-color: var(--secondary-color);
            color: var(--white);
        }

        .wizard-step {
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .wizard-step.active {
            display: block;
            opacity: 1;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--bg-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: var(--font-sans);
            font-size: 0.95rem;
            color: var(--text-main);
            transition: var(--transition);
            background-color: #FCFDFE;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(14, 58, 109, 0.1);
            background-color: var(--white);
        }

        .radio-group-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .radio-option {
            position: relative;
            display: flex;
            align-items: center;
            padding: 14px 16px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            background-color: #FCFDFE;
        }

        .radio-option:hover {
            border-color: var(--primary-color);
            background-color: rgba(14, 58, 109, 0.02);
        }

        .radio-option input[type="radio"] {
            margin-right: 12px;
            accent-color: var(--primary-color);
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .radio-option span {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-main);
        }

        .radio-option.selected {
            border-color: var(--primary-color);
            background-color: rgba(14, 58, 109, 0.04);
            box-shadow: 0 0 0 1px var(--primary-color);
        }

        .error-msg {
            color: #D32F2F;
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }

        .form-control.invalid {
            border-color: #D32F2F;
            background-color: #FFF8F8;
        }

        .wizard-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            border-top: 1px solid var(--bg-light);
            padding-top: 20px;
        }

        .wizard-actions .btn {
            min-width: 130px;
            padding: 14px 24px;
        }

        .wizard-success-screen {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .success-icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(123, 162, 63, 0.1);
            color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px auto;
        }

        .success-icon-box svg {
            width: 35px;
            height: 35px;
            fill: none;
            stroke: currentColor;
            stroke-width: 3;
        }

        .wizard-success-screen h3 {
            font-size: 1.6rem;
            color: var(--bg-dark);
            margin-bottom: 12px;
        }

        .footer {
            background-color: #05141D;
            color: rgba(255, 255, 255, 0.6);
            padding: 80px 0 30px 0;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-columns {
            display: table;
            width: 100%;
            margin-bottom: 60px;
        }

        .footer-col {
            display: table-cell;
            vertical-align: top;
            padding-right: 40px;
        }

        .footer-col:last-child {
            padding-right: 0;
        }

        .footer-brand-col {
            width: 40%;
        }

        .footer-links-col {
            width: 30%;
        }

        .footer-contact-col {
            width: 30%;
        }

        .footer .logo {
            margin-bottom: 24px;
        }

        .footer-about {
            line-height: 1.7;
            max-width: 340px;
        }

        .footer-title {
            color: var(--white);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 4px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-contact-item svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: var(--secondary-color);
            stroke-width: 2;
            margin-top: 3px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.8rem;
        }

        .footer-legal-links {
            display: flex;
            gap: 24px;
        }

        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background-color: #25D366;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
            z-index: 999;
            transition: var(--transition);
        }

        .whatsapp-btn:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-btn svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        @media (max-width: 992px) {
            html {
                font-size: 15px;
            }

            .hero-left,
            .hero-right,
            .section-cell-text,
            .section-cell-img,
            .process-step,
            .footer-col {
                display: block;
                width: 100% !important;
                padding-right: 0 !important;
                margin-bottom: 40px;
            }

            .hero .container {
                display: block;
            }

            .hero-row {
                display: block;
            }

            .hero-left {
                margin-bottom: 50px;
                text-align: center;
            }

            .hero-desc {
                margin: 0 auto 32px auto;
            }

            .hero-features {
                display: inline-block;
                text-align: left;
            }

            .section-wrapper,
            .process-steps,
            .footer-columns {
                display: block;
            }

            .process-steps::before {
                display: none;
            }

            .process-step {
                margin-bottom: 30px;
            }

            .form-card {
                padding: 35px 24px;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: rgba(9, 35, 47, 0.97);
                backdrop-filter: blur(8px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                padding: 40px 20px;
                z-index: 150;
                transition: opacity 0.3s ease;
            }

            .nav-menu.open {
                display: flex;
            }

            .nav-link {
                font-size: 1.2rem;
                color: var(--white);
            }

            .nav-menu .btn-outline {
                border-color: var(--white);
                padding: 12px 30px;
                font-size: 1rem;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .necesitas-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .necesitas-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .necesitas-card {
                padding: 30px 20px 24px;
            }

            .necesitas-icon-wrapper {
                width: 52px;
                height: 52px;
                font-size: 1.7rem;
                border-radius: 14px;
                margin-bottom: 18px;
            }

            .necesitas-card-title {
                font-size: 1.05rem;
            }

            .necesitas-card-subtitle {
                font-size: 0.85rem;
            }

            .necesitas-card-desc {
                font-size: 0.9rem;
            }

            .necesitas-card-footer {
                font-size: 0.78rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .trust-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .trust-item {
                padding: 15px 10px;
            }

            .trust-number {
                font-size: 2rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .benefit-card {
                padding: 25px 20px;
            }

            .necesitas-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .necesitas-section {
                padding: 80px 0;
            }

            .necesitas-header {
                margin-bottom: 45px;
            }

            .necesitas-card {
                padding: 28px 22px 22px;
                border-radius: 12px;
            }

            .necesitas-icon-wrapper {
                width: 50px;
                height: 50px;
                font-size: 1.6rem;
                border-radius: 12px;
                margin-bottom: 16px;
            }
        }