* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background: #020202;
    color: white;
    overflow-x: hidden;
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
}

.logo {
    width: 45%;
    max-width: 460px;
    position: relative;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeDown 2s ease forwards;
    opacity: 0;
}

.hero-buttons {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    animation: fadeUp 2s ease forwards;
    opacity: 0;
}

.btn {
    padding: 14px 40px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    letter-spacing: 1px;
}

.btn:hover {
    background: white;
    color: black;
}

.btn-red {
    border-color: crimson;
}

.parallax {
    height: 100vh;
    background-image: url("img/parallax2.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

.parallax-inner {
    max-width: 700px;
    animation: fadeIn 2.5s ease;
}

.parallax h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}






.parallax1 {
    height: 100vh;
    background-image: url("img/parallax1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

.parallax-inner {
    max-width: 700px;
    animation: fadeIn 2.5s ease;
}

.parallax h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}








.parallax2 {
    height: 100vh;
    background-image: url("img/parallax.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

.parallax-inner {
    max-width: 700px;
    animation: fadeIn 2.5s ease;
}

.parallax h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}









.row-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 10%;
    gap: 60px;
}

.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.img-block {
    flex: 1;
    width: 100%;
    border-radius: 8px;
}

footer {
    padding: 40px;
    text-align: center;
    background: #0a0a0a;
    margin-top: 80px;
    opacity: 0.7;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translate(-50%, -80px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translate(-50%, 80px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-90px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(90px); }
    to   { opacity: 1; transform: translateX(0); }
}

.fade-left {
    animation: fadeLeft 2s ease;
}

.fade-right {
    animation: fadeRight 2s ease;
}















 * { margin:0; padding:0; box-sizing:border-box; }
  body { background:#000; color:#fff; font-family:'Montserrat', sans-serif; overflow-x:hidden; }

  /* --- HERO PRINCIPAL --- */
 

  /* Capa oscura */
  .hero::before {
    content:"";
    position:absolute;
    top:0; left:0; width:100%; height:100%;
    background:rgba(0,0,0,0.55);
    backdrop-filter:blur(2px);
  }

  /* Glitch del título */
  @keyframes glitch {
    0% { clip-path: inset(0 0 0 0); }
    20% { clip-path: inset(10% 0 15% 0); transform:translate(-2px,-2px); }
    40% { clip-path: inset(5% 0 20% 0); transform:translate(2px,2px); }
    60% { clip-path: inset(15% 0 5% 0); transform:translate(-2px,1px); }
    80% { clip-path: inset(10% 0 10% 0); transform:translate(1px,-2px); }
    100% { clip-path: inset(0 0 0 0); }
  }

  .title {
    font-size:4.4rem;
    font-weight:700;
    position:relative;
    z-index:2;
    animation:glitch 2.1s infinite;
    letter-spacing:4px;
    text-shadow:0 0 14px rgba(255,0,0,0.5);
  }

  /* --- MENU INFERIOR (botones + logo) --- */
  footer {
    width:100%;
    padding:30px 0;
    position:relative;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(6px);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
  }

  .footer-logo img {
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 0 18px rgba(255,0,0,0.4);
  }

  .footer-buttons {
    display:flex;
    gap:25px;
  }

  .btn {
    padding:12px 28px;
    font-size:1rem;
    font-weight:600;
    border:none;
    cursor:pointer;
    color:#fff;
    border-radius:6px;
    transition:0.3s;
  }

  .btn-red { background:#b00000; }
  .btn-red:hover { background:#ff0000; }
  .btn-dark { background:#333; }
  .btn-dark:hover { background:#555; }

  /* --- GALERÍA CON ANIMACIÓN DE ABERRACIÓN CROMÁTICA --- */
  .gallery {
    padding:90px 0;
    width:100%;
    text-align:center;
  }
  .gallery h2 {
    font-size:2.2rem;
    letter-spacing:3px;
    margin-bottom:40px;
    text-shadow:0 0 10px red;
  }

  .grid {
    width:90%;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:22px;
  }

  .thumb {
    height:200px;
    background-size:cover;
    background-position:center;
    border-radius:8px;
    position:relative;
    overflow:hidden;
    filter:grayscale(20%);
    transition:0.25s;
  }

  .thumb:hover {
    filter:none;
    transform:scale(1.03);
    box-shadow:0 0 22px rgba(255,0,0,0.6);
  }

  /* Smoke animation */
  @keyframes fogMove {
    0% { transform:translateX(-40%) scale(1.1); }
    100% { transform:translateX(40%) scale(1.1); }
  }

  .fog {
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background:url('assets/fog.png') repeat;
    opacity:0.12;
    animation:fogMove 18s linear infinite;
  }

