*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url("https://media.giphy.com/media/26n79t82lmj989iAE/giphy.gif") no-repeat center center fixed;
    background-size: cover;
    color: #eaeaea;
}

body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.65);
    z-index: -1;
}

/* HEADER PRO */
header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(20, 20, 20, 0.6);
    padding: 20px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

header img{
    width: 50px; 
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

nav{
    background: rgba(15, 15, 15, 0.6);
    padding: 15px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
}

nav a{
    color: #eaeaea;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

nav a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #d4af37;
    transition: 0.3s;
}

nav a:hover::after{
    width: 100%;
}

nav a:hover{
    color: #d4af37;
}


main{
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}

#seccion1, #seccion2{
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

h2{
    margin-bottom: 15px;
    color: #d4af37;
    font-weight: 600;
}

p{
    color: #EAE6BC;
    line-height: 1.6;
}

.galeria{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.galeria img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.galeria img:hover{
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    border: 1px solid rgba(212, 175, 55, 0.6);
}

.galeria img::after{
    content: "";
    position: absolute;
}

.galeria:hover img{
    opacity: 0.6;
}

.galeria img:hover{
    opacity: 1;
}

footer{
    background: rgba(10, 10, 10, 0.7);
    color: #aaa;
    padding: 12px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}