/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a0e29 0%, #2d1b3d 25%, #4a148c 50%, #6a1b9a 75%, #1a0e29 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }

.section {
    padding: 80px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #e91e63, #c2185b, #ad1457);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #c2185b);
    margin: 0 auto 3rem;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.5);
}

.bg-dark {
    background: linear-gradient(135deg, rgba(26, 14, 41, 0.9) 0%, rgba(45, 27, 61, 0.8) 50%, rgba(74, 20, 140, 0.6) 100%);
}

.bg-gradient {
    background: linear-gradient(135deg, #1a0e29 0%, #2d1b3d 25%, #4a148c 50%, #6a1b9a 75%, #1a0e29 100%);
}

.bg-image {
    background: linear-gradient(135deg, rgba(26, 14, 41, 0.9), rgba(45, 27, 61, 0.9)), url('background-pattern.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #e91e63, #c2185b);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.6);
}

.btn-glow {
    background: linear-gradient(45deg, #e91e63, #c2185b);
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.6), 0 0 40px rgba(194, 24, 91, 0.4);
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(233, 30, 99, 0.6), 0 0 40px rgba(194, 24, 91, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(233, 30, 99, 0.8), 0 0 60px rgba(194, 24, 91, 0.6);
    }
}

.btn-outline {
    background: transparent;
    border: 2px solid #e91e63;
    color: #e91e63;
}

.btn-outline:hover {
    background: linear-gradient(45deg, #e91e63, #c2185b);
    color: #fff;
    border-color: transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #c2185b);
}

.btn-secondary {
    background: linear-gradient(45deg, #6a1b9a, #4a148c);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: relative;
}

.language-selector select {
    background: linear-gradient(45deg, #e91e63, #c2185b);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.language-selector select:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.language-selector select option {
    background: #2d1b3d;
    color: #fff;
    padding: 0.5rem;
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 14, 41, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #2d1b3d, #4a148c);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.modal-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(26, 14, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(233, 30, 99, 0.3);
}

#header.sticky {
    padding: 0.5rem 0;
    background: rgba(26, 14, 41, 0.98);
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.3);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.logo span {
    color: #e91e63;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

#nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

#nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

#nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #e91e63, #c2185b);
    border-radius: 25px;
    transition: width 0.3s ease;
    z-index: -1;
}

#nav a:hover::before {
    width: 100%;
}

#nav a:hover {
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.hero-bg {
    width: 1280px;
    height: 1920px;
    max-width: 100vw;
    max-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
}

/* Adicionar barras laterais quando necessário */
@media (min-aspect-ratio: 2/3) {
    .hero-bg {
        width: auto;
        height: 100vh;
        aspect-ratio: 1280/1920;
    }
    
    .hero-bg-container::before,
    .hero-bg-container::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: calc((100vw - (100vh * 1280 / 1920)) / 2);
        background: #000;
        z-index: 1;
    }
    
    .hero-bg-container::before {
        left: 0;
    }
    
    .hero-bg-container::after {
        right: 0;
    }
}

/* Para telas muito altas */
@media (max-aspect-ratio: 2/3) {
    .hero-bg {
        width: 100vw;
        height: auto;
        aspect-ratio: 1280/1920;
    }
    
    .hero-bg-container::before,
    .hero-bg-container::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: calc((100vh - (100vw * 1920 / 1280)) / 2);
        background: #000;
        z-index: 1;
    }
    
    .hero-bg-container::before {
        top: 0;
    }
    
    .hero-bg-container::after {
        bottom: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 14, 41, 0.8) 0%, rgba(45, 27, 61, 0.7) 25%, rgba(74, 20, 140, 0.6) 50%, rgba(106, 27, 154, 0.7) 75%, rgba(26, 14, 41, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    padding: 2rem;
    position: relative;
    color: white;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
    border: 3px solid rgba(233, 30, 99, 0.5);
}

.about-text h3 {
    color: #e91e63;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(194, 24, 91, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== GALLERY SECTION ===== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(233, 30, 99, 0.5);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #e91e63, #c2185b);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(194, 24, 91, 0.1));
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.4);
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 14, 41, 0.8), rgba(233, 30, 99, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag.vip {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
}

.tag.premium {
    background: linear-gradient(45deg, #e91e63, #c2185b);
    color: #fff;
}

.tag.exclusivo {
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: #fff;
}

/* ===== VIDEOS SECTION ===== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(194, 24, 91, 0.1));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.4);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e91e63, #c2185b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.6);
}

.play-button i {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.views {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.views i {
    margin-right: 0.5rem;
    color: #e91e63;
}

/* ===== PRICING SECTION ===== */
.pricing {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-card {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(194, 24, 91, 0.1));
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
}

.price-card.highlighted {
    border-color: #e91e63;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(233, 30, 99, 0.4);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #e91e63, #c2185b);
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card h3 {
    color: #e91e63;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.price span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.features li i {
    color: #e91e63;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ===== SCHEDULE SECTION ===== */
.schedule-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.schedule-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.location {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.map-container {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal.gallery-modal .modal-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    border-radius: 10px;
}

.modal video {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #e91e63;
    transform: scale(1.2);
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10000;
}

.modal-prev,
.modal-next {
    background: linear-gradient(45deg, #e91e63, #c2185b);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-prev:hover,
.modal-next:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1a0e29, #2d1b3d);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(233, 30, 99, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #e91e63;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e91e63;
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #e91e63, #c2185b);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.contact-info li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info li i {
    color: #e91e63;
    margin-right: 1rem;
    width: 20px;
}

.footer-actions {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 30, 99, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    #nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 14, 41, 0.98);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    #nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    #nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .language-selector {
        margin-top: 1rem;
    }
    
    .modal-nav {
        padding: 0 1rem;
    }
    
    .modal-prev,
    .modal-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .price-card {
        margin: 0 1rem;
    }
    
    .schedule-content h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .video-card {
        margin: 0 0.5rem;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}
