body {
    font-family: 'Inter', sans-serif;
}

/* Estilos para video de fondo difuminado */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    filter: blur(1px);
    opacity: 0.8;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

/* Estilos para ondas decorativas */
.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    z-index: 5;
    pointer-events: none;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -7px;
}

.wave-parallax>use {
    animation: wave-move 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.wave-parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 15s;
}

.wave-parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 18s;
}

.wave-parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 21s;
}

.wave-parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 24s;
}

@keyframes wave-move {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}



/* Animaciones personalizadas */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(248, 169, 9, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(248, 169, 9, 0.6);
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-slide-in-left {
    animation: slide-in-left 1s ease-out forwards;
}

.animate-slide-in-right {
    animation: slide-in-right 1s ease-out forwards;
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

/* Colores personalizados de la marca */
.bg-blueparce {
    background-color: var(--color-blueparce);
}

.bg-skyparce {
    background-color: var(--color-skyparce);
}

.bg-orangeparce {
    background-color: var(--color-orangeparce);
}

.bg-redparce {
    background-color: var(--color-redparce);
}

.text-blueparce {
    color: var(--color-blueparce);
}

.text-skyparce {
    color: var(--color-skyparce);
}

.text-orangeparce {
    color: var(--color-orangeparce);
}

.text-redparce {
    color: var(--color-redparce);
}


/* Efectos especiales para fondo blanco */
.hero-text-shadow {
    text-shadow: 0 2px 4px rgba(26, 43, 92, 0.1);
}

.glass-effect {
    background: rgba(248, 169, 9, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 169, 9, 0.1);
}

.glass-effect-blue {
    background: rgba(0, 113, 188, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 113, 188, 0.1);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Botón personalizado */
.btn-parce {
    background: linear-gradient(135deg, var(--color-skyparce) 0%, var(--color-orangeparce) 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-parce::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-orangeparce) 0%, var(--color-redparce) 100%);
    transition: left 0.3s ease;
}

.btn-parce:hover::before {
    left: 0;
}

.btn-parce span {
    position: relative;
    z-index: 1;
}