/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 100%);
    padding: 2rem;
    text-align: center;
    background-image: url('/src/img/background/Visual-min.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #ccc;
    font-family: 'Raleway';
}

.hero .gold {
    color: var(--gold);
}

.hero-p {
    font-size: 2.2rem;
    color: #ccc;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    visibility: visible;
}

.icon {
    width: 80px;
    height: 80px;
    transform: translateY(50px);
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 0.5s ease, opacity 0.5s ease;
    color: var(--gold);
}

/* Efecto hover en los íconos */
.icon:hover {
    filter: drop-shadow(0px 0px 20px rgb(193, 141, 38));
    transform: scale(1.1);
    opacity: 1;
}

.golden-divider {
    border: none;
    height: 4px;
    background: linear-gradient(90deg, rgba(245, 181, 68, 0.1) 0%, #f5b544 50%, rgba(245, 181, 68, 0.1) 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.golden-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 223, 0, 0.8), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */

/* Tablets (pantallas medianas) */
@media (max-width: 768px) {
    .hero {
        padding: 0rem;
        height: 80vh;
        background-position: center top;
    }

    .hero h1 {
        font-size: 3rem;
        text-align: center;
    }

    .hero p {
        font-size: 1.8rem;
    }

    .icon {
        width: 80px;
        height: 80px;
    }
}

/* Móviles (pantallas pequeñas) */
@media (max-width: 480px) {
    .hero {
        padding: 1rem;
        background-position: center top;
        background-size: cover;
        height: 90vh;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 2rem;
    }

    .icon {
        width: 70px;
        height: 70px;
    }
}