* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
}

body {
    background-color: rgb(248, 249, 250);
}

/* ==================================================================
   ESTILOS BASE (ESCRITORIO GRANDE - MAYOR A 1300px)
   ================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding: 24px 40px; /* Reducido ligeramente para dar más aire en los bordes */
    box-shadow: rgba(0, 0, 0, 0.02) 0px 2px 10px;
    position: relative;
    z-index: 1000;
    box-sizing: border-box;
}

.logo img {
    height: 32px;
    display: block;
    object-fit: contain;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}

/* Centrado absoluto para pantallas de escritorio reales */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px; /* Separación balanceada para evitar colisiones */
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: rgb(60, 162, 244);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    transition: 0.2s;
    display: inline-block;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.btn-recursos {
    color: rgb(0, 0, 0);
    border: 1px solid rgb(226, 232, 240);
    background-color: transparent;
}

.btn-recursos:hover {
    background-color: rgb(248, 250, 252);
    border-color: rgb(203, 213, 225);
}

.btn-demo {
    color: rgb(255, 255, 255);
    background-color: rgb(60, 162, 244);
    border: 1px solid rgb(60, 162, 244);
}

.btn-demo:hover {
    background-color: rgb(37, 140, 219);
    border-color: rgb(37, 140, 219);
}

.hamburger {
    display: none; /* Oculto en pantallas grandes */
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 2.5px;
    background-color: rgb(17, 24, 39);
    border-radius: 2px;
    transition: 0.3s;
}

/* ==================================================================
   MENÚ MÓVIL (PANTALLAS LAPTOPS, TABLETS Y MÓVILES - MENOR A 1300px)
   ================================================================== */
@media (max-width: 1300px) {
    .navbar {
        padding: 18px 24px;
    }

    .hamburger {
        display: flex; /* Aparece el botón hamburguesa */
    }

    .nav-container {
        position: absolute;
        top: 100%;
        left: 0px;
        width: 100%;
        background-color: rgb(255, 255, 255);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 28px;
        padding: 32px 24px;
        margin-left: 0px;
        border-top: 1px solid rgb(241, 245, 249);
        box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 20px -3px;
        box-sizing: border-box;
        
        /* Animación suave de despliegue */
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s, transform 0.3s;
        
        /* Scroll interno si el dispositivo es muy bajo (ej. modo horizontal) */
        max-height: calc(100vh - 100%);
        overflow-y: auto; 
    }

    .nav-container.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0px);
    }

    /* Desactivamos el centrado absoluto para que se listen verticalmente */
    .nav-menu {
        position: static; 
        transform: none;
        left: auto;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 16px;
        font-weight: 500;
        display: block;
        width: 100%;
        padding: 4px 0;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding-top: 16px;
        border-top: 1px solid rgb(241, 245, 249); /* Línea divisoria estética */
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        box-sizing: border-box;
    }

    /* Animación del icono hamburguesa transformándose en X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Section-1 */

.section-1 {
    width: 100%;
    position: relative;
    padding: 70px 90px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(90deg, rgb(255, 255, 255) 38%, rgba(68, 169, 250, 0.7) 48%, rgba(68, 169, 250, 0.88) 53%, rgb(230, 247, 99) 70%, rgb(255, 255, 255) 80%);
    overflow: hidden;
}

.section-1-container {
    max-width: 1600px;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 40px;
    flex-grow: 1;
}

.section-1-content {
    flex: 1 1 0%;
    max-width: 770px;
}

.badge-mexico {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(229, 231, 235);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgb(31, 41, 55);
    margin-bottom: 24px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 3px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: rgb(37, 140, 219);
    border-radius: 50%;
}

.section-1-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: rgb(15, 23, 42);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.text-blue {
    color: rgb(37, 140, 219);
}

.text-lightblue {
    color: rgb(60, 162, 244);
}

.section-1-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgb(100, 116, 139);
    margin-bottom: 32px;
    max-width: 520px;
}

.section-1-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    transition: 0.2s;
    text-align: center;
}

.btn-demo {
    color: rgb(255, 255, 255);
    background-color: rgb(60, 162, 244);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    box-shadow: rgba(60, 162, 244, 0.2) 0px 4px 12px;
}

.btn-demo:hover {
    background-color: rgb(224, 244, 105);
}

.btn-specialist {
    color: rgb(15, 23, 42);
    background-color: rgb(255, 255, 255);
    border: 2px solid rgba(226, 232, 240, 0.27);
}

.btn-specialist:hover {
    border: 2px solid rgb(114, 191, 251);
}

.section-1-footer-note {
    font-size: 13.5px;
    color: rgb(148, 163, 184);
}

.section-1-diagram {
    flex: 1 1 0%;
    display: flex;
    height: 625px;
    justify-content: flex-end;
    align-items: center;
}

.diagram-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 40px;
    width: 100%;
    max-width: 572px;
    height: 500px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 20px 40px;
    justify-content: center;
}

.diagram-title {
    font-size: 18px;
    font-weight: 600;
    color: rgb(15, 23, 42);
    text-align: center;
    margin-bottom: 24px;
}

.flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-block {
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 4px 10px;
}

.flow-block h3 {
    font-size: 15px;
    font-weight: 700;
    color: rgb(15, 23, 42);
    margin-bottom: 2px;
}

.flow-block p {
    font-size: 11px;
    color: rgb(148, 163, 184);
}

.flow-line {
    width: 2px;
    height: 20px;
    background-color: rgb(203, 213, 225);
    margin: 4px 0px;
}

.diagram-footer {
    font-size: 12px;
    line-height: 1.5;
    color: rgb(100, 116, 139);
    text-align: center;
    margin-top: 24px;
}

.features-row {
    max-width: 1280px;
    margin: 40px auto 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    min-width: 160px;
    text-align: center;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: rgb(15, 23, 42);
}

.feature-desc {
    font-size: 10px;
    color: rgb(100, 116, 139);
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .section-1 {
        padding: 60px 0px 0px;
        background: rgb(255, 255, 255);
    }

    .section-1-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }

    .section-1-content {
        max-width: 100%;
        padding: 0px 24px 40px;
    }

    .section-1-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .section-1-diagram {
        width: 100%;
        display: flex;
        justify-content: center;
        background: linear-gradient(90deg, rgb(255, 255, 255) 5%, rgb(60, 162, 244) 45%, rgb(202, 232, 108) 90%, rgb(255, 255, 255) 100%);
        padding: 60px 24px;
        box-sizing: border-box;
    }

    .diagram-card {
        width: 100%;
        max-width: 450px;
        background: rgba(255, 255, 255, 0.24);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0);
        border-radius: 24px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 35px;
    }

    .features-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-top: 40px;
        padding: 0px 24px 40px;
        width: 100%;
        box-sizing: border-box;
    }

    .feature-item {
        flex: 1 1 calc(33.33% - 16px);
        min-width: 140px;
    }
}

@media (max-width: 640px) {
    .section-1-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .features-row {
        display: none !important;
    }
}

/* Section-2 */

.section-2 {
    background-color: rgb(255, 255, 255);
    padding: 100px 40px;
    width: 100%;
}

.section-2-container {
    max-width: 1280px;
    margin: 0px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-2-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-contexto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgb(31, 41, 55);
    margin-bottom: 24px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px;
}

.badge-contexto .badge-dot {
    width: 6px;
    height: 6px;
    background-color: rgb(68, 169, 250);
    border-radius: 50%;
}

.section-2-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: rgb(15, 23, 42);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-2-title .text-highlight {
    color: rgb(68, 169, 250);
}

.section-2-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(71, 85, 105);
}

.section-2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 50px;
}

.section-2-card {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(241, 245, 249);
    border-radius: 24px;
    padding: 44px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.016) 0px 10px 30px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.section-2-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(15, 23, 42, 0.04) 0px 16px 35px;
}

.card-image-wrapper {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: rgb(15, 23, 42);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card-date {
    font-size: 15px;
    color: rgb(100, 116, 139);
    font-weight: 500;
}

.section-2-footer {
    text-align: center;
    max-width: 650px;
    margin-top: 20px;
    background: rgb(248, 250, 252);
    padding: 20px 32px;
    border-radius: 16px;
    border: 1px solid rgb(241, 245, 249);
}

.footer-label {
    font-size: 13px;
    font-weight: 700;
    color: rgb(68, 169, 250);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgb(51, 65, 85);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .section-2 {
        padding: 70px 24px;
    }

    .section-2-title {
        font-size: 32px;
    }

    .section-2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .section-2-grid {
        grid-template-columns: 1fr;
    }

    .section-2-card {
        padding: 36px 20px;
    }

    .section-2-footer {
        padding: 20px;
        text-align: start;
    }
}

/* Section-3 */ 

.section-3 {
    background-color: rgb(255, 255, 255);
    padding: 100px 40px;
    width: 100%;
}

.section-3-container {
    max-width: 1520px;
    margin: 0px auto;
    width: 100%;
}

.section-3-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 40px;
    width: 100%;
    align-items: center;
}

.side-sectors-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sector-vertical-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sector-img-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.sector-asset {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sector-h1-style {
    font-size: 20px;
    font-weight: 700;
    color: rgb(15, 23, 42);
    letter-spacing: -0.01em;
    margin: 0px;
}

.center-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section-3-header {
    text-align: center;
    max-width: 580px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-aplicabilidad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgb(31, 41, 55);
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px;
}

.badge-aplicabilidad .badge-dot {
    width: 6px;
    height: 6px;
    background-color: rgb(68, 169, 250);
    border-radius: 50%;
}

.section-3-title {
    font-size: 52px;
    font-weight: 900;
    color: rgb(15, 23, 42);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-3-title .text-lime {
    color: rgb(224, 244, 105);
}

.section-3-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(71, 85, 105);
}

.validator-center-card {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(241, 245, 249);
    border-radius: 32px;
    padding: 44px 36px;
    box-shadow: rgba(15, 23, 42, 0.03) 0px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.validator-title {
    font-size: 23px;
    font-weight: 700;
    color: rgb(15, 23, 42);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.validator-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(100, 116, 139);
    max-width: 440px;
    margin-bottom: 32px;
}

.validator-features-grid {
    background-color: rgb(248, 250, 252);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.feature-pill {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(241, 245, 249);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.blue-bullet {
    width: 25px;
    height: 25px;
    background-color: rgb(68, 169, 250);
    border-radius: 50%;
    flex-shrink: 0;
}

.pill-text {
    font-size: 12px;
    font-weight: 600;
    color: rgb(30, 41, 59);
}

.btn-validator {
    color: rgb(255, 255, 255);
    background-color: rgb(68, 169, 250);
    border: 1px solid rgb(68, 169, 250);
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: rgba(68, 169, 250, 0.25) 0px 4px 14px;
    text-decoration: none;
    transition: 0.25s;
}

.btn-validator:hover {
    background-color: rgb(224, 244, 104);
    border-color: rgb(224, 244, 104);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .section-3-layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 36px 0px;
    }

    .center-content-col {
        display: contents !important;
    }

    .section-3-header {
        order: 1 !important;
        text-align: center !important;
        width: 100% !important;
    }

    .badge-aplicabilidad {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background-color: #f1f5f9;
        padding: 4px 12px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 600;
        color: #64748b;
        margin-bottom: 16px;
    }

    .badge-dot {
        width: 6px;
        height: 6px;
        background-color: #3b82f6;
        border-radius: 50%;
    }

    .section-3-title {
        font-size: 34px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 16px;
    }

    .section-3-subtitle {
        margin: 0 auto !important;
        max-width: 480px;
        font-size: 15px;
        line-height: 1.5;
        color: #64748b;
    }

    .side-sectors-col {
        order: 2 !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 36px 24px !important;
        width: 100% !important;
        max-width: 440px !important;
        margin: 0 auto !important;
    }

    .sector-vertical-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .sector-img-box {
        width: 56px;
        height: 56px;
        border: 1px solid #e2e8f0;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 12px;
    }

    .sector-asset {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .sector-h1-style {
        font-size: 16px;
        font-weight: 700;
        color: #0f172a;
        margin: 0 !important;
    }

    .validator-center-card {
        order: 3 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 20px 0 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .validator-center-card>*:not(.btn-validator) {
        display: none !important;
    }

    .btn-validator {
        display: inline-block !important;
        width: 100% !important;
        max-width: 290px !important;
        text-align: center !important;
        padding: 14px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
    }
}

@media (max-width: 640px) {
    .side-sectors-col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 16px !important;
    }

    .section-3-title {
        font-size: 32px;
    }

    .section-3-layout {
        gap: 32px 0px;
    }
}

/*Section-4*/

.section-4 {
    background-color: rgb(255, 255, 255);
    padding: 100px 40px 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-4-gradient-strip {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 200px;
    top: 48%;
    background: linear-gradient(270.12deg, rgba(230, 247, 99, 0) 0.6%, rgba(230, 247, 99, 0.5) 13.07%, rgba(68, 169, 250, 0.5) 53.85%, rgba(68, 169, 250, 0) 99.9%);
    z-index: 1;
    pointer-events: none;
}

.section-4-container {
    max-width: 1280px;
    margin: 0px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.section-4-header {
    text-align: left;
    max-width: 840px;
    margin-bottom: 20px;
}

.badge-seguridad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(229, 231, 235);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgb(31, 41, 55);
    margin-bottom: 24px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px;
}

.section-4-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(15, 23, 42);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-4-title .text-purple {
    color: rgb(147, 129, 255);
}

.section-4-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgb(100, 116, 139);
    max-width: 695px;
}

.section-4-visual-wrapper {
    position: relative;
    width: 100%;
    height: 580px;
    margin-top: -40px;
}

.lock-right-image {
    position: absolute;
    z-index: 2;
    width: 330px;
    right: 18%;
    top: 100px;
}

.lock-bg-image {
    position: absolute;
    top: -179px;
    right: -190px;
    width: 370px;
    height: auto;
    object-fit: contain;
}

.tech-card {
    position: absolute;
    background-color: rgb(255, 255, 255);
    border-radius: 0px 16px 16px 16px;
    padding: 0px 15px 15px 0px;
    width: 280px;
    box-shadow: rgba(15, 23, 42, 0.308) 0px 12px 30px;
    z-index: 3;
    transition: transform 0.2s, z-index 0.2s;
}

.tech-card:hover {
    transform: translateY(-2px);
    z-index: 10;
}

.card-line-indicator {
    width: 188px;
    height: 6px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.line-blue {
    background-color: rgb(60, 162, 244);
}

.line-cyan {
    background-color: rgb(107, 226, 230);
}

.line-purple {
    background-color: rgb(180, 147, 255);
}

.line-lime {
    background-color: rgb(202, 232, 108);
}

.line-blue-dark {
    background-color: rgb(37, 140, 219);
}

.line-blue-light {
    background-color: rgb(165, 216, 255);
}

.tech-card-title {
    font-size: 15px;
    font-weight: 700;
    color: rgb(15, 23, 42);
    margin-left: 10px;
    margin-bottom: 6px;
}

.tech-card-desc {
    font-size: 11px;
    line-height: 1.5;
    color: rgb(100, 116, 139);
    margin-left: 10px;
}

.position-1 {
    top: 20px;
    right: 17%;
}

.position-2 {
    top: 96px;
    right: 41%;
}

.position-3 {
    top: 118px;
    right: -11%;
}

.position-4 {
    top: 209px;
    right: 33%;
}

.position-5 {
    top: 295px;
    right: -5%;
}

.position-6 {
    top: 334px;
    right: 22%;
}

@media (max-width: 1100px) {

    .section-4 {
        padding: 60px 24px;
        text-align: center;
    }

    .section-4-gradient-strip {
        display: none;
    }

    .section-4-title {
        font-size: 32px !important;
        text-align: center !important;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .section-4-visual-wrapper {
        position: relative;
        height: auto;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px;
        margin-top: 40px;
        padding-bottom: 20px;
        width: 100%;
    }


    .lock-right-image {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 110px !important;
        width: 350px !important;
        height: auto !important;
        z-index: 1 !important;
        pointer-events: none;
        right: auto !important;
        margin: 0 !important;
    }

    .tech-card {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        max-width: 440px !important;
        background-color: #ffffff !important;
        border: 1px solid rgb(241, 245, 249) !important;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        text-align: left;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        margin: 0 auto !important;
    }
}


/* sECTION 5*/
.section-5 {
    background-color: rgb(255, 255, 255);
    padding: 90px 40px;
    width: 100%;
}

.section-5-container {
    max-width: 1330px;
    margin: 0px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-5-header {
    text-align: center;
    max-width: 762px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-implementacion {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(229, 231, 235);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgb(31, 41, 55);
    margin-bottom: 24px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px;
}

.section-5-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(15, 23, 42);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-5-title .text-gradient {
    background: linear-gradient(90deg, rgb(60, 162, 244) 0%, rgb(107, 226, 230) 100%) text;
    -webkit-text-fill-color: transparent;
}

.section-5-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgb(100, 116, 139);
    max-width: 660px;
}

.process-steps-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 740px;
}

.step-card {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(241, 245, 249);
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: rgba(0, 0, 0, 0.01) 0px 4px 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: rgba(15, 23, 42, 0.03) 0px 10px 25px;
    border-color: rgb(226, 232, 240);
}

.step-number-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgb(99, 179, 244) 0%, rgb(60, 162, 244) 100%);
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(60, 162, 244, 0.35) 0px 8px 20px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: rgb(15, 23, 42);
    letter-spacing: -0.01em;
}

.step-number-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .section-5 {
        padding: 60px 24px;
    }

    .section-5-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .step-card {
        padding: 16px;
        gap: 16px;
        border-radius: 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .step-title {
        font-size: 14px;
        line-height: 1.4;
    }

    .step-number-img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        display: block;
    }
}

.section-6 {
    background-color: rgb(0, 0, 0);
    padding: 100px 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    z-index: 1;
    pointer-events: none;
}

.section-6-container {
    max-width: 780px;
    margin: 0px auto;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-6-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-6-title {
    font-size: 42px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-6-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(148, 163, 184);
    max-width: 680px;
    margin: 0px auto;
}

.demo-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.demo-form input[type="text"],
.demo-form input[type="email"],
.demo-form input[type="tel"],
.demo-form select,
.demo-form textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-form textarea {
    border-radius: 20px;
    resize: none;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.demo-form textarea::placeholder {
    text-align: left;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    border-color: rgb(60, 162, 244);
    box-shadow: rgba(60, 162, 244, 0.2) 0px 0px 10px;
}

.form-label {
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 700;
    margin-left: 4px;
    margin-bottom: 8px;
    text-align: left;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.demo-form select {
    appearance: none;
    cursor: pointer;
    padding-left: 24px;
    text-align: center;
    font-weight: 700;
}

.demo-form select option {
    background-color: rgb(18, 18, 18);
    color: rgb(255, 255, 255);
    font-weight: 500;
    padding: 12px;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgb(255, 255, 255);
    pointer-events: none;
}

.form-note {
    font-size: 12px;
    color: rgb(100, 116, 139);
    text-align: left;
    margin-top: -4px;
    margin-left: 4px;
}

.form-submit-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.btn-submit {
    color: rgb(255, 255, 255);
    background-color: rgb(60, 162, 244);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 16px 50px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: rgba(60, 162, 244, 0.3) 0px 4px 20px;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-submit:hover {
    background-color: rgb(37, 140, 219);
}

.btn-submit:active {
    transform: scale(0.98);
}

.form-success-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(60, 162, 244, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    max-width: 580px;
    width: 100%;
    animation: 0.4s ease 0s 1 normal forwards running fadeIn;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(60, 162, 244, 0.1);
    color: rgb(60, 162, 244);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 20px;
}

.success-icon svg {
    width: 28px;
    height: 28px;
}

.success-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: rgb(255, 255, 255);
}

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

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .section-6 {
        padding: 60px 24px;
    }

    .section-6-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.site-footer {
    background-color: rgb(0, 0, 0);
    padding: 80px 40px 40px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.footer-container {
    max-width: 1240px;
    margin: 0px auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.footer-logo .logo-dark-blue {
    color: rgb(30, 58, 138);
}

.footer-logo .logo-cyan-blue {
    color: rgb(60, 162, 244);
}

.social-btn {
    width: 38px;
    height: 38px;
    background-color: rgb(39, 39, 42);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: background-color 0.2s, transform 0.15s;
}

.social-btn i {
    font-size: 16px;
    display: block;
}

.social-btn:hover {
    background-color: rgb(63, 63, 70);
    transform: translateY(-2px);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-menu {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-menu a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-block;
}

.footer-menu a:hover {
    color: rgb(60, 162, 244);
}

.footer-bottom {
    max-width: 1240px;
    margin: 60px auto 0px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    width: 100%;
}

.copyright-text {
    color: rgb(148, 163, 184);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-col {
        grid-column: span 2;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 60px 24px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-brand-col {
        grid-column: span 1;
        gap: 24px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 24px;
    }
}