      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
   .logo {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .logo-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 3px solid #ff4757;
            box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
            transition: all 0.3s;
        }

        .logo-circle:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 30px rgba(255, 71, 87, 0.8);
        }

        .logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transform: scale(1.1);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #e74c3c;
        }

        .btn-subscribe {
            background: #e74c3c;
            color: #fff;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            border: 2px solid #e74c3c;
            transition: all 0.3s;
        }

        .btn-subscribe:hover {
            background: transparent;
            color: #e74c3c;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icons a {
            color: #fff;
            transition: all 0.3s ease;
        }

        .social-icons a svg {
            width: 20px;
            height: 20px;
        }

        .social-icons a:hover {
            color: #e74c3c;
            transform: translateY(-3px);
        }

    .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            transition: all 0.3s;
            transform-origin: center;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

      .hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.logo-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-hero-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
}

.logo-hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-shadow: 2px 2px 20px rgba(231, 76, 60, 0.5);
  margin: 0;
}

.hero .subtitle {
  font-size: 1.5rem;
  color: #e74c3c;
  letter-spacing: 3px;
  margin-top: 10px;
}

         .about {
            padding: 100px 5%;
            background: url('https://res.cloudinary.com/dliredzt9/image/upload/v1762355807/fondo-banda-chulengos_tjahs4.webp') center/cover no-repeat;
            position: relative;
        }

        .about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(30 29 18 / 84%);
    z-index: 0;
}

        .about > * {
            position: relative;
            z-index: 1;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(231, 76, 60, 0.3);
            transition: transform 0.5s;
        }

        .about-image:hover {
            transform: scale(1.02);
        }

        .about-image img {
            width: 100%;
            height:auto;
            object-fit: cover;
            transition: filter 0.5s;
        }

        .about-image:hover img {
            filter: brightness(1.1);
        }

        .about-content h2 {
            font-size: 2.5rem;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #e74c3c;
        }

        .about-content .quote {
            font-style: italic;
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            border-left: 3px solid #e74c3c;
        }

        .about-content p {
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .videos {
            padding: 100px 5%;
            background: #0a0a0a;
        }

        .videos h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .videos h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #e74c3c;
        }

        .grid-gallery {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            padding: 2rem;
        }

 .grid-item {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    background: #1a1a1a;
    display: block;
    text-decoration: none;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

/* Mantener hover solo para el movimiento y sombra */
.grid-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(231, 76, 60, 0.3);
}

.grid-item:hover img {
    transform: scale(1.15);
}

/* Overlay siempre visible */
.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 2rem 1.5rem;
    transform: translateY(0); /* ya no se mueve */
    transition: none;
}

.grid-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.grid-subtitle {
    font-size: 0.85rem;
    color: red;
    letter-spacing: 1px;
}

/* Icono de play siempre visible */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* siempre visible */
    font-size: 2rem;
}

.play-icon::before {
    content: '▶';
    margin-left: 5px;
    color: #ffffff;
}


.btn-youtube-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #e74c3c;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
}
.btn-see-all:hover::before {
  left: 0;
}

.btn-see-all svg {
  fill: #e74c3c;
  transition: transform 0.3s;
  width: 20px;
  height: 20px;
}

.btn-see-all:hover {
  background: #e74c3c;
  color: #fff;
}

.btn-see-all:hover svg {
  fill: #fff;
  transform: scale(1.1);
}

.news {
    padding: 100px 5%;
    background: #0f0f0f;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.news h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-item {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-10px);
}

.news-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.news-content {
    padding: 1.5rem;
    background: #1a1a1a;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.news-content p {
    color: #ccc;
    line-height: 1.6;
}

   

 
        footer {
            background: #000;
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        footer p {
            color: #666;
        }

        footer .social-icons {
            justify-content: center;
            margin-bottom: 1rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .menu-toggle { display: flex; }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                pointer-events: none;
                transition: 0.3s;
            }
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            .hero h1 { font-size: 3rem; }
            .about-container { grid-template-columns: 1fr; }
            .about-image { height: 300px; }
            .grid-gallery { grid-template-columns: 1fr; padding: 1rem; }
        }
		
.contact {
    padding: 100px 5%;
    background: url('https://res.cloudinary.com/dliredzt9/image/upload/v1759886472/FireShot_Capture_307_-_Instagram_-_www.instagram.com_oghqxj.png') center/cover no-repeat;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.92);
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
}

.contact-header p {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:hover {
    transform: translateX(10px);
    background: rgba(34, 34, 34, 0.9);
    border-color: #e74c3c;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #e74c3c;
}

.info-text p {
    color: #ccc;
    font-size: 0.95rem;
}

.social-links {
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.social-icons-contact {
    display: flex;
    gap: 1rem;
}

.social-icons-contact a {
    width: 45px;
    height: 45px;
    background: rgba(34, 34, 34, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-contact a:hover {
    background: #e74c3c;
    transform: translateY(-5px);
    border-color: #e74c3c;
}

.social-icons-contact svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.contact-form {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid rgba(51, 51, 51, 0.5);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background: rgba(10, 10, 10, 0.8);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: #e74c3c;
    background: rgba(26, 26, 26, 0.95);
    padding: 0 0.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

