:root {
    --primary-color: #a0f42a;
    --primary-dark: #8ad825;
    --secondary-color: #8cf110;
    --accent-color: #ff6b6b;
    --text-color: #ffffff;
    --dark-text: #333333;
    --overlay-color: rgba(0, 0, 0, 0.475);
    --transition-speed: 0.5s;
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: #000000;
    color: var(--text-color);
}

/* Hero section with video background */
.hero-sectionn {
    position: relative;
    height: 10vh;
    width: 100%;
    overflow: hidden;
    perspective: 1000px;
}

.video-containerr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    will-change: transform;
}

.video-containerr::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--overlay-color) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1) contrast(1.15) saturate(1.25);
    will-change: transform;
}

.content-wrapperr {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 5%;
    z-index: 1;
}

.hero-contentt {
    max-width: 1000px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.subtitlee {
    font-size: 1.35rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
}

.titlee {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.6s;
    font-family: var(--font-secondary);
}

.descriptionn {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.9s;
}

.cta-buttonn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6.5px;
    box-shadow: 0 5px 15px rgba(109, 244, 42, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-buttonn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.cta-buttonn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(160, 244, 42, 0.5);
}

.cta-buttonn:hover:before {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* Contenedor de texto con efecto de revelación */
.text-reveal-container {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(160, 244, 42, 0.1);
    transition: all 0.35s ease-out;
}

.text-reveal-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(128, 198, 6, 0.147);
}

