body {
    background-color: var(--bg-color);
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* GRADIENTE ANIMADO PROFESIONAL */
.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    /* Colores: Negro profundo, Azul medianoche, Gris oscuro, Negro */
    background: linear-gradient(135deg, #0a0a0c, #141420, #0d0d15, #1a1a1f);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CONTENEDOR PRINCIPAL */
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header { padding: 60px 0; }

.logo {
    font-size: 1.4rem;
    letter-spacing: 0.5rem;
    font-weight: 600;
}
.logo span { font-weight: 300; opacity: 0.5; }

/* SECCIÓN HERO */
.hero { margin-bottom: 80px; }
.subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
    color: var(--text-dim);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}
.hero h1 em { font-style: italic; font-weight: 300; }

.divider {
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    margin: 30px auto;
}

/* GALERÍA */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
}

.item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #111;
    cursor: pointer;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.item:hover img { transform: scale(1.08); }

.item-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    text-align: left;
}

.item-info h3 { font-size: 0.9rem; letter-spacing: 1px; }
.item-info p { font-size: 0.7rem; color: var(--text-dim); }

/* BOTÓN Y FOOTER */
.contact-section { margin: 80px 0; }
.btn-contact {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    transition: 0.4s;
}
.btn-contact:hover { background: #fff; color: #000; }

footer { padding-bottom: 40px; font-size: 0.6rem; opacity: 0.4; }