/* --- ESTILOS ORGANIZACIÓN DE EVENTOS --- */
:root {
    --evt-accent: #FF6B00; /* Naranja Energético */
    --evt-dark: #111111;
    --evt-light: #ffffff;
}

/* 1. HERO CON VIDEO DE FONDO */
.evt-hero {
    height: 90vh; /* Pantalla casi completa */
    position: relative;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    background: black; overflow: hidden;
}

.evt-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Degradado de fiesta/energía */
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.6), rgba(233, 30, 99, 0.4));
    z-index: 1;
}

.evt-bg-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.8; z-index: 0;
}

.evt-content { position: relative; z-index: 2; max-width: 900px; padding: 0 5%; }

.evt-tag {
    border: 1px solid white; padding: 8px 25px; border-radius: 30px;
    text-transform: uppercase; font-size: 0.9rem; letter-spacing: 3px; font-weight: 700;
    margin-bottom: 25px; display: inline-block; background: rgba(0,0,0,0.3); backdrop-filter: blur(5px);
}

.evt-title {
    font-size: 4rem; font-weight: 900; line-height: 1; margin-bottom: 20px;
    text-transform: uppercase; text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.evt-subtitle { font-size: 1.3rem; font-weight: 300; margin-bottom: 40px; opacity: 0.9; }


/* 2. TIPOS DE EVENTOS (TARJETAS ALTAS) */
.evt-types-sec { padding: 100px 5%; background: white; }
.evt-header { text-align: center; margin-bottom: 60px; }

.evt-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
    max-width: 1300px; margin: 0 auto;
}

.evt-card {
    position: relative; height: 450px; border-radius: 20px; overflow: hidden;
    cursor: pointer; transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.evt-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.2); }

.evt-img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.evt-card:hover .evt-img { transform: scale(1.1); }

.evt-info {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    color: white; display: flex; flex-direction: column; justify-content: flex-end;
    height: 100%;
}

.evt-info h3 { font-size: 1.8rem; font-weight: 800; margin: 0 0 10px 0; text-transform: uppercase; line-height: 1; }
.evt-info p { 
    font-size: 0.95rem; opacity: 0.8; margin: 0; 
    max-height: 0; overflow: hidden; transition: 0.4s; /* Oculto por defecto */
}
.evt-card:hover .evt-info p { max-height: 100px; margin-top: 10px; } /* Aparece al hover */
.evt-icon { 
    font-size: 2rem; color: var(--evt-accent); margin-bottom: 15px; 
    transform: translateY(20px); transition: 0.4s;
}
.evt-card:hover .evt-icon { transform: translateY(0); }


/* 3. LOGÍSTICA (PEACE OF MIND) */
.logistics-sec {
    background: #111; color: white; padding: 100px 5%; position: relative;
}
/* Línea decorativa naranja */
.logistics-sec::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 5px; background: var(--evt-accent);
}

.log-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
    max-width: 1200px; margin: 60px auto 0 auto;
}

.log-item { text-align: center; padding: 20px; transition: 0.3s; }
.log-item:hover { background: rgba(255,255,255,0.05); border-radius: 15px; }

.log-icon-box {
    width: 70px; height: 70px; border: 2px solid #333; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto;
    font-size: 1.8rem; color: var(--evt-accent); transition: 0.3s;
}
.log-item:hover .log-icon-box { border-color: var(--evt-accent); background: var(--evt-accent); color: white; box-shadow: 0 0 20px rgba(255, 107, 0, 0.4); }

.log-item h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.log-item p { color: #888; font-size: 0.9rem; line-height: 1.5; }


/* 4. CTA FINAL */
.evt-cta {
    background: var(--evt-accent); /* Fondo Naranja */
    padding: 80px 5%; text-align: center; color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .evt-title { font-size: 3rem; }
    .evt-grid { grid-template-columns: 1fr; }
    .log-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}



/* --- GALERÍA TIPO MASONRY (CAÓTICA PERO ORDENADA) --- */
.evt-gallery-sec {
    padding: 80px 5%; background: #000; color: white;
}
.gal-header { margin-bottom: 50px; display: flex; justify-content: space-between; align-items: flex-end; }
.gal-title { font-size: 2.5rem; font-weight: 800; margin: 0; }
.gal-link { color: var(--evt-accent); text-transform: uppercase; font-weight: 700; text-decoration: none; }

.masonry-grid {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: 200px; 
    gap: 15px;
}

/* Hacemos que algunas fotos sean más grandes para dar dinamismo */
.gal-item {
    position: relative; overflow: hidden; border-radius: 12px;
    cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(50%); }
.gal-item:hover img { transform: scale(1.1); filter: grayscale(0%); }

/* Tamaños irregulares */
.item-tall { grid-row: span 2; } /* Foto vertical */
.item-wide { grid-column: span 2; } /* Foto horizontal */

.gal-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0; transition: 0.3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }


/* --- SECCIÓN 3D vs REALIDAD (PROFESIONALISMO) --- */
.render-sec {
    padding: 100px 5%; background: white;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.render-text h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; color: #111; }
.render-text p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

/* Efecto de comparación visual */
.comparison-box {
    position: relative; height: 350px; border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.comp-img {
    width: 100%; height: 100%; object-fit: cover;
}
.comp-badge {
    position: absolute; top: 20px; left: 20px;
    background: rgba(0,0,0,0.7); color: white; padding: 5px 15px;
    border-radius: 20px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase;
}
/* Etiqueta flotante "Render 3D" */
.float-tag {
    position: absolute; bottom: 20px; right: 20px;
    background: var(--evt-accent); color: white; padding: 10px 25px;
    border-radius: 30px; font-weight: 800; box-shadow: 0 5px 15px rgba(255,107,0,0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .masonry-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .item-tall { grid-row: span 1; } 
    .item-wide { grid-column: span 1; }
    .render-sec { grid-template-columns: 1fr; }
}