/* Modo oscuro */
[data-theme="dark"] {
    --primary: #d4af37;
    --secondary: #8a0303;
    --accent: #f8f1e5;
    --light: #2c1a1d;
    --dark: #f0e6d2;
    --manga-bg: #1a0a0a;
    --header-bg: rgba(26, 10, 10, 0.9);
    --text-color: #f8f1e5;
}

/* Variables para modo claro */
:root {
    --primary: #8a0303;
    --secondary: #d4af37;
    --accent: #2c1a1d;
    --light: #f8f1e5;
    --dark: #1a0a0a;
    --manga-bg: #f0e6d2;
    --text-color: #1a0a0a;
    --nav-bg: rgba(248, 241, 229, 0.9);
    --nav-text: #1a0a0a;
    --card-bg: #f8f1e5;
}

/* Variables para modo oscuro */
.dark-mode {
    --primary: #d4af37;
    --secondary: #8a0303;
    --accent: #d4af37;
    --light: #2c1a1d;
    --dark: #f8f1e5;
    --manga-bg: #1a0a0a;
    --text-color: #f8f1e5;
    --nav-bg: rgba(26, 10, 10, 0.9);
    --nav-text: #f8f1e5;
    --card-bg: #2c1a1d;
}

/* Estilos del menú */
.manga-nav {
    background-color: var(--nav-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--primary);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo span {
    font-family: 'Mochiy Pop One', sans-serif;
    color: var(--primary);
    font-size: 1.5rem;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--nav-text);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    background-color: rgba(138, 3, 3, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.theme-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--primary);
}


/* Secciones ocultas */
.section {
    display: none;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section.active {
    display: block;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--nav-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        border-top: 2px solid var(--primary);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 1rem 0;
    }    
}


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'RocknRoll One', sans-serif;
            background-color: var(--manga-bg);
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23d4af37" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
            color: var(--dark);
            line-height: 1.6;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, transparent 20%, var(--manga-bg) 90%),
                        repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 11px),
                        repeating-linear-gradient(-45deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 11px);
            z-index: -1;
        }
        
        .manga-border {
            position: fixed;
            z-index: -1;
            pointer-events: none;
        }
        
        .border-top {
            top: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(to bottom, var(--dark), transparent);
        }
        
        .border-bottom {
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(to top, var(--dark), transparent);
        }
        
        .border-left {
            top: 0;
            left: 0;
            bottom: 0;
            width: 40px;
            background: linear-gradient(to right, var(--dark), transparent);
        }
        
        .border-right {
            top: 0;
            right: 0;
            bottom: 0;
            width: 40px;
            background: linear-gradient(to left, var(--dark), transparent);
        }
        
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding: 20px;
        }
        
        header::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
        }
        
        h1 {
            font-family: 'Mochiy Pop One', sans-serif;
            color: var(--primary);
            font-size: 3.5rem;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
            letter-spacing: 2px;
            margin-bottom: 10px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        
        h1::after {
            content: "✧";
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary);
            font-size: 2rem;
        }
        
        h1::before {
            content: "✧";
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary);
            font-size: 2rem;
        }
        
        .subtitle {
            color: var(--accent);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(248, 241, 229, 0.7);
            padding: 10px;
            border-radius: 10px;
            border: 2px dashed var(--primary);
        }
        
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .card {
            background: var(--light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border: 3px solid var(--primary);
        }
        
        .card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.15);
        }
        
        .card-header {
            padding: 15px;
            background: var(--primary);
            text-align: center;
        }
        
        .card-title {
            font-family: 'Mochiy Pop One', sans-serif;
            color: var(--light);
            font-size: 1.8rem;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        
        .card-image {
            width: 100%;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .card-image::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 70%, var(--light) 100%);
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 20px;
            position: relative;
        }
        
        .card-content::before {
            content: "";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 5px;
            background: var(--secondary);
            border-radius: 5px;
        }
        
        .card-info {
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .audio-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: rgba(138, 3, 3, 0.1);
            padding: 15px;
            border-radius: 10px;
            border: 2px solid var(--primary);
        }
        
        .audio-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .audio-btn:hover {
            background: var(--secondary);
            transform: scale(1.1);
            box-shadow: 0 6px 8px rgba(0,0,0,0.2);
        }
        
        .progress-container {
            flex-grow: 1;
            height: 8px;
            background: rgba(138, 3, 3, 0.2);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: var(--primary);
            width: 0%;
            transition: width 0.1s linear;
        }
        
        .time-display {
            font-size: 0.9rem;
            color: var(--accent);
            min-width: 80px;
            text-align: center;
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .volume-control input {
            width: 80px;
        }
        
        .manga-effect {
            position: absolute;
            font-size: 8rem;
            opacity: 0.05;
            z-index: -1;
            transform: rotate(-30deg);
            color: var(--primary);
        }
        
        .effect-1 {
            top: 10%;
            left: 5%;
        }
        
        .effect-2 {
            bottom: 10%;
            right: 5%;
            transform: rotate(30deg);
        }
        
        footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: var(--accent);
            font-size: 0.9rem;
        }
        
        .speaker-icon {
            margin-right: 5px;
            color: var(--primary);
        }
        
        .manga-note {
            position: absolute;
            width: 100px;
            height: 100px;
            background: #fff9c4;
            border: 2px dashed var(--primary);
            transform: rotate(5deg);
            opacity: 0.8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary);
            box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
            z-index: -1;
        }
        
        .note-1 {
            top: 10%;
            right: 5%;
        }
        
        .note-2 {
            bottom: 15%;
            left: 5%;
            transform: rotate(-5deg);
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .cards-container {
                grid-template-columns: 1fr;
            }
            
            .manga-effect, .manga-note {
                display: none;
            }
        }

      /* Estilos para el formulario de encuesta */
.manga-form {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 20px rgba(226, 125, 125, 0.15);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed var(--primary);
}

.pregunta-title {
    color: var(--primary);
    font-family: 'Mochiy Pop One', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.opciones-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.opcion-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background-color: rgba(138, 3, 3, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.opcion-btn:hover {
    background-color: rgba(138, 3, 3, 0.2);
    border-color: var(--primary);
}

.opcion-btn input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.opcion-btn input[type="radio"]:checked + .custom-radio {
    background-color: var(--primary);
}

.opcion-btn input[type="radio"]:checked + .custom-radio::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--light);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.manga-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.manga-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.form-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Estilos para modo oscuro en el formulario */
.dark-mode .manga-form {
    background-color: var(--card-bg);
}

.dark-mode .opcion-btn {
    background-color: rgba(212, 175, 55, 0.1);
}

.dark-mode .opcion-btn:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .manga-form {
        padding: 1.5rem;
    }
    
    .pregunta-title {
        font-size: 1.1rem;
    }
    
    .opcion-btn {
        padding: 0.6rem 1rem;
    }
}

/* Estilos para la sección Nosotros */
.about-section {
    margin-top: 2rem;
}

.about-card {
    display: flex;
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--primary);
}

.about-card.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-card:hover .about-image img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    color: var(--primary);
    font-family: 'Mochiy Pop One', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.about-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.manga-list {
    list-style-type: none;
    margin: 1rem 0;
    padding-left: 0;
}

.manga-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.manga-list li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Estilos para el equipo */
.team-section {
    margin: 4rem 0;
    text-align: center;
}

.section-title {
    color: var(--primary);
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--primary);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    color: var(--primary);
    font-family: 'Mochiy Pop One', sans-serif;
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-bio {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.heart-icon {
    color: var(--primary);
    margin-right: 5px;
}

/* Estilos para modo oscuro */
.dark-mode .about-card,
.dark-mode .team-member {
    background-color: var(--card-bg);
}

.dark-mode .about-text,
.dark-mode .member-bio {
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .about-card {
        flex-direction: column;
    }
    
    .about-image {
        min-height: 200px;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

 
        :root {
            --primary: #8a0303;
            --secondary: #d4af37;
            --accent: #2c1a1d;
            --light: #f8f1e5;
            --dark: #1a0a0a;
            --manga-bg: #f0e6d2;
            --text-color: #1a0a0a;
            --nav-bg: rgba(248, 241, 229, 0.9);
            --nav-text: #1a0a0a;
            --card-bg: #f8f1e5;
        }
        
        .dark-mode {
            --primary: #d4af37;
            --secondary: #8a0303;
            --accent: #d4af37;
            --light: #2c1a1d;
            --dark: #f8f1e5;
            --manga-bg: #1a0a0a;
            --text-color: #f8f1e5;
            --nav-bg: rgba(26, 10, 10, 0.9);
            --nav-text: #f8f1e5;
            --card-bg: #2c1a1d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'RocknRoll One', sans-serif;
            background-color: var(--manga-bg);
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23d4af37" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
            color: var(--text-color);
            line-height: 1.6;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, transparent 20%, var(--manga-bg) 90%),
                        repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 11px),
                        repeating-linear-gradient(-45deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 11px);
            z-index: -1;
        }
        
        .manga-border {
            position: fixed;
            z-index: -1;
            pointer-events: none;
        }
        
        .border-top {
            top: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(to bottom, var(--dark), transparent);
        }
        
        .border-bottom {
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(to top, var(--dark), transparent);
        }
        
        .border-left {
            top: 0;
            left: 0;
            bottom: 0;
            width: 40px;
            background: linear-gradient(to right, var(--dark), transparent);
        }
        
        .border-right {
            top: 0;
            right: 0;
            bottom: 0;
            width: 40px;
            background: linear-gradient(to left, var(--dark), transparent);
        }
        
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }
        
        /* Menú de navegación */
        .manga-nav {
            background-color: var(--nav-bg);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid var(--primary);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo span {
            font-family: 'Mochiy Pop One', sans-serif;
            color: var(--primary);
            font-size: 1.5rem;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        
        .nav-link {
            color: var(--nav-text);
            text-decoration: none;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link.active {
            color: var(--primary);
            background-color: rgba(138, 3, 3, 0.1);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .theme-btn {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .theme-btn:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: all 0.3s ease;
            background-color: var(--primary);
        }
        
        /* Ajustar el body para el menú fijo */
        body {
            padding-top: 80px;
        }
        
        header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding: 20px;
        }
        
        header::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
        }
        
        h1 {
            font-family: 'Mochiy Pop One', sans-serif;
            color: var(--primary);
            font-size: 3.5rem;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
            letter-spacing: 2px;
            margin-bottom: 10px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        
        h1::after {
            content: "✧";
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary);
            font-size: 2rem;
        }
        
        h1::before {
            content: "✧";
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary);
            font-size: 2rem;
        }
        
        .subtitle {
            color: var(--accent);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            background-color: rgb(255, 240, 213);
            padding: 10px;
            border-radius: 10px;
            border: 2px dashed var(--primary);
        }
        
        .manga-effect {
            position: absolute;
            font-size: 8rem;
            opacity: 0.05;
            z-index: -1;
            transform: rotate(-30deg);
            color: var(--primary);
        }
        
        .effect-1 {
            top: 10%;
            left: 5%;
        }
        
        .effect-2 {
            bottom: 10%;
            right: 5%;
            transform: rotate(30deg);
        }
        
        footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: var(--accent);
            font-size: 0.9rem;
        }
        
        .speaker-icon {
            margin-right: 5px;
            color: var(--primary);
        }
        
        .manga-note {
            position: absolute;
            width: 100px;
            height: 100px;
            background: #fff9c4;
            border: 2px dashed var(--primary);
            transform: rotate(5deg);
            opacity: 0.8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary);
            box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
            z-index: -1;
        }
        
        .note-1 {
            top: 10%;
            right: 5%;
        }
        
        .note-2 {
            bottom: 15%;
            left: 5%;
            transform: rotate(-5deg);
        }
        
        /* Estilos para la página de contactos */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        
        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        .contact-info {
            background: var(--light);
            border-radius: 15px;
            padding: 30px;
            border: 3px solid var(--primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        .contact-form {
            background: var(--light);
            border-radius: 15px;
            padding: 30px;
            border: 3px solid var(--primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        .contact-title {
            font-family: 'Mochiy Pop One', sans-serif;
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(138, 3, 3, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .contact-method:hover {
            background: rgba(138, 3, 3, 0.2);
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
            color: var(--light);
        }
        
        .contact-details h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .contact-details p {
            font-size: 1.1rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            background: var(--secondary);
            transform: scale(1.1) rotate(10deg);
        }
        
        /* Estilos para el formulario */
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--primary);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--primary);
            border-radius: 8px;
            background: rgba(138, 3, 3, 0.05);
            color: var(--text-color);
            font-family: 'RocknRoll One', sans-serif;
            font-size: 1rem;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(212, 175, 55, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--primary);
            color: var(--light);
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            display: block;
            width: 100%;
            font-family: 'Mochiy Pop One', sans-serif;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .submit-btn::after {
            content: "✉️";
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
        }
        
        .map-container {
            margin-top: 30px;
            border-radius: 15px;
            overflow: hidden;
            border: 3px solid var(--primary);
            height: 300px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.2rem;
            font-family: 'Mochiy Pop One', sans-serif;
            text-align: center;
            padding: 20px;
        }
        
        /* Estilos para modo oscuro */
        .dark-mode .contact-info,
        .dark-mode .contact-form {
            background: var(--card-bg);
        }
        
        .dark-mode .contact-method {
            background: rgba(212, 175, 55, 0.1);
        }
        
        .dark-mode .contact-method:hover {
            background: rgba(212, 175, 55, 0.2);
        }
        
        .dark-mode .form-group input,
        .dark-mode .form-group textarea,
        .dark-mode .form-group select {
            background: rgb(255, 255, 255);
            color: var(--light);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .hamburger {
                display: block;
            }
            
            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            
            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                gap: 0;
                flex-direction: column;
                background-color: var(--nav-bg);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 1rem 0;
                border-top: 2px solid var(--primary);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-link {
                margin: 1rem 0;
            }
            
            body {
                padding-top: 60px;
            }
            
            .contact-title {
                font-size: 1.8rem;
            }
        }


        
        .notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: rgb(221, 0, 0);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: #4CAF50;
    border-left: 5px solid #2E7D32;
}

.notification.error {
    background-color: #F44336;
    border-left: 5px solid #C62828;
}

.notification i {
    font-size: 1.2rem;
}

/* logos pags */
.logo-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(43, 36, 36, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 2.5s ease-out;
    }
    
    .logo-loader.hidden {
        opacity: 0;
        pointer-events: none;
    }
    
    .logo {
        width: 500px;
        height: 500px;
        animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.1); opacity: 0.8; }
        100% { transform: scale(1); opacity: 1; }
    }
            