.web {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    scroll-margin-top: 70px;
    margin: 0px 55px 10px 20px;
    margin-bottom: 6rem;
}

.web .titulo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    padding-left: 3rem;
}

.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.dev-badge i {
    font-size: 0.8rem;
    color: #4fc3f7;
}

.dev-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.dev-title .highlight-gradient {
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-title .highlight-dark {
    color: #ffffff;
}

.dev-title .highlight-blue {
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 90%;
}

.dev-description strong {
    color: #1a73e8;
}

.dev-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.5rem;
    margin-bottom: 2rem;
}

.dev-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dev-feature:hover {
    transform: translateX(4px);
}

.dev-feature i {
    width: 36px;
    height: 36px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dev-feature:hover i {
    background: #1a73e8;
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

.dev-feature div {
    display: flex;
    flex-direction: column;
}

.dev-feature-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.dev-feature-desc {
    font-size: 0.65rem;
    color: #b1b1b1;
    font-weight: 400;
}


/*======================================================
    VISTA
======================================================*/
.web .vista {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.build-demo {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.building-page {
    max-width: 700px;
    height: 700px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 0.8rem 0.5rem 0.8rem;
    box-shadow: 10px 20px 38px rgba(92, 92, 92, 0.479);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

/* ============================================
   BARRA DE PROGRESO
   ============================================ */
.build-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5px;
}

.build-progress .build-timer {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    color: #006eff;
    font-variant-numeric: tabular-nums;
}

.build-progress .build-counter {
    font-size: 0.7rem;
    font-weight: 600;
    color: #58a6ff;
    background: #0d1117;
    padding: 0.2rem 0.8rem;
    border-radius: 100px;
    border: 1px solid #1e2a3a;
}

/* ============================================
   ELEMENTOS REALES - ANIMACIÓN DE APARICIÓN
   ============================================ */
.real-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.real-item.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   HEADER
   ============================================ */
.page-header-build {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1rem 1rem;
    border-bottom: 2px solid #3980dd;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    min-height: 60px;
    background: #ffffff;
}


/* ============================================
   HERO
   ============================================ */
.page-hero-build {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 1rem;
    flex: 1;
    min-height: 300px;
}

.uno {
    font-size: 1.4rem; 
    color: #3893fa; 
    width: 22px; 
    height: 22px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.dos {
    font-size: 1.2rem; 
    font-weight: 800; 
    background: linear-gradient(135deg, #3893fa, #79c0ff); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text;
}

.tres {
    font-size: 1.2rem; 
    font-weight: 800; 
    background: #143049; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text;
}

.cuatro {
    font-size: 0.8rem; 
    font-weight: 500; 
    color: #143049; 
    text-decoration: none; 
    margin-left: auto;
}

.cinco {
    font-size: 0.8rem; 
    font-weight: 500; 
    color: #143049; 
    text-decoration: none;
}

.seis {
    font-size: 0.8rem; 
    font-weight: 500; 
    color: #143049; 
    text-decoration: none;
}

.siete {
    background: #3893fa; 
    color: #ffffff; 
    padding: 0.4rem 1.2rem;
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 0.7rem; 
    text-decoration: none;
}

.ocho {
    font-size: 3rem; 
    font-weight: 800; 
    line-height: 1.08; 
    color: #34a853; 
    margin-bottom: 0.5rem;
    margin-top: 50px;
}

.nueve {
    font-size: 3.2rem; 
    font-weight: 900; 
    line-height: 1.08; 
    background: linear-gradient(135deg, #3893fa, #79c0ff); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    margin-bottom: 0.5rem;
}

.dies {
    font-size: 3rem; 
    font-weight: 800; 
    line-height: 1.08; 
    color: #fbbc05; 
    margin-bottom: 0.5rem;
}

.once {
    font-size: 1rem; 
    line-height: 1.7; 
    color: #838f9c;
    max-width: 90%; 
    margin-bottom: 0.5rem;
}

.doce {
    display: inline-block; 
    background: #3893fa; 
    color: #ffffff;
    font-size: 1rem; 
    font-weight: 600; 
    padding: 0.6rem 1rem; 
    border-radius: 100px; 
    border: 1px solid #1b4f94;
    margin-top: 2rem;
}

.catorce {
    font-size: 0.7rem; 
    color: #0060df;
    margin-left: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.page-footer-build {
    border-top: 2px solid #3980dd;
    background: #ffffff;
    padding: 1.2rem 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: 50px;
}

.page-footer-build .footer-social a {
    color: #3980dd;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 25px;
}

.page-footer-build .footer-social a:hover {
    color: #58a6ff;
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE - DESARROLLO WEB SECTION
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .web {
        grid-template-columns: 1fr 1fr;
        margin: 0px 20px 10px 20px;
        gap: 20px;
    }

    .web .titulo {
        padding-left: 2rem;
        padding-right: 1rem;
    }

    .dev-title {
        font-size: 2.6rem;
    }

    .dev-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .dev-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem 1rem;
    }

    .dev-feature {
        font-size: 0.8rem;
        padding: 0.4rem;
        gap: 0.6rem;
    }

    .dev-feature i {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        border-radius: 8px;
    }

    .dev-feature-title {
        font-size: 0.75rem;
    }

    .dev-feature-desc {
        font-size: 0.6rem;
    }

    .web .vista {
        padding: 15px;
    }

    .building-page {
        height: 600px;
        max-width: 100%;
        padding: 0.6rem 0.4rem 0.6rem;
        border-radius: 20px;
    }

    .page-header-build {
        padding: 0.8rem 0.8rem 0.8rem;
        min-height: 50px;
        margin-bottom: 1rem;
    }

    .uno {
        font-size: 1.2rem;
        width: 18px;
        height: 18px;
    }

    .dos, .tres {
        font-size: 1rem;
    }

    .cuatro, .cinco, .seis {
        font-size: 0.7rem;
    }

    .siete {
        font-size: 0.6rem;
        padding: 0.3rem 1rem;
    }

    .page-hero-build {
        gap: 2rem;
        padding: 0.8rem;
        min-height: 260px;
    }

    .ocho, .dies {
        font-size: 2.5rem;
    }

    .nueve {
        font-size: 2.6rem;
    }

    .once {
        font-size: 0.85rem;
    }

    .doce {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        margin-top: 1.5rem;
    }

    .catorce {
        font-size: 0.6rem;
        margin-left: 15px;
    }

    .page-footer-build {
        padding: 1rem 0 0.8rem;
        min-height: 45px;
    }

    .page-footer-build .footer-social a {
        font-size: 1.2rem;
        margin-right: 20px;
        width: 18px;
        height: 18px;
    }

    .build-progress .build-timer {
        font-size: 0.6rem;
    }

    .build-progress .build-counter {
        font-size: 0.6rem;
        padding: 0.15rem 0.6rem;
    }
}

/* Móvil */
@media (max-width: 768px) {
    .web {
        display: flex;
        flex-direction: column;
        margin: 0px 10px 10px 10px;
        gap: 15px;
    }

    .web .titulo {
        padding: 1.5rem 1.5rem;
        padding-left: 1.5rem;
        order: 1;
        width: 100%;
    }

    .web .vista {
        order: 2;
        width: 100%;
        padding: 10px;
        min-height: 500px;
    }

    .dev-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .dev-badge i {
        font-size: 0.7rem;
    }

    .dev-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .dev-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .dev-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    .dev-feature {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
        gap: 0.5rem;
        border-radius: 10px;
    }

    .dev-feature i {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        border-radius: 8px;
    }

    .dev-feature-title {
        font-size: 0.7rem;
    }

    .dev-feature-desc {
        font-size: 0.55rem;
    }

    .building-page {
        height: 520px;
        max-width: 100%;
        padding: 0.5rem 0.3rem 0.5rem;
        border-radius: 16px;
        box-shadow: 5px 10px 25px rgba(92, 92, 92, 0.3);
    }

    .page-header-build {
        padding: 0.5rem 0.5rem 0.5rem;
        min-height: 40px;
        margin-bottom: 0.8rem;
        gap: 0.3rem;
        border-bottom-width: 1.5px;
    }

    .uno {
        font-size: 1rem;
        width: 16px;
        height: 16px;
    }

    .dos, .tres {
        font-size: 0.85rem;
    }

    .cuatro, .cinco, .seis {
        font-size: 0.6rem;
    }

    .siete {
        font-size: 0.55rem;
        padding: 0.25rem 0.8rem;
    }

    .page-hero-build {
        gap: 1.5rem;
        padding: 0.5rem;
        min-height: 220px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ocho, .dies {
        font-size: 2rem;
        margin-top: 0;
    }

    .nueve {
        font-size: 2.2rem;
    }

    .once {
        font-size: 0.75rem;
        max-width: 100%;
    }

    .doce {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
        margin-top: 1rem;
    }

    .catorce {
        font-size: 0.55rem;
        margin-left: 10px;
    }

    .page-footer-build {
        padding: 0.8rem 0 0.6rem;
        min-height: 40px;
        border-top-width: 1.5px;
    }

    .page-footer-build .footer-social a {
        font-size: 1rem;
        margin-right: 15px;
        width: 16px;
        height: 16px;
    }

    .build-progress {
        gap: 0.6rem;
        margin-bottom: 3px;
    }

    .build-progress .build-timer {
        font-size: 0.55rem;
    }

    .build-progress .build-counter {
        font-size: 0.55rem;
        padding: 0.1rem 0.5rem;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .web {
        margin: 0px 5px 10px 5px;
        gap: 10px;
    }

    .web .titulo {
        padding: 1rem 0.8rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .dev-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.6rem;
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }

    .dev-badge i {
        font-size: 0.6rem;
    }

    .dev-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .dev-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .dev-features {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .dev-feature {
        font-size: 0.7rem;
        padding: 0.3rem 0.4rem;
        gap: 0.4rem;
        border-radius: 8px;
    }

    .dev-feature i {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
        border-radius: 6px;
    }

    .dev-feature-title {
        font-size: 0.65rem;
    }

    .dev-feature-desc {
        font-size: 0.5rem;
    }

    .web .vista {
        padding: 5px;
        min-height: 460px;
    }

    .building-page {
        height: 460px;
        padding: 0.4rem 0.2rem 0.4rem;
        border-radius: 12px;
        box-shadow: 3px 6px 15px rgba(92, 92, 92, 0.25);
    }

    .page-header-build {
        padding: 0.4rem 0.4rem 0.4rem;
        min-height: 35px;
        margin-bottom: 0.6rem;
        gap: 0.2rem;
        border-bottom-width: 1px;
    }

    .uno {
        font-size: 0.85rem;
        width: 14px;
        height: 14px;
    }

    .dos, .tres {
        font-size: 0.7rem;
    }

    .cuatro, .cinco, .seis {
        font-size: 0.5rem;
    }

    .siete {
        font-size: 0.45rem;
        padding: 0.2rem 0.6rem;
    }

    .page-hero-build {
        gap: 1rem;
        padding: 0.3rem;
        min-height: 180px;
    }

    .ocho, .dies {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }

    .nueve {
        font-size: 1.8rem;
        margin-bottom: 0.2rem;
    }

    .once {
        font-size: 0.65rem;
        line-height: 1.5;
        margin-bottom: 0.3rem;
    }

    .doce {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        margin-top: 0.8rem;
    }

    .catorce {
        font-size: 0.45rem;
        margin-left: 5px;
    }

    .page-footer-build {
        padding: 0.6rem 0 0.4rem;
        min-height: 35px;
        border-top-width: 1px;
    }

    .page-footer-build .footer-social a {
        font-size: 0.85rem;
        margin-right: 12px;
        width: 14px;
        height: 14px;
    }

    .build-progress {
        gap: 0.4rem;
    }

    .build-progress .build-timer {
        font-size: 0.45rem;
    }

    .build-progress .build-counter {
        font-size: 0.45rem;
        padding: 0.05rem 0.4rem;
    }
}

/* Móvil muy pequeño */
@media (max-width: 360px) {
    .dev-title {
        font-size: 1.5rem;
    }

    .web .vista {
        min-height: 400px;
    }

    .building-page {
        height: 400px;
        padding: 0.3rem 0.15rem 0.3rem;
        border-radius: 10px;
    }

    .page-header-build {
        padding: 0.3rem 0.3rem 0.3rem;
        min-height: 30px;
        margin-bottom: 0.4rem;
    }

    .uno {
        font-size: 0.7rem;
        width: 12px;
        height: 12px;
    }

    .dos, .tres {
        font-size: 0.6rem;
    }

    .cuatro, .cinco, .seis {
        font-size: 0.4rem;
    }

    .siete {
        font-size: 0.4rem;
        padding: 0.15rem 0.5rem;
    }

    .page-hero-build {
        gap: 0.8rem;
        padding: 0.2rem;
        min-height: 150px;
    }

    .ocho, .dies {
        font-size: 1.3rem;
    }

    .nueve {
        font-size: 1.5rem;
    }

    .once {
        font-size: 0.55rem;
    }

    .doce {
        font-size: 0.55rem;
        padding: 0.2rem 0.5rem;
        margin-top: 0.6rem;
    }

    .catorce {
        font-size: 0.4rem;
        margin-left: 3px;
    }

    .page-footer-build {
        padding: 0.4rem 0 0.3rem;
        min-height: 30px;
    }

    .page-footer-build .footer-social a {
        font-size: 0.7rem;
        margin-right: 10px;
        width: 12px;
        height: 12px;
    }

    .build-progress .build-timer {
        font-size: 0.4rem;
    }

    .build-progress .build-counter {
        font-size: 0.4rem;
        padding: 0.05rem 0.3rem;
    }
}

/* Ajustes para tablets en landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .building-page {
        height: 550px;
        min-height: 550px;
    }

    .page-hero-build {
        min-height: 240px;
    }

    .ocho, .dies {
        font-size: 2.2rem;
    }

    .nueve {
        font-size: 2.4rem;
    }
}

/* Ajustes para móviles en landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .web .vista {
        min-height: 400px;
    }

    .building-page {
        height: 420px;
        min-height: 420px;
    }

    .page-hero-build {
        min-height: 160px;
        gap: 1rem;
    }

    .ocho, .dies {
        font-size: 1.6rem;
    }

    .nueve {
        font-size: 1.8rem;
    }

    .once {
        font-size: 0.65rem;
    }

    .page-header-build {
        min-height: 30px;
        padding: 0.3rem 0.4rem;
        margin-bottom: 0.4rem;
    }

    .dev-features {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.3rem;
    }

    .dev-feature {
        font-size: 0.65rem;
        padding: 0.2rem 0.3rem;
    }

    .dev-feature i {
        width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .dev-feature-title {
        font-size: 0.6rem;
    }

    .dev-feature-desc {
        font-size: 0.45rem;
    }
}

/* Ajustes para pantallas muy grandes */
@media (min-width: 1400px) {
    .building-page {
        max-width: 800px;
        height: 750px;
        padding: 1rem 0.8rem 1rem;
    }

    .page-hero-build {
        min-height: 340px;
        gap: 3.5rem;
    }

    .ocho, .dies {
        font-size: 3.5rem;
    }

    .nueve {
        font-size: 3.8rem;
    }

    .once {
        font-size: 1.1rem;
    }

    .doce {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }

    .dev-title {
        font-size: 3.8rem;
    }

    .dev-description {
        font-size: 1.2rem;
    }

    .dev-feature {
        font-size: 0.95rem;
    }

    .dev-feature i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .dev-feature-title {
        font-size: 0.9rem;
    }

    .dev-feature-desc {
        font-size: 0.7rem;
    }
}