/* Home Page - Fondo negro completo */
.home-page {
    background-color: #000;
    min-height: 100vh;
}

/* ===================================
    SCROLL ANIMATIONS
====================================== */

/* Animación base para todas las secciones */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Variaciones de animaciones */
.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.animate-visible {
    opacity: 1;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-right.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scale.animate-visible {
    opacity: 1;
    transform: scale(1);
}

/* Delays progresivos */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* Hero Section - Pantalla completa */
.hero-section {
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 3rem;
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto 3rem auto;
}

.main-logo {
    position: absolute;
    max-width: 300px;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-logo-1 {
    width: 500px;
    height: 500px;
    max-width: 500px;
    max-height: 500px;
}

/* Pantallas muy grandes - mantener tamaño original */
@media (min-width: 1620px) {
    .main-logo {
        max-width: 400px;
    }
    
    .main-logo-1 {
        width: 750px;
        height: 750px;
        max-width: 750px;
        max-height: 750px;
    }
}

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    display: inline-block;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down:hover, .scroll-down.active, .scroll-down:focus {
    color: rgba(186, 255, 41, 1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Main Text Section */
.main-text-section {
    padding: 8rem 0;
}

/* Services Info Section */
.services-info-section {
    background-color: rgba(220, 150, 90, 1);
    padding: 6rem 0;
}



.services-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
}

.services-button-container {
    text-align: center;
}

.services-button {
    display: inline-block;
    background-color: rgba(186, 255, 41, 1);
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 6%;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.services-button::after {
    content: '';
    position: absolute;
    top: 3px;
    left: -3px;
    right: 4px;
    bottom: -3px;
    border: 1px solid rgba(186, 255, 41, 1);
    pointer-events: none;
    z-index: 1;
}

.services-button:hover {
    background-color: rgba(186, 255, 41, 0.9);
    color: #000;
    text-decoration: none;
}

.services-button:hover::after {
    border-color: rgba(186, 255, 41, 0.9);
}

/* Platform Section */
.platform-section {
    background-color: #000;
    padding: 6rem 0;
}

.platform-content {
    padding-right: 2rem;
}

.platform-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 49px;
    letter-spacing: 0%;
    color: rgba(186, 255, 41, 1);
    margin-bottom: 2rem;
}

.platform-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    margin-bottom: 3rem;
}

.platform-button-container {
    margin-bottom: 0;
}

.platform-image-container {
    text-align: center;
}

.platform-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

/* Banner Section */
.banner-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

/* Content Section */
.content-section {
    padding: 6rem 0;
}

.content-intro-text {
    margin-bottom: 4rem;
}

.content-intro-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 49px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
}

.content-main-image {
    text-align: center;
    margin-bottom: 4rem;
}

.main-content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-description {
    margin-bottom: 4rem;
}

.content-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #333;
    margin-bottom: 2rem;
}

.content-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #666;
    margin: 0;
}

.content-gallery {
    margin-top: 4rem;
}

.gallery-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 0 0 auto;
}

.gallery-image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.main-headline {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
    line-height: 74px;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-headline {
        font-size: 50px;
        line-height: 62px;
    }
    
    .main-logo {
        max-width: 280px;
    }
    
    .main-logo-1 {
        width: 450px;
        height: 450px;
        max-width: 450px;
        max-height: 450px;
    }
}

@media (max-width: 992px) {
    .main-headline {
        font-size: 42px;
        line-height: 52px;
    }
    
    .main-logo {
        max-width: 240px;
    }
    
    .main-logo-1 {
        width: 380px;
        height: 380px;
        max-width: 380px;
        max-height: 380px;
    }
    
    .services-button-container {
        text-align: left;
        margin-top: 25px;
    }
    
    .platform-image-container {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 32px;
        line-height: 40px;
        padding: 0 1rem;
    }
    
    .main-logo {
        max-width: 230px;
    }
    
    .main-logo-1 {
        width: 360px;
        height: 360px;
        max-width: 360px;
        max-height: 360px;
    }
    
    .main-text-section {
        padding: 4rem 0;
    }
    
    .services-button-container {
        text-align: left;
    }
    
    .platform-image-container {
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .main-headline {
        font-size: 28px;
        line-height: 36px;
    }
    
    .main-logo {
        max-width: 190px;
    }
    
    .main-logo-1 {
        width: 320px;
        height: 320px;
        max-width: 320px;
        max-height: 320px;
    }
}

/* Highlight colors */
.color-highlight {
    color: rgba(186, 255, 41, 1);
}

.color-highlight-orange {
    color: rgba(220, 150, 90, 1);
}

/* Network Text - Specific styling for id="network-text-1" */
#network-text-1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 49px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
}
