* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a14;
    color: #e8edf5;
}

/* ========================================== */
/* SCROLLBAR                                  */
/* ========================================== */
::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(120, 100, 255, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 100, 255, 0.5);
}

/* ========================================== */
/* APP CONTAINER                              */
/* ========================================== */
.app-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.app-container.visible {
    opacity: 1;
}

/* ========================================== */
/* BACKGROUND LAYER                           */
/* ========================================== */
.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(135deg, #060614, #140832);
    transition: background 0.15s ease;
    width: 100%;
    height: 100%;
}

/* ========================================== */
/* SCROLL PROGRESS BAR                        */
/* ========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #f0a050, #da6a3a, #8a3a2a, #2a1a4a, #1a3a3a, #4a1a6a, #f0b060);
    z-index: 100;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* ========================================== */
/* SCROLL CONTAINER                           */
/* ========================================== */
.scroll-container {
    position: relative;
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 70px;
}

.hacemos {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

.hacemos .badge {
    background: rgba(139, 139, 139, 0.411);
    border: 1px solid rgba(255, 255, 255, 0.253);
    padding: 5px 14px;
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
    display: inline-block;
    margin-bottom: 14px;
}

.hacemos h2 {
    font-size: clamp(1.8rem, 2.2, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f0f0ff;
}

.hacemos p {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(1rem, 1.5rem, 2rem);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .scroll-container {
        padding-top: 55px;
    }
}