.block-1,
.block-2,
.block-3,
.block-4,
.block-5,
.block-6,
.block-7,
.block-8 {
    font-family: "Roboto Slab", serif
}
/* BLOQUE 1 - APERTURA */
        .block-1 {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .block-1-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 90%;
            max-width: 1200px;
            gap: 4rem;
        }

        .phone-container {
            flex: 0 0 40%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone {
            width: 180px;
            height: 360px;
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .phone::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 25px;
            background: #1a1a1a;
            border-radius: 0 0 25px 25px;
            z-index: 10;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #f0f0f0, #e8e8e8);
            border-radius: 35px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20em;
            color: #999;
            padding-top: 15px;
        }
        
        .text-container {
            flex: 0 0 50%;
            padding: 2rem;
        }

        .block-1-text {
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.3;
            color: #333;
            letter-spacing: -0.5px;
        }

        .block-1-text .highlight {
            color: #22c55e;
            transition: color 0.3s ease;
        }

        /* BLOQUE 2 - ADVERTENCIAS IGNORADAS */
        .block-2 {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
            position: relative;
            overflow: hidden;
        }

        .block-2-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem;
            perspective: 1000px;
        }

        .text-layers {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 400px;
        }

        .text-container2 {
            flex: 0 0 50%;
            padding: 2rem;
        }


        .text-layer {
            position: absolute;
            font-size: 2.2rem;
            font-weight: 500;
            color: #555;
            white-space: nowrap;
            padding: 1.5rem 3rem;
            background-color: rgba(255, 255, 255, 0.8);
            border-left: 4px solid #e5e5e5;
            backdrop-filter: blur(10px);
            opacity: 0;
        }

        .text-layer:nth-child(1) {
            top: 50px;
            left: 10%;
        }

        .text-layer:nth-child(2) {
            top: 140px;
            left: 35%;
        }

        .text-layer:nth-child(3) {
            top: 230px;
            left: 15%;
        }

        .text-layer:nth-child(4) {
            top: 310px;
            left: 40%;
        }

        .text-layer:nth-child(5) {
            top: -50px;
            left: 40%;
        }
        .text-layer:nth-child(6) {
            top: 400px;
            left: 10%;
        }

        .block-2-text {
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.3;
            color: #333;
            letter-spacing: -0.5px;
        }

        /* BLOQUE 3 - MERCADO NEGRO */
        .block-3 {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .text-container3,
        .text-container3b {
            background: rgba(255,255,255,0.8);
            padding: 2rem;
            position: absolute;
            width: 90%;
            z-index: 100;
            
        }

        .cards-container {
        position: absolute;
        inset: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        pointer-events: none;
        }

        .market-card {
            position: absolute;
            width: 320px;
            padding: 2rem;
            background-color: #f0f0f0;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
            opacity: 0;
            transform: scale(0.8);
        }

        .card-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #d32f2f;
            margin: 1rem 0;
        }

        .card-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-stamp {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.4rem 0.8rem;
            background-color: #d32f2f;
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 4px;
            transform: rotate(12deg);
            opacity: 0.9;
        }

        .market-card:nth-child(1) {
            top: 80px;
            left: 5%;
        }

        .market-card:nth-child(2) {
            top: -40px;
            left: 35%;
        }

        .market-card:nth-child(3) {
            top: 120px;
            right: 5%;
        }

        .central-text {
            
            position: absolute;
            text-align: center;
            opacity: 0;
            width: 100%;
        }

        .central-question {
            font-size: 3rem;
            font-weight: 700;
            background: rgba(255,255,255,0.8);
            color: #333;
            line-height: 1.2;
            max-width: 900px;
            margin: 0 auto;
        }

        .phone-broken-container {
            position: absolute;
            top: 60%;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 300px;
            opacity: 0;
        }

        .phone-broken {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .phone-part {
            position: absolute;
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            border-radius: 10px;
        }

        .phone-part-top {
            width: 100%;
            height: 40%;
            top: 0;
            left: 0;
            transform-origin: center bottom;
        }

        .phone-part-middle {
            width: 100%;
            height: 30%;
            top: 40%;
            left: 0;
        }

        .phone-part-bottom {
            width: 100%;
            height: 30%;
            bottom: 0;
            left: 0;
            transform-origin: center top;
        }

        /* BLOQUE 4 - CAJA NEGRA */
        .block-4 {
            height: 100vh;
            
            background-color: #1a1a1a;
            position: relative;
            overflow: hidden;
        }

        .block-4-text {
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.3;
            color: #f5f5f5;
            text-align: center;
            display: block;
            width: 80%;
            padding: 0 1rem;
            margin: 3% auto;
        }

        .connections-container {
            position: relative;
            width: 800px;
            height: 400px;
            margin: 0 auto;
        }

        .node {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
        }

        .node-icon {
            width: 80px;
            height: 80px;
            background-color: #2d2d2d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 2px solid #444;
        }

        .node-label {
            color: #999;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .node-1 {
            left: 50px;
            top: 50%;
            transform: translateY(-50%);
        }

        .node-2 {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .node-3 {
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
        }

        .connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, #4a9eff 0%, #4a9eff 50%, transparent 50%);
            background-size: 20px 100%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
        }

        .line-1 {
            left: 130px;
            width: 220px;
        }

        .line-2 {
            left: 480px;
            width: 220px;
        }

        .blocked-message {
            position: absolute;
            bottom: 180px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            opacity: 0;
        }

        .blocked-text {
            font-size: 1.8rem;
            font-weight: 600;
            color: #d32f2f;
            background-color: rgba(211, 47, 47, 0.1);
            padding: 1.5rem 3rem;
            border-radius: 8px;
            border: 2px solid #d32f2f;
        }

        /* BLOQUE 5 - VULNERABILIDAD */
        .block-5 {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
            position: relative;
            overflow: hidden;
            padding: 4rem;
        }

        .block-5 h1 {
            text-align: center;
            max-width: 80%;
        }

        .interface-container {
            width: 100%;
            max-width: 500px;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            opacity: 0.9;
        }

        .form-field {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-label {
            display: block;
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-input {
            width: 100%;
            padding: 0.8rem 1rem;
            font-size: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            background-color: #f9f9f9;
            color: #333;
        }

        .red-highlight {
            position: absolute;
            top: 0;
            left: -10px;
            right: -10px;
            bottom: 0;
            border: 3px solid #d32f2f;
            border-radius: 8px;
            opacity: 0;
            pointer-events: none;
        }

        .vulnerability-text {
            margin-top: 3rem;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .vulnerability-quote {
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 1.6;
            color: #333;
            margin-bottom: 2rem;
            opacity: 0;
        }

        .vulnerability-quote.italic {
            font-style: italic;
            color: #d32f2f;
        }

        /* BLOQUE 6 - MAPA */
        .block-6 {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            padding: 4rem;
        }

        .map-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 500px;
            margin-bottom: 3rem;
        }

        .country {
            position: absolute;
            width: 120px;
            height: 140px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            font-weight: 600;
            font-size: 1.1rem;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .country-mexico {
            top: 60px;
            left: 50px;
            background-color: #ffc107;
            color: #333;
            border: 3px solid #ff9800;
        }

        .country-colombia {
            top: 250px;
            left: 220px;
            background-color: #ccc;
            color: #666;
            border: 3px solid #999;
        }

        .country-peru {
            top: 320px;
            right: 100px;
            background-color: #ff5722;
            color: white;
            border: 3px solid #d32f2f;
        }

        .country-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            padding: 0.3rem 0.8rem;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
            letter-spacing: 1px;
        }

        .alert-icon {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 40px;
            height: 40px;
            background-color: #d32f2f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            opacity: 0;
        }

        .map-conclusion {
            text-align: center;
            opacity: 0;
        }

        .conclusion-text {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            line-height: 1.3;
        }

        /* BLOQUE 7 - RITMO IMPOSIBLE */
        .block-7 {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
            position: relative;
            overflow: hidden;
            padding: 4rem;
        }

        .counter-container {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
        }

        .counter-label {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .counter-value {
            font-size: 5rem;
            font-weight: 800;
            color: #d32f2f;
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }

        .counter-unit {
            font-size: 2rem;
            color: #666;
            margin-top: 1rem;
        }

        .progress-container {
            width: 100%;
            max-width: 800px;
            position: relative;
            opacity: 0;
        }

        .progress-bar-wrapper {
            position: relative;
            margin-bottom: 2rem;
        }

        .progress-label {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .progress-label.real {
            color: #d32f2f;
        }

        .progress-label.required {
            color: #333;
        }

        .progress-bar-bg {
            width: 100%;
            height: 40px;
            background-color: #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .progress-bar-fill {
            height: 100%;
            transition: width 1s ease;
            position: relative;
        }

        .progress-bar-fill.real {
            background: linear-gradient(90deg, #d32f2f, #f44336);
        }

        .progress-bar-fill.required {
            background: linear-gradient(90deg, #333, #555);
        }

        .progress-value {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .gap-visual {
            margin-top: 3rem;
            text-align: center;
            opacity: 0;
        }

        .gap-text {
            font-size: 2rem;
            font-weight: 700;
            color: #d32f2f;
            margin-bottom: 1rem;
        }

        .gap-line {
            width: 100%;
            height: 4px;
            background: #d32f2f;
            position: relative;
            transform-origin: center;
        }

        /* BLOQUE 8 - CIERRE */
        .block-8 {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #1a1a1a;
            position: relative;
            overflow: hidden;
            padding: 4rem;
        }

        .silhouettes-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 3rem;
            margin-bottom: 4rem;
            width: 100%;
            max-width: 900px;
        }

        .silhouette {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .silhouette-icon {
            width: 80px;
            height: 80px;
            background-color: #2d2d2d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            border: 2px solid #444;
        }

        .phone-lines {
            display: flex;
            gap: 0.3rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .phone-line {
            width: 6px;
            height: 20px;
            background-color: #4a9eff;
            border-radius: 2px;
        }

        .final-message {
            text-align: center;
            opacity: 0;
        }

        .final-text {
            font-size: 3.5rem;
            font-weight: 800;
            color: #d32f2f;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .block-1-container {
                flex-direction: column;
                gap: 2rem;
            }

            .phone-container {
                flex: 0 0 auto;
            }

            .text-container {
                flex: 0 0 auto;
            }

            .block-1-text {
                font-size: 1.8rem;
            }

            .text-layer {
                font-size: 1.4rem;
                padding: 1rem 1.5rem;
            }

            .central-question {
                font-size: 1.8rem;
                padding: 0 1.5rem;
            }

            .connections-container {
                width: 90%;
                height: 300px;
            }

            .node-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .blocked-text {
                font-size: 1.2rem;
                padding: 1rem 1.5rem;
            }

            .vulnerability-quote {
                font-size: 1.1rem;
            }

            .conclusion-text {
                font-size: 1.6rem;
            }

            .counter-value {
                font-size: 3rem;
            }

            .counter-unit {
                font-size: 1.2rem;
            }

            .gap-text {
                font-size: 1.4rem;
            }

            .silhouettes-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .final-text {
                font-size: 2rem;
            }
        }