/* ==================================================
    CONFIGURACIÓN GENERAL
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==================================================
    BARRA SUPERIOR (NAVBAR)
================================================== */

.navbar {
    width: 100%;
    height: 100px;
    background: #050505;
    border-bottom: 1px solid #222;
    position: relative;
    z-index: 100;
}

.nav-container {
    width: 90%;
    max-width: 1450px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* MARCA */

.brand {
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
}

.brand img {
    width: 170px;
    height: auto;
    object-fit: contain;
}

.brand-slogan {
    font-size: 17px;
    font-style: italic;
    font-weight: 700;
    color: #ff1493;
    text-transform: uppercase;
}

.brand-slogan strong {
    color: #dfff00;
}

/* MENÚ */

.menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.menu-item {
    height: 100px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

.menu-item i {
    color: #ff00a8;
    font-size: 24px;
}

.menu-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff00a8;
    box-shadow: 0 0 15px #ff00a8;
}

.social {
    font-size: 24px;
    transition: 0.3s;
}

.social.facebook,
.social.instagram,
.social.whatsapp,
.social.tiktok,
.social.youtube {
    color: #dfff00;
}

.social:hover {
    transform: translateY(-4px) scale(1.15);
    filter: drop-shadow(0 0 10px #dfff00);
}

/* ==================================================
    HERO & HALOS DE LUZ
================================================== */

.hero {
    min-height: calc(100vh - 100px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px 20px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 0, 160, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at 15% 70%, rgba(255, 0, 170, 0.15), transparent 30%),
        radial-gradient(ellipse at 85% 70%, rgba(170, 255, 0, 0.15), transparent 30%);
    pointer-events: none;
}

/* ==================================================
    ESPECTRO DE AUDIO DE FONDO
================================================== */

.audio-background {
    position: absolute;
    bottom: 220px;
    width: 34%;
    height: 270px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    opacity: 0.75;
    z-index: 1;
    filter: blur(0.2px);
}

.audio-background.left {
    left: 0;
}

.audio-background.right {
    right: 0;
}

.audio-background::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 0, 170, 0.3), transparent);
    filter: blur(25px);
    z-index: -1;
}

.audio-background.right::after {
    background: linear-gradient(to top, rgba(180, 255, 0, 0.3), transparent);
}

.audio-background span {
    display: block;
    width: 6px;
    border-radius: 10px 10px 0 0;
    animation: equalizer 1s ease-in-out infinite alternate;
}

.audio-background.left span {
    background: linear-gradient(to top, #ff00a8, #ff1493);
    box-shadow: 0 0 10px #ff00a8, 0 0 20px #ff00a8;
}

.audio-background.right span {
    background: linear-gradient(to top, #b6ff00, #dfff00);
    box-shadow: 0 0 10px #b6ff00, 0 0 20px #b6ff00;
}

/* Delays individualizados para el ecualizador del hero */
.audio-background span:nth-child(1)  { height: 30px;  animation-delay: .1s; }
.audio-background span:nth-child(2)  { height: 60px;  animation-delay: .3s; }
.audio-background span:nth-child(3)  { height: 100px; animation-delay: .5s; }
.audio-background span:nth-child(4)  { height: 150px; animation-delay: .2s; }
.audio-background span:nth-child(5)  { height: 190px; animation-delay: .6s; }
.audio-background span:nth-child(6)  { height: 230px; animation-delay: .1s; }
.audio-background span:nth-child(7)  { height: 170px; animation-delay: .7s; }
.audio-background span:nth-child(8)  { height: 130px; animation-delay: .4s; }
.audio-background span:nth-child(9)  { height: 200px; animation-delay: .8s; }
.audio-background span:nth-child(10) { height: 160px; animation-delay: .2s; }
.audio-background span:nth-child(11) { height: 100px; animation-delay: .5s; }
.audio-background span:nth-child(12) { height: 70px;  animation-delay: .3s; }
.audio-background span:nth-child(13) { height: 120px; animation-delay: .6s; }
.audio-background span:nth-child(14) { height: 50px;  animation-delay: .1s; }
.audio-background span:nth-child(15) { height: 30px;  animation-delay: .4s; }

/* ==================================================
    LOGO CENTRAL
================================================== */

.main-logo {
    position: relative;
    z-index: 5;
    width: min(560px, 80vw);
    margin-bottom: 30px;
    animation: logoFloat 4s ease-in-out infinite;
}

.main-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 0, 170, 0.25)) drop-shadow(0 0 15px rgba(180, 255, 0, 0.12));
}

/* ==================================================
    REPRODUCTOR INTERACTIVO
================================================== */

.radio-player {
    width: min(1140px, 90vw);
    min-height: 215px;
    padding: 25px 35px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(120deg, rgba(10, 5, 15, 0.95), rgba(5, 5, 5, 0.95));
    border: 2px solid transparent;
    border-radius: 25px;
    background-image:
        linear-gradient(#080808, #080808),
        linear-gradient(90deg, #ff00a8, #ff00a8, #b6ff00, #b6ff00);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 20px rgba(255, 0, 170, 0.25), 0 0 40px rgba(180, 255, 0, 0.12);
}

.player-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 10px;
    border: 2px solid #ff00a8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #ff00a8, inset 0 0 15px rgba(255, 0, 168, 0.2);
}

.player-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.player-info {
    flex: 1;
}

.live {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff00a8;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff00a8;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff00a8;
    animation: livePulse 1.2s infinite;
}

.player-info h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.player-info p {
    font-size: 17px;
    color: #dfff00;
    font-weight: 600;
}

/* BOTÓN PLAY */

.play-button {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #ff00a8;
    background: #050505;
    color: white;
    font-size: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    box-shadow: 0 0 15px #ff00a8, inset 0 0 15px rgba(255, 0, 168, .2);
}

.play-button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px #ff00a8, 0 0 40px rgba(180, 255, 0, .2);
}

.play-button.playing {
    border-color: #dfff00;
    box-shadow: 0 0 20px #dfff00;
}

/* CONTROL DE VOLUMEN */

.volume-control {
    width: 310px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.volume-icon {
    color: #ff00a8;
    font-size: 22px;
}

.audio-icon {
    color: #dfff00;
    font-size: 24px;
}

#volumeSlider {
    flex: 1;
    height: 5px;
    cursor: pointer;
    appearance: none;
    background: linear-gradient(90deg, #ff00a8, #dfff00);
    border-radius: 10px;
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dfff00;
    box-shadow: 0 0 10px #dfff00;
    cursor: pointer;
}

/* MENSAJE DE ESTADO */

.status-message {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    color: #888;
    font-size: 13px;
    text-align: center;
    min-height: 20px;
}

.status-message.error {
    color: #ff3b9d;
}

.status-message.success {
    color: #dfff00;
}

/* ==================================================
    BANNER PUBLICITARIO
================================================== */

.ad-banner {
    position: relative;
    z-index: 50;
    width: min(900px, 80vw);
    margin: 25px auto;
    padding: 8px 60px;
    background: #080808;
    border-radius: 18px;
    border: 2px solid #1b1b1b;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(255, 0, 168, .15), 0 0 30px rgba(180, 255, 0, .08);
}

.ad-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(255, 0, 168, .15), transparent, rgba(180, 255, 0, .15));
    opacity: .35;
}

.ad-banner a {
    display: block;
    position: relative;
    z-index: 2;
}

.ad-banner img {
    width: 100%;
    display: block;
    border-radius: 14px;
    transition: opacity .8s ease, transform .35s ease;
}

.ad-banner img:hover {
    transform: scale(1.01);
}

.ad-banner img.fade {
    opacity: 0;
}

/* BOTONES DEL BANNER */

.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: .25s;
    box-shadow: 0 0 12px rgba(37, 211, 102, .45);
}

.banner-btn:hover {
    transform: translateY(-50%) scale(1.10);
    background: #1ebe5d;
    box-shadow: 0 0 20px rgba(37, 211, 102, .9);
}

.prev-banner {
    left: 10px;
}

.next-banner {
    right: 10px;
}

/* ==================================================
    REDES SOCIALES
================================================== */

.social-section {
    padding: 20px 20px 50px;
    text-align: center;
    position: relative;
    z-index: 20;
}

.social-section h3 {
    color: #dfff00;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ff00a8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #dfff00;
    font-size: 21px;
    transition: .3s;
}

.social-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #ff00a8;
}

/* ==================================================
    BOTÓN FLOTANTE DE WHATSAPP
================================================== */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    z-index: 9999;
    box-shadow: 0 0 18px rgba(37, 211, 102, .55);
    transition: .3s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 0 28px rgba(37, 211, 102, .9);
}

/* ==================================================
    CURSOR PERSONALIZADO (EFECTO NEÓN)
================================================== */

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 0, 168, 0.18) 0%, rgba(255, 0, 168, 0.08) 30%, rgba(190, 255, 0, 0.05) 50%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    background: #dfff00;
    box-shadow: 0 0 8px #dfff00, 0 0 18px #dfff00, 0 0 30px #ff00a8;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 0, 168, 0.7);
    box-shadow: 0 0 10px rgba(255, 0, 168, 0.5), inset 0 0 10px rgba(190, 255, 0, 0.2);
    opacity: 0;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

body.mouse-active .cursor-glow,
body.mouse-active .cursor-dot,
body.mouse-active .cursor-ring {
    opacity: 1;
}

a:hover ~ .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: #dfff00;
}

/*==================================================
        A RADIO LOADING SCREEN 2.0
==================================================*/

#loadingScreen{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    background:#050505;
    z-index:999999;
}

/*==============================
        FONDO
==============================*/

.loading-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at center,#38105d 0%,#14021f 35%,#050505 100%);
    animation:bgMove 8s linear infinite;
}

@keyframes bgMove{
    0%{
        transform:scale(1);
        filter:hue-rotate(0deg);
    }
    50%{
        transform:scale(1.08);
        filter:hue-rotate(15deg);
    }
    100%{
        transform:scale(1);
        filter:hue-rotate(0deg);
    }
}

/*==============================
        CONTENIDO
==============================*/

.loading-content{
    position:relative;
    z-index:20;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/*==============================
        LOGO
==============================*/

.loading-logo{
    width:180px;
    opacity:0;
    transform:scale(.5);
    animation:logoIntro 1.2s forwards;
    filter:
        drop-shadow(0 0 25px #ffcc00)
        drop-shadow(0 0 60px #ff00cc);
}

@keyframes logoIntro{
    from{
        opacity:0;
        transform:scale(.5);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

.loading-logo.glow{
    animation:pulseGlow 1.2s infinite;
}

@keyframes pulseGlow{
    0%{
        transform:scale(1);
        filter:
        drop-shadow(0 0 10px #ffd000)
        drop-shadow(0 0 30px #ff00cc);
    }
    50%{
        transform:scale(1.06);
        filter:
        drop-shadow(0 0 25px #ffd000)
        drop-shadow(0 0 70px #ff00cc);
    }
    100%{
        transform:scale(1);
        filter:
        drop-shadow(0 0 10px #ffd000)
        drop-shadow(0 0 30px #ff00cc);
    }
}

/*==============================
        ONDAS
==============================*/

.sound-wave{
    position:absolute;
    width:220px;
    height:220px;
    border:2px solid rgba(255,255,255,.15);
    border-radius:50%;
    animation:wave 3s linear infinite;
}

.wave2{
    animation-delay:1s;
}

.wave3{
    animation-delay:2s;
}

@keyframes wave{
    from{
        transform:scale(.4);
        opacity:1;
    }
    to{
        transform:scale(2.5);
        opacity:0;
    }
}

/*==============================
        ECUALIZADOR
==============================*/

.equalizer{
    display:flex;
    align-items:flex-end;
    gap:8px;
    margin:35px 0;
}

.equalizer span{
    width:8px;
    height:25px;
    border-radius:20px;
    background:linear-gradient(#ffcc00,#ff00cc);
    animation:eq .7s ease-in-out infinite;
}

.equalizer span:nth-child(2){
    animation-delay:.1s;
}

.equalizer span:nth-child(3){
    animation-delay:.2s;
}

.equalizer span:nth-child(4){
    animation-delay:.3s;
}

.equalizer span:nth-child(5){
    animation-delay:.4s;
}

.equalizer span:nth-child(6){
    animation-delay:.5s;
}

.equalizer span:nth-child(7){
    animation-delay:.6s;
}

@keyframes eq{
    0%{
        height:20px;
    }
    50%{
        height:65px;
    }
    100%{
        height:20px;
    }
}

/*==============================
        TEXTO
==============================*/

#loadingMessage{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:30px;
    text-shadow:0 0 15px #ff00cc;
}

/*==============================
        BARRA
==============================*/

.loading-bar{
    width:420px;
    height:12px;
    overflow:hidden;
    border-radius:30px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
}

#loadingProgress{
    width:0;
    height:100%;
    border-radius:30px;
    background:linear-gradient(
        90deg,
        #ffcc00,
        #ff00cc,
        #6d00ff,
        #00d4ff
    );
    background-size:300%;
    animation:barGradient 2s linear infinite;
}

@keyframes barGradient{
    from{
        background-position:0%;
    }
    to{
        background-position:300%;
    }
}

/*==============================
        PORCENTAJE
==============================*/

#loadingPercent{
    margin-top:20px;
    color:#fff;
    font-size:46px;
    font-weight:900;
    text-shadow:0 0 25px #ffcc00;
}

/*==============================
        PARTÍCULAS
==============================*/

.particles span{
    position:absolute;
    width:5px;
    height:5px;
    background:#fff;
    border-radius:50%;
    opacity:.35;
    animation:particle 12s linear infinite;
}

.particles span:nth-child(1){left:8%;animation-delay:0s;}
.particles span:nth-child(2){left:18%;animation-delay:2s;}
.particles span:nth-child(3){left:30%;animation-delay:4s;}
.particles span:nth-child(4){left:46%;animation-delay:1s;}
.particles span:nth-child(5){left:60%;animation-delay:3s;}
.particles span:nth-child(6){left:72%;animation-delay:5s;}
.particles span:nth-child(7){left:84%;animation-delay:6s;}
.particles span:nth-child(8){left:94%;animation-delay:7s;}

@keyframes particle{
    from{
        transform:translateY(100vh);
    }
    to{
        transform:translateY(-120vh);
    }
}

/*==============================
        SALIDA
==============================*/

#loadingScreen.hidden{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.8s;
}

/*==============================
        RESPONSIVE DE CARGA
==============================*/

@media(max-width:768px){
    .loading-logo{
        width:130px;
    }

    .loading-bar{
        width:85vw;
    }

    #loadingMessage{
        font-size:22px;
    }

    #loadingPercent{
        font-size:34px;
    }
}

/* ==================================================
    KEYFRAMES / ANIMACIONES GENERALES
================================================== */

@keyframes equalizer {
    from { transform: scaleY(0.35); }
    to { transform: scaleY(1); }
}

@keyframes loadingEqualizer {
    0%   { height: 12px; }
    50%  { height: 55px; }
    100% { height: 18px; }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 8px #ff0099); }
    to   { filter: drop-shadow(0 0 25px #f4ff00); }
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(.7); }
}

@keyframes whatsappPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); }
    70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes moveGlow1 {
    from { transform: translate(0, 0); }
    to   { transform: translate(100px, 80px); }
}

@keyframes moveGlow2 {
    from { transform: translate(0, 0); }
    to   { transform: translate(-120px, -80px); }
}

/* ==================================================
    MEDIA QUERIES (RESPONSIVE PRINCIPAL)
================================================== */

@media (max-width: 1000px) {
    .brand-slogan {
        display: none;
    }

    .radio-player {
        flex-wrap: wrap;
        justify-content: center;
        padding: 30px;
    }

    .player-info {
        flex: initial;
        min-width: 250px;
    }

    .volume-control {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }

    .nav-container {
        width: 92%;
    }

    .brand img {
        width: 130px;
    }

    .menu {
        gap: 18px;
    }

    .menu-item {
        height: 80px;
        padding: 0 5px;
    }

    .menu-item span {
        display: none;
    }

    .menu-item i {
        font-size: 22px;
    }

    .social {
        font-size: 20px;
    }

    .hero {
        min-height: auto;
        padding-top: 50px;
    }

    .main-logo {
        width: 90vw;
        margin-bottom: 40px;
    }

    .radio-player {
        width: 95vw;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .player-logo {
        width: 110px;
        height: 110px;
    }

    .player-info {
        text-align: center;
    }

    .live {
        justify-content: center;
    }

    .player-info h2 {
        font-size: 25px;
    }

    .play-button {
        width: 90px;
        height: 90px;
        font-size: 28px;
    }

    .volume-control {
        width: 90%;
    }

    .audio-background {
        width: 45%;
        height: 180px;
        bottom: 280px;
    }

    .audio-background span {
        width: 3px;
    }

    .ad-banner {
        width: 95%;
        padding: 8px 45px;
    }

    .banner-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
        font-size: 30px;
    }

    .loading-logo {
        width: 130px;
    }

    .loading-content h2 {
        font-size: 18px;
    }

    .loading-bar {
        width: 260px;
    }
}

/*==========================================
    OPTIMIZACIÓN
==========================================*/

img {
    user-select: none;
    -webkit-user-drag: none;
}

button {
    touch-action: manipulation;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/*==============================
    FOOTER
===============================*/

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 80px;
    color: #bdbdbd;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    font-size: 15px;
}

.footer-right img {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0.55;
    transition: 0.30s;
}

.footer-right img:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-right img {
        width: 130px;
        max-width: 70%;
        margin: 0 auto;
    }
}