        /* Variables de colores (tonos vibrantes y juveniles) */
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFD166;
            --dark: #1A1A2E;
            --light: #FFFFFF;
            --background: #F8F9FA;
        }
        
        /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--background);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--dark);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
        }

        .show-item .btn {
            width: auto;
            align-self: flex-start; /* Alinea a la izquierda */
            margin-top: 10px;
        }
        
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(78, 205, 196, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--light);
            color: var(--light);
            box-shadow: none;
        }
        
        .btn-outline:hover {
            background-color: var(--light);
            color: var(--primary);
            box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.2rem;
            position: relative;
            color: var(--dark);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }
        
        /* Header y Navegación - Mejorado para móvil */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 15px 0;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }
        
        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--light);
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .logo-icon {
            margin-right: 8px;
            font-size: 1.8rem;
            color: var(--primary);
        }
        
        .logo img {
            height: 40px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            font-weight: 600;
            position: relative;
            color: var(--light);
            font-size: 1rem;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--light);
            z-index: 1001;
        }
        
        /* Hero Section Mejorada para móvil */
        .hero {
            min-height: 100vh;
            height: auto;
            background: linear-gradient(rgba(26, 26, 46, 0.50), rgba(26, 26, 46, 0.9)), url('https://comunidadjesus.com/images/banner2.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            padding: 100px 0 60px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 75% 30%, rgba(255, 107, 107, 0.15) 0%, transparent 50%);
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(transparent, var(--background));
            z-index: 1;
        }
        
        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            position: relative;
            z-index: 2;
            padding: 0 15px;
            text-align: center;
        }
        
        .hero-text {
            width: 100%;
            max-width: 100%;
            padding: 0;
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
            line-height: 1.2;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.6;
            max-width: 100%;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            padding: 0 10px;
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 25px;
            width: 100%;
            max-width: 300px;
        }
        
        .spotify-player {
            width: 100%;
            max-width: 400px;
            background: rgba(29, 185, 84, 0.15);
            backdrop-filter: blur(12px);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeIn 1.2s ease-out;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .spotify-player:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .spotify-player::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
            z-index: -1;
        }
        
        .spotify-player h3 {
            margin-bottom: 15px;
            color: white;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        #spotifyPlayer {
            border-radius: 12px;
            width: 100%;
            height: 352px;
            border: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .music-note {
            position: absolute;
            font-size: 1.5rem;
            color: var(--primary);
            opacity: 0.8;
            animation: float 6s infinite ease-in-out;
            z-index: 1;
            text-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
            display: none; /* Ocultamos en móvil para mejor rendimiento */
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            33% {
                transform: translateY(-15px) rotate(5deg) scale(1.1);
            }
            66% {
                transform: translateY(8px) rotate(-5deg) scale(0.9);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* About Section - Optimizado para móvil */
        .about {
            background-color: white;
            position: relative;
            padding: 60px 0;
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            width: 100%;
            min-width: auto;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .about-image {
            width: 100%;
            min-width: auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: rotate(0deg);
            transition: transform 0.3s;
        }
        
        .about-image:hover {
            transform: scale(1.02);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Music Section - Optimizado para móvil */
        .music {
            text-align: center;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 60px 0;
        }
        
        .music::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/connected.png');
            opacity: 0.1;
        }
        
        .music .section-title {
            color: white;
        }
        
        .music-container {
            max-width: 100%;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .music-player {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .platforms {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .platforms .btn {
            padding: 12px 20px;
            font-size: 0.85rem;
        }
        
        /* Shows Section - Optimizado para móvil */
        .shows {
            background-color: var(--background);
            padding: 60px 0;
        }
        
        .shows-list {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .show-item {
            background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary);
            transition: transform 0.3s;
        }
        
        .show-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }
        
        .show-date {
            font-weight: bold;
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .show-location {
            margin: 10px 0 15px;
            color: var(--dark);
            font-size: 1rem;
        }
        
        /* Gallery Section - Optimizado para móvil */
        .gallery {
            text-align: center;
            background-color: white;
            padding: 60px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 200px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Contact Section - Optimizado para móvil */
        .contact {
            background: linear-gradient(135deg, var(--dark) 0%, #2a2a4a 100%);
            color: white;
            padding: 60px 0;
        }
        
        .contact .section-title {
            color: white;
        }
        
        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .contact-form {
            width: 100%;
            min-width: auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: white;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-family: 'Open Sans', sans-serif;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background-color: rgba(255, 255, 255, 0.15);
        }
        
        .contact-info {
            width: 100%;
            min-width: auto;
        }
        
        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.2rem;
            width: 30px;
            text-align: center;
        }
        
        .social-links {
            margin-top: 30px;
        }
        
        .social-links h3 {
            margin-bottom: 15px;
        }
        
        .social-links a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1.5rem;
            color: white;
            transition: color 0.3s, transform 0.3s;
        }
        
        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Footer - Optimizado para móvil */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 30px;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 25px;
            color: white;
        }
        
        .footer-nav {
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .footer-nav a {
            color: white;
            font-size: 1rem;
            transition: color 0.3s;
        }
        
        .footer-nav a:hover {
            color: var(--primary);
        }
        
        .copyright {
            margin-top: 30px;
            opacity: 0.7;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .verse {
            font-style: italic;
            margin-top: 25px;
            text-align: center;
            color: var(--accent);
            font-size: 1.1rem;
            max-width: 100%;
            padding: 0 15px;
        }
        
        /* Media Queries para Responsive */
        @media (min-width: 576px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .hero-buttons {
                flex-direction: row;
                max-width: 400px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        
        @media (min-width: 768px) {
            .hero {
                min-height: 100vh;
                height: 100vh;
                padding: 0;
            }
            
            .hero-content {
                flex-direction: row;
                text-align: left;
                padding-top: 0;
            }
            
            .hero-text {
                width: 50%;
                max-width: 50%;
                padding-right: 30px;
                margin-bottom: 0;
                text-align: left;
            }
            
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .hero p {
                padding: 0;
                margin: 0 auto 30px 0;
                text-align: left;
            }
            
            .hero-buttons {
                justify-content: flex-start;
            }
            
            .spotify-player {
                width: 40%;
                max-width: 40%;
            }
            
            .about-content {
                flex-direction: row;
                text-align: left;
            }
            
            .about-text {
                width: 50%;
            }
            
            .about-image {
                width: 45%;
            }
            
            .contact-container {
                flex-direction: row;
            }
            
            .contact-form {
                width: 50%;
            }
            
            .contact-info {
                width: 45%;
            }
            
            .music-note {
                display: block;
            }
            
            .music-note:nth-child(1) {
                top: 20%;
                left: 10%;
                animation-delay: 0s;
            }
            
            .music-note:nth-child(2) {
                top: 65%;
                right: 25%;
                animation-delay: 2s;
                color: var(--secondary);
            }
            
            .music-note:nth-child(3) {
                bottom: 25%;
                left: 20%;
                animation-delay: 4s;
                color: var(--accent);
            }
            
            .section-title {
                font-size: 2.8rem;
            }
        }
        
        @media (min-width: 992px) {
            .hero h1 {
                font-size: 3.8rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            .nav-menu li {
                margin-left: 30px;
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .about-content {
                gap: 60px;
            }
        }
        
        @media (max-width: 767px) {
            /* Menú móvil */
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                background-color: var(--dark);
                width: 80%;
                height: 100vh;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.4s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            /* Ajustes generales para móvil */
            section {
                padding: 50px 0;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 0.85rem;
            }
            
            /* Ocultar notas musicales en móvil para mejor rendimiento */
            .music-note {
                display: none;
            }
            
            /* Ajustar espaciado en sección shows */
            .show-item {
                padding: 15px;
            }
            
            /* Ajustar grid de galería */
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 10px;
            }
            
            .gallery-item {
                height: 150px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .section-title::after {
                bottom: -10px;
                width: 60px;
                height: 3px;
            }
            
            .logo {
                font-size: 1.4rem;
            }
            
            .logo img {
                height: 35px;
            }
            
            .platforms {
                flex-direction: column;
                align-items: center;
            }
            
            .platforms .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            
            .footer-nav {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }