:root {
    --primary: #FFC107;
    --primary-dark: #FFA000;
    --dark: #121212;
    --dark-light: #1E1E1E;
    --secondary: #2D2D2D;
    --light: #F8F9FA;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: white;
    overflow-x: hidden;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar {
    background-color: rgba(18, 18, 18, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    //background: url('https://radioestudiof.com.ec/images/pagina-principal/head2.svg') no-repeat center center;
    background: url('https://radioestudiof.com.ec/assets/images/head2.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.floating-note {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}

.note-1 {
    top: 20%;
    left: 10%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.note-2 {
    top: 70%;
    left: 80%;
    animation-delay: 1s;
}

.note-3 {
    top: 40%;
    left: 65%;
    width: 25px;
    height: 25px;
    animation-delay: 2s;
}

.note-4 {
    top: 80%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.btn-warning {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -10px;
    left: 0;
    background-color: var(--primary);
    border-radius: 2px;
}

.track-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.track-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.track-card:hover .track-overlay {
    opacity: 1;
}

.play-btn {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.track-card:hover .play-btn {
    opacity: 1;
    transform: scale(1);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    background-color: var(--dark-light) !important;
}

.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
    transform: translateY(-3px);
}

#backToTop {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

.floating-badge {
    top: -15px;
    right: -15px;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(15deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.05);
    }

    100% {
        transform: rotate(15deg) scale(1);
    }
}

.testimonial-card {
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.filter-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

/* Responsive adjustments */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .carousel-control-next {
        right: 0px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

.text-muted {
    color: #F8F9FA !important
}

/* Active nav link style */
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffc107 !important;
    font-weight: 500;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #ffc107;
}

/* Back to top button */
#backToTop {
    display: none;
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.beat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.beat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.beat-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.beat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beat-card:hover .beat-overlay {
    opacity: 1;
}

.play-btn {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.beat-card:hover .play-btn {
    opacity: 1;
    transform: scale(1);
}

.genre-badge {
    transition: all 0.3s ease;
}

.beat-card:hover .genre-badge {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
}

.process-step {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.process-step:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary);
}

.step-number {
    position: absolute;
    left: -15px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.pricing-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.floating-note {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.section-content {
    background-color: var(--dark-light);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.list-group-item {
    background-color: transparent;
    color: white;
    border-color: var(--secondary);
}

.list-group-item strong {
    color: var(--primary);
}

.blog-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.blog-img {
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.tag-badge {
    background-color: var(--secondary);
    color: white;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.sidebar-widget {
    background-color: var(--dark-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--secondary);
}

.popular-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--secondary);
    color: white;
    border-radius: 30px;
    margin: 0 5px 10px 0;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    background-color: var(--secondary);
    border: none;
    color: white;
    padding-right: 120px;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
}

.pagination .page-item .page-link {
    background-color: var(--dark-light);
    color: white;
    border-color: var(--secondary);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.tag-badge {
    background-color: var(--secondary);
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tag-badge:hover {
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
}

.sidebar-widget {
    background-color: var(--dark-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--secondary);
}

.popular-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-share a:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.related-post-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.related-post-img {
    height: 200px;
    object-fit: cover;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.article-header-img {
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    align-items: center;

}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
}

.article-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary);
}

.booking-card {
    background-color: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.booking-card-header {
    background-color: var(--primary);
    color: var(--dark);
    padding: 20px;
    text-align: center;
}

.booking-card-body {
    padding: 30px;
}

.form-control,
.form-select {
    background-color: var(--secondary);
    border: none;
    color: white;
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--secondary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.session-type-card {
    background-color: var(--secondary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.session-type-card:hover,
.session-type-card.active {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.session-type-card.active {
    background-color: rgba(255, 193, 7, 0.1);
}

.time-slot-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.time-slot-btn:hover,
.time-slot-btn.active {
    background-color: var(--primary);
    color: var(--dark);
}

.studio-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.studio-feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

.flatpickr-day.selected {
    background-color: var(--primary);
    border-color: var(--primary);
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover {
    background-color: var(--secondary);
}

.booking-card {
    background-color: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.booking-card-header {
    background-color: var(--primary);
    color: var(--dark);
    padding: 20px;
    text-align: center;
}

.booking-card-body {
    padding: 30px;
}

.form-control,
.form-select {
    background-color: var(--secondary);
    border: none;
    color: white;
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--secondary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.session-type-card {
    background-color: var(--secondary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.session-type-card:hover,
.session-type-card.active {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.session-type-card.active {
    background-color: rgba(255, 193, 7, 0.1);
}

.time-slot-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.time-slot-btn:hover,
.time-slot-btn.active {
    background-color: var(--primary);
    color: var(--dark);
}

.studio-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.studio-feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

.flatpickr-day.selected {
    background-color: var(--primary);
    border-color: var(--primary);
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover {
    background-color: var(--secondary);
}

/* Preloader Styles */
#preloader {
    position: fixed;
    /* Changed from position-fixed to the actual CSS property */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    pointer-events: none;
    /* This allows clicks to pass through when fading out */
}

.music-loader {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 60px;
    gap: 4px;
}

.music-loader .bar {
    width: 8px;
    height: 10px;
    background-color: #ffc107;
    animation: musicLoader 1.5s ease-in-out infinite;
    transform-origin: bottom;
}

.music-loader .bar:nth-child(1) {
    animation-delay: 0.1s;
}

.music-loader .bar:nth-child(2) {
    animation-delay: 0.2s;
}

.music-loader .bar:nth-child(3) {
    animation-delay: 0.3s;
}

.music-loader .bar:nth-child(4) {
    animation-delay: 0.4s;
}

.music-loader .bar:nth-child(5) {
    animation-delay: 0.5s;
}

.music-loader .bar:nth-child(6) {
    animation-delay: 0.6s;
}

.music-loader .bar:nth-child(7) {
    animation-delay: 0.7s;
}

.music-loader .bar:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes musicLoader {

    0%,
    100% {
        transform: scaleY(0.1);
    }

    50% {
        transform: scaleY(4);
    }
}

.bg-dark-subtle {
    background-color: #1c1e1f !important;
}

.p-4 {
    padding: 1.6rem !important;
}

#message {
    min-height: 235px;
}

textarea::placeholder {
    color: #fff !important;
}

input::placeholder {
    color: #fff !important;
}

#userpart {
    margin-left: 4%;
}

* {
    box-sizing: border-box;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
}
.article-content img{margin-right: 10px;}

@media (max-width: 1150px) {
    .hero-title {
        margin-top: 20% !important;
        font-size: 3rem !important;
    }
}


.floating-note {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 100%;
}


.hero-section {
  overflow-x: hidden;
}

.carousel-item {
  max-width: 100%;
}

.track-cover img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  /* Constrain floating elements */
  .floating-note {
    display: none; /* Optionally hide on mobile */
  }

  /* Adjust hero section padding */
  .hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure buttons wrap properly */
  .btn {
    white-space: normal;
  }
}

/* Ensure no horizontal overflow */
body {
  overflow-x: hidden;
}

/* Constrain floating elements */
.floating-elements {
  position: absolute;
  width: 100%;
  overflow: hidden;
}

/* Fix track card images */
.track-cover img {
  max-width: 100%;
  height: auto;
}

/* Prevent badge overflow */
.badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .btn {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10% !important;
  }
  .floating-badge{
    top: 20px !important;
  }
}

/* Check for fixed-position elements */
.fixed-element, .sticky-element {
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
}


/* Reset negative margins on mobile */
@media (max-width: 767px) {
  * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Constrain transformed elements */
.transformed-element {
  transform: translateX(0) !important;
}

/* Replace 100vw with 100% on mobile */
@media (max-width: 767px) {
  .full-width-element {
    width: 100% !important;
  }
}

/* Nuclear option (use as last resort) */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
}

/* Kill horizontal scroll permanently */
body {
  overscroll-behavior-x: none;
}

@media (max-width: 767px) {
  /* Disable horizontal scroll */
  body, .container, .row, [class*="col-"] {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }

  /* Reset any problematic elements */
  .hero-section, .floating-elements, .carousel-item {
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mb-5 {
    margin-bottom: 1rem !important;
  }
}

/* BOTONES DE REDES SOCIALES */
.btn-play-music {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.btn-play-music:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.6);
}

.btn-play-music i {
    font-size: 1.3rem;
}
