/* ==========================================================================
   LO NUEVO EN GRABACIONES - VINCE EFFECTS
   Estilo Principal Adaptado de Plantilla Onepage Moderna
   ========================================================================== */

:root {
    --primary-blue: #0052d4;
    --vibrant-blue: #4364f7;
    --cyan-accent: #00d2ff;
    --dark-bg: #0b0f19;
    --card-bg: #131b2e;
    --card-hover: #1c2845;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-light: #e2e8f0;
    --border-color: rgba(255, 255, 255, 0.08);
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1da851;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background: linear-gradient(rgba(11, 15, 25, 0.94), rgba(11, 15, 25, 0.94)), url('../IMG/studio-bg.png') center/cover fixed no-repeat;
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

.highlight-blue {
    background: linear-gradient(135deg, var(--cyan-accent), var(--vibrant-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--cyan-accent);
}

.text-center {
    text-align: center;
}

/* Section Common Styling */
section {
    padding: 100px 0;
    position: relative;
    overflow-x: hidden;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 30px;
    color: var(--cyan-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.sound-wave-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 50px;
    margin-bottom: 15px;
}

.sound-wave-loader span {
    width: 6px;
    height: 100%;
    background: var(--cyan-accent);
    border-radius: 3px;
    animation: wave 1.2s infinite ease-in-out;
}

.sound-wave-loader span:nth-child(2) { animation-delay: 0.2s; }
.sound-wave-loader span:nth-child(3) { animation-delay: 0.4s; }
.sound-wave-loader span:nth-child(4) { animation-delay: 0.6s; }
.sound-wave-loader span:nth-child(5) { animation-delay: 0.8s; }

@keyframes wave {
    0%, 100% { height: 15px; }
    50% { height: 50px; }
}

.spinner p {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-blue));
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 100, 247, 0.4);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-round-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--whatsapp-green);
    color: #fff;
    border-radius: 50%;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    margin-left: 5px;
}

.btn-whatsapp-round-nav:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.btn-outline-light {
    border: 1px solid var(--border-color);
    color: var(--text-white);
    background: rgba(255,255,255,0.05);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
}

.btn-block {
    width: 100%;
}

/* Header & Navbar */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
}

.navbar-header.scrolled {
    padding: 10px 0;
    background: rgba(11, 15, 25, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 48px;
    width: auto;
    border-radius: 6px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--cyan-accent);
}

.nav-link-orange {
    color: #ff7700 !important;
    font-weight: 700;
}

.nav-link-orange:hover, .nav-link-orange.active {
    color: #ff9900 !important;
    text-shadow: 0 0 10px rgba(255, 119, 0, 0.5);
}

.nav-link-orange::after {
    background: #ff7700 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan-accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.75) 0%, rgba(11, 15, 25, 0.90) 100%), url('../IMG/studio-bg.png') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 82, 212, 0.15) 0%, rgba(11, 15, 25, 0.85) 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-logo-wrapper {
    margin-bottom: 20px;
}

.hero-logo-img {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.25);
    border: 2px solid rgba(0, 210, 255, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(67, 100, 247, 0.15);
    border: 1px solid rgba(67, 100, 247, 0.4);
    border-radius: 30px;
    color: var(--cyan-accent);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-section h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--cyan-accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.badge-experience {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid var(--cyan-accent);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cyan-accent);
    font-weight: 700;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    display: flex;
    gap: 15px;
    background: var(--card-bg);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.feature-box i {
    font-size: 1.8rem;
    color: var(--cyan-accent);
}

.feature-box h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-box p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Why Choose Us & About Quote */
.why-choose-us-title {
    font-size: 1.3rem;
    color: var(--text-white);
    margin: 25px 0 15px;
    font-weight: 700;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.95rem;
    color: var(--text-white);
    transition: var(--transition);
}

.why-choose-item:hover {
    border-color: var(--cyan-accent);
    background: rgba(0, 210, 255, 0.05);
    transform: translateY(-2px);
}

.why-choose-item span.emoji {
    font-size: 1.2rem;
}

.about-quote {
    font-size: 1.05rem;
    font-weight: 600;
    font-style: italic;
    color: #00d2ff;
    border-left: 3px solid #00d2ff;
    padding-left: 15px;
    margin-top: 20px;
}

/* Services Grid */
.services-section {
    background: #090d15;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

.icon-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 82, 212, 0.4);
}

.card-content {
    padding: 30px 25px 25px 25px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-link {
    color: var(--cyan-accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    gap: 12px;
}

/* Demos SoundCloud Section */
.demos-section {
    background: radial-gradient(circle at bottom, #111a2e 0%, var(--dark-bg) 70%);
}

.soundcloud-wrapper {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    margin-bottom: 40px;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.sc-icon {
    font-size: 3rem;
    color: #ff5500;
}

.player-header div {
    flex-grow: 1;
}

.player-header h3 {
    font-size: 1.4rem;
}

.player-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.iframe-container {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.demo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.demo-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--cyan-accent);
}

.demo-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.demo-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--cyan-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.demo-info h4 {
    font-size: 1rem;
}

.demo-category {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.play-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--cyan-accent);
    color: #000;
}

/* Schedule Section */
.schedule-section {
    background: #0a0e17;
}

.schedule-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.schedule-header {
    margin-bottom: 30px;
}

.icon-large {
    font-size: 2.5rem;
    color: var(--cyan-accent);
    margin-bottom: 15px;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
}

.schedule-list li.closed .hours {
    color: #ef4444;
    font-weight: 600;
}

.schedule-list .hours {
    color: var(--cyan-accent);
    font-weight: 700;
}

/* Subtle Slogan Banner */
.slogan-subtle-box {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    background: rgba(0, 210, 255, 0.04);
    border: 1px dashed rgba(0, 210, 255, 0.25);
    padding: 10px 22px;
    border-radius: 40px;
    margin: 12px auto 20px;
    font-size: 0.95rem;
    color: var(--text-gray);
    max-width: 90%;
}

.slogan-subtle-box .slogan-brand {
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.slogan-subtle-box .slogan-phrase {
    color: var(--cyan-accent);
    font-weight: 600;
}

.slogan-subtle-box .slogan-sub {
    color: rgba(255, 255, 255, 0.85);
}

.slogan-divider {
    color: rgba(0, 210, 255, 0.4);
}

.schedule-center-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.social-contact-wrapper {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid var(--border-color);
}

/* Social Box */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.social-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-item.fb i { background: #1877f2; }
.social-item.ig i { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-item.tk i { background: #000000; border: 1px solid #333; }
.social-item.yt i { background: #ff0000; }

.social-item strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}

.social-item span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.social-item:hover {
    transform: translateY(-3px);
    border-color: var(--cyan-accent);
}

/* Contact Section */
.contact-section {
    background: #090d15;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--cyan-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.info-card h4 {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.info-card p, .info-card a {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.whatsapp-banner {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(11, 15, 25, 0.8));
    border: 1px solid var(--whatsapp-green);
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
}

.whatsapp-banner h3 {
    color: var(--whatsapp-green);
    margin-bottom: 8px;

}

.whatsapp-banner p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-whatsapp-full {
    background: var(--whatsapp-green);
    color: #fff;
    width: 100%;
}

.btn-whatsapp-full:hover {
    background: var(--whatsapp-hover);
}

.contact-form-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group select option {
    background: var(--dark-bg);
    color: #fff;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-accent);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.site-footer {
    background: #05070c;
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 50px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.footer-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-info p:last-child {
    margin-bottom: 0;
}

.webmaster-link {
    font-size: 0.85rem;
}

.webmaster-link a {
    color: var(--cyan-accent);
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.webmaster-link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan-accent);
    transition: var(--transition);
}

.webmaster-link a:hover::after {
    width: 100%;
}

.webmaster-link a:hover {
    color: var(--text-white);
}

#scrollTopBtn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

#scrollTopBtn:hover {
    background: var(--cyan-accent);
    color: #000;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .header-container {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .brand-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .brand-logo img {
        margin: 0 auto;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition);
        border-bottom: 1px solid var(--border-color);
        z-index: 1050;
        overflow-y: auto;
        transform: translateX(-100%);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu ul li {
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }

    .btn-whatsapp-round-nav {
        margin: 15px auto 0 auto;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .soundcloud-wrapper {
        padding: 15px;
    }

    .player-header {
        gap: 15px;
        text-align: center;
        justify-content: center;
    }

    .player-header div {
        width: 100%;
    }

    .player-header .btn {
        width: 100%;
        margin-top: 10px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .schedule-card {
        padding: 25px 20px;
    }

    .about-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-logo-img {
        max-width: 130px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding-top: 30px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }

    .why-choose-us-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .slogan-subtle-box {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .schedule-list li {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 12px 0;
    }

    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .info-card p, .info-card a {
        font-size: 0.95rem;
        word-break: break-all;
        white-space: normal;
        display: block;
        max-width: 100%;
    }

    .whatsapp-banner {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form-box {
        padding: 25px 15px;
        width: 100%;
        box-sizing: border-box;
    }
}

