/*==================================================
  ADORA
  Ministerio de Alabanza
==================================================*/


/*==============================
    VARIABLES
==============================*/

:root{

    --color-principal:#ffffff;
    --color-secundario:#d8b46a;

    --color-fondo:#080808;
    --color-fondo2:#111111;
    --color-fondo3:#1b1b1b;

    --color-texto:#eeeeee;
    --color-gris:#9a9a9a;

    --sombra:0 15px 40px rgba(0,0,0,.30);

    --radio:18px;

    --transicion:.35s ease;

}


/*==============================
    RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--color-fondo);

    color:var(--color-texto);

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}


/*==============================
    CONTENEDOR
==============================*/

.contenedor{

    width:min(1200px,92%);

    margin:auto;

}


/*==================================================
                    HEADER
==================================================*/

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:24px 0;
    transition:all .35s ease;
}

#header .contenedor{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

#header.scrolled{
    padding:14px 0;
    background:rgba(8,8,8,.90);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.05);
    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

#header.scrolled::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:180px;
    height:2px;
    background:var(--color-secundario);
}


/*==================================================
                    LOGO
==================================================*/

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:68px;
    transition:all .35s ease;
}

#header.scrolled .logo img{
    height:56px;
}

.logo:hover img{
    transform:scale(1.05);
}


/*==================================================
                    MENU
==================================================*/

#menu ul{
    display:flex;
    align-items:center;
    gap:42px;
}

#menu a{
    position:relative;
    display:block;
    color:#fff;
    font-size:15px;
    font-weight:500;
    letter-spacing:.3px;
    transition:all .30s ease;
}

#menu a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    width:0;
    height:2px;
    background:var(--color-secundario);
    transform:translateX(-50%);
    transition:width .35s ease;
}

#menu a:hover,
#menu a.active{
    color:var(--color-secundario);
}

#menu a:hover::after,
#menu a.active::after{
    width:100%;
}


/*==================================================
                BOTÓN MENÚ
==================================================*/

#btnMenu{
    display:none;
    width:48px;
    height:48px;
    border:none;
    border-radius:14px;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    transition:.30s;
}

#btnMenu:hover{
    background:var(--color-secundario);
    color:#111;
}











/*==================================================
                    HERO
==================================================*/

#hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
}

#hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../img/hero.jpg") 72% center/cover no-repeat;
    transform:scale(1.02);
    z-index:0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to bottom,
            #000 0,
            #000 70px,
            rgba(0,0,0,.65) 120px,
            rgba(0,0,0,0) 220px
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.58) 30%,
            rgba(0,0,0,.25) 60%,
            rgba(0,0,0,.08) 100%
        );
    z-index:1;
}

.hero-grid{
    position:relative;
    z-index:5;
    display:flex;
    align-items:center;
    min-height:100vh;
    padding-top:150px;
}

.hero-info{
    width:520px;
    margin-left:25px;
}

.hero-subtitle{
    display:block;
    color:var(--color-secundario);
    text-transform:uppercase;
    letter-spacing:6px;
    font-size:13px;
    font-weight:500;
    margin-bottom:12px;
}

.hero-info h1{
    font-size:68px;
    line-height:.95;
    font-weight:700;
    color:#fff;
    margin-bottom:24px;
}

.hero-info p{
    max-width:470px;
    color:#e4e4e4;
    font-size:19px;
    line-height:1.8;
    margin-bottom:42px;
}

.hero-botones{
    display:flex;
    align-items:center;
    gap:18px;
}

/*==================================================
                    BOTÓN
==================================================*/

.btn-principal{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 42px;
    border-radius:60px;
    background:#d8b46a;
    color:#111;
    font-size:16px;
    font-weight:600;
    transition:all .35s ease;
    box-shadow:0 12px 35px rgba(216,180,106,.25);
}

.btn-principal:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(216,180,106,.45);
}





/*==================================================
                GALERÍAS
==================================================*/

.galerias{
    padding:130px 0;
    background:#070707;
}

.titulo-small{
    display:block;
    color:var(--color-secundario);
    letter-spacing:5px;
    font-size:13px;
    text-align:center;
    margin-bottom:15px;
}

.galerias h2{
    text-align:center;
    font-size:56px;
    margin-bottom:20px;
}

.titulo-descripcion{
    max-width:650px;
    margin:0 auto 70px;
    text-align:center;
    color:#bdbdbd;
    line-height:1.8;
}

.galeria-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.galeria-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    cursor:pointer;
}

.galeria-card img{
    width:100%;
    height:560px;
    object-fit:cover;
    transition:.6s;
}

.galeria-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:45px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.92)
    );
}

.galeria-overlay span{
    color:var(--color-secundario);
    margin-bottom:12px;
}

.galeria-overlay h3{
    font-size:38px;
    margin-bottom:15px;
}

.galeria-overlay p{
    margin-bottom:25px;
    color:#d5d5d5;
}

.galeria-overlay a{
    color:#fff;
    font-weight:600;
}

.galeria-card:hover img{
    transform:scale(1.08);
}





/*==================================================
                    NOSOTROS
==================================================*/

.nosotros{
    padding:140px 0;
    background:#0b0b0b;
    overflow:hidden;
}

.nosotros-grid{
    display:grid;
    grid-template-columns:560px 1fr;
    gap:90px;
    align-items:center;
}

.nosotros-info{
    position:relative;
    z-index:2;
}

.nosotros h2{
    font-size:58px;
    line-height:1.1;
    margin:18px 0 30px;
}

.nosotros p{
    color:#cfcfcf;
    font-size:18px;
    line-height:2;
    margin-bottom:22px;
}

.nosotros-datos{
    display:flex;
    gap:18px;
    margin-top:45px;
    flex-wrap:wrap;
}

.dato{
    min-width:150px;
    padding:22px;
    background:#141414;
    border:1px solid rgba(255,255,255,.05);
    border-radius:18px;
    transition:.35s;
}

.dato:hover{
    transform:translateY(-6px);
    border-color:rgba(216,180,106,.35);
}

.dato strong{
    display:block;
    color:var(--color-secundario);
    font-size:30px;
    margin-bottom:8px;
}

.dato span{
    color:#d3d3d3;
    font-size:14px;
    line-height:1.6;
}



.nosotros-galeria{
    position:relative;
    width:100%;
    height:820px;
}

.foto{
    position:absolute;
    overflow:hidden;
    border-radius:22px;
    border:4px solid rgba(255,255,255,.05);
    box-shadow:0 18px 60px rgba(0,0,0,.45);
    transition:.45s;
    cursor:pointer;
}

.foto img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s;
}

.foto:hover{
    transform:scale(1.08) rotate(0deg)!important;
    z-index:100;
    box-shadow:0 30px 80px rgba(0,0,0,.65);
}

.foto:hover img{
    transform:scale(1.08);
}

/*=========================
        FILA SUPERIOR
=========================*/

.foto1{
    width:250px;
    height:170px;
    top:20px;
    left:50px;
    transform:rotate(-5deg);
}

.foto2{
    width:220px;
    height:170px;
    top:10px;
    left:315px;
    transform:rotate(5deg);
}

.foto8{
    width:170px;
    height:170px;
    top:150px;
    right:0;
    transform:rotate(-4deg);
}

/*=========================
        CENTRO
=========================*/

.foto3{
    width:330px;
    height:220px;
    top:220px;
    left:10px;
    transform:rotate(-3deg);
}

.foto4{
    width:300px;
    height:220px;
    top:430px;
    left:95px;
    transform:rotate(4deg);
}

.foto9{
    width:170px;
    height:170px;
    top:310px;
    right:15px;
    transform:rotate(4deg);
}

/*=========================
        PARTE INFERIOR
=========================*/

.foto5{
    width:170px;
    height:170px;
    bottom:40px;
    left:70px;
    transform:rotate(-5deg);
}

.foto6{
    width:170px;
    height:170px;
    bottom:5px;
    left:255px;
    transform:rotate(5deg);
}

.foto7{
    width:240px;
    height:160px;
    bottom:5px;
    left:450px;
    transform:rotate(-4deg);
}

.foto10{
    width:150px;
    height:150px;
    bottom:165px;
    right:0;
    transform:rotate(6deg);
}

.foto:hover{
    transform:scale(1.05) rotate(0deg);
}














/*==================================================
                    VERSICULO
==================================================*/

.versiculo{
    padding:130px 0;
    background:linear-gradient(to bottom,#111,#0a0a0a);
    overflow:hidden;
}

.versiculo-box{
    max-width:950px;
    margin:auto;
    text-align:center;
    position:relative;
}

.versiculo-box::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:420px;
    height:420px;
    transform:translate(-50%,-50%);
    background:radial-gradient(rgba(214,178,98,.10),transparent 70%);
    pointer-events:none;
    animation:halo 8s ease-in-out infinite;
}

.versiculo-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:70px;
    height:70px;
    margin-bottom:35px;
    border-radius:50%;
    border:1px solid rgba(214,178,98,.25);
    background:rgba(214,178,98,.06);
    color:var(--color-secundario);
    font-size:28px;
    animation:flotar 4s ease-in-out infinite;
}

.versiculo blockquote{
    margin:0;
    font-size:58px;
    font-weight:700;
    line-height:1.25;
    color:#fff;
    letter-spacing:-1px;
}

.versiculo blockquote span{
    display:block;
    color:var(--color-secundario);
}

.versiculo-linea{
    width:90px;
    height:2px;
    background:var(--color-secundario);
    margin:45px auto 25px;
    opacity:.85;
}

.versiculo p{
    margin:0;
    color:#c7a861;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:15px;
    font-weight:600;
}

@keyframes flotar{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

@keyframes halo{
    0%,100%{
        transform:translate(-50%,-50%) scale(1);
        opacity:.45;
    }
    50%{
        transform:translate(-50%,-50%) scale(1.18);
        opacity:.8;
    }
}


.versiculo-box{
    animation:versiculoFade 1.2s ease;
}

@keyframes versiculoFade{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.versiculo blockquote{
    font-family:"Cormorant Garamond",serif;
    font-size:72px;
    font-weight:600;
    font-style:italic;
}










/*==================================================
                    FOOTER
==================================================*/

.footer{
    position:relative;
    padding:120px 0 35px;
    overflow:hidden;
    background:
    radial-gradient(circle at right bottom,rgba(214,178,98,.08),transparent 45%),
    linear-gradient(to bottom,#090909,#050505);
}

.footer::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:220px;
    height:2px;
    background:var(--color-secundario);
}

.footer-logo-bg{
    position:absolute;
    right:-120px;
    bottom:-180px;
    width:720px;
    opacity:.02;
    pointer-events:none;
    user-select:none;
    filter:grayscale(100%);
}

.footer-top{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.3fr .7fr 1fr;
    gap:100px;
    align-items:flex-start;
}

.footer-brand img{
    width:95px;
    margin-bottom:30px;
}

.footer-brand h3{
    font-size:38px;
    margin-bottom:22px;
}

.footer-brand p{
    max-width:430px;
    color:#bebebe;
    font-size:17px;
    line-height:2;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links h4,
.footer-small{
    color:var(--color-secundario);
    text-transform:uppercase;
    letter-spacing:5px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.footer-links a{
    color:#ddd;
    margin:12px 0;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--color-secundario);
    transform:translateX(8px);
}

.footer-verse blockquote{
    margin:25px 0;
    font-family:"Cormorant Garamond",serif;
    font-size:48px;
    line-height:1.25;
    color:#fff;
}

.footer-verse p{
    color:var(--color-secundario);
    letter-spacing:5px;
    font-size:13px;
    text-transform:uppercase;
}

.footer-social{
    display:flex;
    gap:18px;
    margin-top:40px;
}

.footer-social a{
    width:56px;
    height:56px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:18px;
    background:#141414;
    color:#fff;
    font-size:18px;
    transition:.35s;
}

.footer-social a:hover{
    background:var(--color-secundario);
    color:#111;
    transform:translateY(-8px) rotate(-8deg);
    box-shadow:0 18px 40px rgba(214,178,98,.35);
}

.footer-bottom{
    position:relative;
    z-index:2;
    margin-top:90px;
    padding-top:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.07);
    color:#8d8d8d;
    font-size:15px;
}

.footer-bottom span:last-child{
    color:#b8b8b8;
}

.footer-logo-bg{
    animation:footerFloat 18s ease-in-out infinite;
}

@keyframes footerFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
}












/*==================================================
                    MUSICA
==================================================*/

.musica{
    position:relative;
    padding:160px 0;
    background:#090909;
    overflow:hidden;
}

.musica::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:650px;
    height:650px;
    background:radial-gradient(rgba(214,178,98,.08),transparent 70%);
    pointer-events:none;
}

.musica-titulo{
    max-width:760px;
    margin:0 auto 90px;
    text-align:center;
}

.musica-titulo h2{
    margin:18px 0 28px;
    font-size:60px;
    line-height:1.15;
}

.musica-titulo p{
    color:#cfcfcf;
    font-size:19px;
    line-height:2;
}

.musica-grid{
    display:grid;
    grid-template-columns:430px 1fr;
    gap:90px;
    align-items:center;
}

.album{
    position:relative;
    display:flex;
    justify-content:center;
}

.album-glow{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(rgba(214,178,98,.35),transparent 70%);
    filter:blur(40px);
}

.album img{
    position:relative;
    width:380px;
    border-radius:28px;
    box-shadow:0 40px 70px rgba(0,0,0,.60);
    transform:rotate(-5deg);
    transition:.45s;
}

.album:hover img{
    transform:rotate(-2deg) scale(1.03);
}

.album-info{
    max-width:650px;
}

.album-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(214,178,98,.15);
    color:var(--color-secundario);
    font-size:13px;
    letter-spacing:3px;
}

.album-info h3{
    margin:25px 0 18px;
    font-size:70px;
    line-height:1;
}

.album-info p{
    color:#cfcfcf;
    font-size:18px;
    line-height:2;
}

.album-botones{
    margin:40px 0;
}

.album-botones a i{
    margin-right:10px;
}

.plataformas{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:45px;
}

.plataformas a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:40px;
    color:#bdbdbd;
    transition:.35s;
}

.plataformas a i{
    font-size:20px;
}

.plataformas a:hover{
    color:#fff;
    border-color:var(--color-secundario);
    background:rgba(214,178,98,.08);
    transform:translateY(-4px);
}

.tracklist{
    margin-top:15px;
}

.track{
    display:grid;
    grid-template-columns:55px 1fr 70px;
    align-items:center;
    padding:18px 24px;
    margin-bottom:14px;
    background:#111;
    border-radius:18px;
    transition:.35s;
}

.track span{
    color:var(--color-secundario);
    font-weight:700;
    font-size:18px;
}

.track strong{
    font-size:18px;
}

.track small{
    text-align:right;
    color:#8f8f8f;
}

.track:hover{
    transform:translateX(10px);
    background:#181818;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

















.player-card{
    width:100%;
    margin:45px 0;
    padding:24px 28px;
    background:#111;
    border:1px solid rgba(255,255,255,.06);
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.player-top{
    display:flex;
    align-items:center;
    gap:20px;
}

.player-play{
    width:64px;
    height:64px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#d7b56b,#c89d42);
    color:#111;
    font-size:22px;
    cursor:pointer;
    transition:.35s;
}

.player-play:hover{
    transform:scale(1.08);
    box-shadow:0 0 30px rgba(214,178,98,.45);
}

.player-info{
    flex:1;
}

.player-info strong{
    display:block;
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.player-info span{
    color:#9e9e9e;
    font-size:15px;
}

.player-time{
    color:#b8b8b8;
    font-size:14px;
}

#barra{
    width:100%;
    margin-top:22px;
    accent-color:#d7b56b;
    cursor:pointer;
}






.player-info{

    display:flex;
    flex-direction:column;
    gap:4px;

}

.equalizer{

    display:flex;

    align-items:flex-end;

    gap:5px;

    height:38px;

    margin-top:10px;

    opacity:0;

    transition:.35s;

}

.equalizer span{

    width:5px;

    border-radius:8px;

    background:linear-gradient(

        to top,

        #d6b262,

        #f6d98d

    );

}

.equalizer.playing{

    opacity:1;

}

.equalizer.playing span{

    animation:eq .45s infinite ease-in-out;

}

.equalizer span:nth-child(1){

    height:10px;

}

.equalizer span:nth-child(2){

    height:18px;

    animation-delay:.1s;

}

.equalizer span:nth-child(3){

    height:28px;

    animation-delay:.2s;

}

.equalizer span:nth-child(4){

    height:14px;

    animation-delay:.3s;

}

@keyframes eq{

    0%{

        transform:scaleY(.3);

    }

    25%{

        transform:scaleY(1);

    }

    50%{

        transform:scaleY(.5);

    }

    75%{

        transform:scaleY(.9);

    }

    100%{

        transform:scaleY(.35);

    }

}









.album{

    position:relative;
    transition:.5s;

}


@keyframes pulseGlow{

    0%,100%{

        transform:scale(1);
        opacity:.45;

    }

    50%{

        transform:scale(1.08);
        opacity:.8;

    }

}


#barra{

    width:100%;
    appearance:none;
    height:6px;
    border-radius:20px;
    cursor:pointer;
    background:#444;
    overflow:hidden;

}

#barra::-webkit-slider-thumb{

    appearance:none;
    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--color-secundario);
    border:3px solid #fff;
    box-shadow:-500px 0 0 500px var(--color-secundario);

}

#barra::-moz-range-thumb{

    width:16px;
    height:16px;
    border:none;
    border-radius:50%;
    background:var(--color-secundario);

}

#barra:hover{

    height:8px;

}

.album{

    position:relative;
    width:460px;
    height:460px;
    display:flex;
    justify-content:center;
    align-items:center;

}

.album-cover{

    position:relative;
    z-index:2;

}

.album-cover img{

    width:100%;
    border-radius:12px;
    display:block;

    box-shadow:
        0 30px 70px rgba(0,0,0,.55),
        0 0 40px rgba(214,178,98,.12);

}

.album-disc{

    position:absolute;

    right:-95px;

    width:320px;
    height:320px;

    border-radius:50%;

    z-index:1;

    background:
    radial-gradient(circle at center,
        #000 0,
        #111 18%,
        #2a2a2a 19%,
        #050505 21%,
        #181818 27%,
        #0b0b0b 35%,
        #191919 43%,
        #050505 52%,
        #1b1b1b 60%,
        #060606 100%);

    box-shadow:

        0 20px 60px rgba(0,0,0,.65);

}

.album-disc::before{

    content:"";

    position:absolute;

    inset:18px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

}

.album-disc::after{

    content:"";

    position:absolute;

    width:20px;
    height:20px;

    border-radius:50%;

    background:#d6b262;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

}

.album-disc.playing{

    animation:vinilo 8s linear infinite;

}

@keyframes vinilo{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


































/*====================================
        RESPONSIVE HEADER
====================================*/

@media(max-width:768px){

    #btnMenu{

        display:flex;
        align-items:center;
        justify-content:center;

        width:52px;
        height:52px;

        border:none;
        border-radius:16px;

        background:var(--color-secundario);

        color:#111;

        font-size:24px;

        cursor:pointer;

        z-index:3000;

    }

    #menu{

        position:fixed;

        top:84px;
        left:0;

        width:100%;
        height:calc(100vh - 84px);

        background:#090909;

        display:flex;

        justify-content:center;
        align-items:center;

        transform:translateX(100%);

        transition:.45s;

        z-index:2500;

    }

    #menu.activo{

        transform:translateX(0);

    }

    #menu ul{

        display:flex;
        flex-direction:column;

        gap:34px;

        text-align:center;

    }

    #menu a{

        font-size:28px;
        font-weight:700;

    }

}




/*==================================================
                RESPONSIVE HERO
==================================================*/

@media (max-width:768px){

    #hero{

        min-height:100vh;
        display:flex;
        align-items:center;
        justify-content:center;

    }

    #hero::before{

        background-position:center center;
        transform:scale(1);

    }

    .hero-overlay{

        background:
            linear-gradient(
                rgba(0,0,0,.45),
                rgba(0,0,0,.68),
                rgba(0,0,0,.92)
            );

    }

    .hero-grid{

        width:100%;
        min-height:100vh;

        display:flex;
        align-items:center;
        justify-content:center;

        padding:120px 0 60px;

    }

    .hero-info{

        width:100%;
        max-width:380px;

        margin:0 auto;

        display:flex;
        flex-direction:column;
        align-items:center;

        text-align:center;

    }

    .hero-subtitle{

        font-size:12px;
        letter-spacing:5px;
        margin-bottom:18px;

    }

    .hero-info h1{

        font-size:60px;
        line-height:1;
        margin-bottom:22px;

    }

    .hero-info p{

        max-width:100%;

        margin:0;

        font-size:18px;
        line-height:1.75;

    }

    .hero-botones{

        width:100%;

        margin-top:42px;

        display:flex;
        justify-content:center;

    }

    .btn-principal{

        width:240px;

        padding:18px 20px;

    }

}






/*==================================================
            RESPONSIVE GALERÍAS
==================================================*/

@media (max-width:768px){

    .galerias{

        padding:90px 0;

    }

    .titulo-small{

        font-size:12px;
        letter-spacing:4px;
        margin-bottom:14px;

    }

    .galerias h2{

        font-size:38px;
        line-height:1.15;
        margin-bottom:18px;

    }

    .titulo-descripcion{

        max-width:100%;
        padding:0 15px;

        font-size:16px;
        line-height:1.8;

        margin-bottom:45px;

    }

    .galeria-grid{

        grid-template-columns:1fr;
        gap:28px;

    }

    .galeria-card{

        border-radius:18px;

    }

    .galeria-card img{

        height:360px;

    }

    .galeria-overlay{

        padding:28px;

    }

    .galeria-overlay span{

        font-size:13px;

    }

    .galeria-overlay h3{

        font-size:28px;
        line-height:1.25;
        margin-bottom:12px;

    }

    .galeria-overlay p{

        font-size:15px;
        margin-bottom:18px;

    }

    .galeria-overlay a{

        font-size:15px;

    }

}






/*==================================================
            RESPONSIVE NOSOTROS
==================================================*/

@media (max-width:768px){

    .nosotros{

        padding:90px 0;

    }

    .nosotros-grid{

        grid-template-columns:1fr;
        gap:60px;

    }

    .nosotros-info{

        text-align:center;

    }

    .nosotros h2{

        font-size:40px;
        margin:18px 0 24px;

    }

    .nosotros p{

        font-size:16px;
        line-height:1.9;

    }

    /*=========================
            DATOS
    =========================*/

    .nosotros-datos{

        justify-content:center;
        gap:15px;
        margin-top:40px;

    }

    .dato{

        flex:1 1 calc(50% - 15px);
        min-width:140px;
        padding:20px;

    }

    .dato strong{

        font-size:28px;

    }

    /*=========================
            GALERÍA
    =========================*/

    .nosotros-galeria{

        position:static;

        height:auto;

        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:14px;

    }

    .foto{

        position:relative !important;

        width:100% !important;
        height:180px !important;

        top:auto !important;
        left:auto !important;
        right:auto !important;
        bottom:auto !important;

        transform:none !important;

        border-radius:18px;

    }

    .foto:nth-child(odd){

        transform:rotate(-2deg) !important;

    }

    .foto:nth-child(even){

        transform:rotate(2deg) !important;

    }

    .foto:hover{

        transform:scale(1.04) rotate(0deg) !important;

    }

    .foto img{

        width:100%;
        height:100%;
        object-fit:cover;

    }

}


/*==================================================
            RESPONSIVE MÚSICA
==================================================*/

@media (max-width:768px){

    .musica{

        padding:90px 0;

    }

    .musica-titulo{

        margin:0 auto 55px;

    }

    .musica-titulo h2{

        font-size:38px;
        line-height:1.2;
        margin:18px 0 20px;

    }

    .musica-titulo p{

        font-size:16px;
        line-height:1.9;

    }

    /*=========================
            GRID
    =========================*/

    .musica-grid{

        grid-template-columns:1fr;
        gap:55px;

    }

    /*=========================
            ÁLBUM
    =========================*/

    .album{

        width:100%;
        height:auto;
        justify-content:center;

    }

    .album-disc{

        display:none;

    }

    .album-cover{

        width:85%;
        max-width:320px;

    }

    .album-cover img{

        width:100%;
        border-radius:20px;

    }

    /*=========================
            INFORMACIÓN
    =========================*/

    .album-info{

        max-width:100%;
        text-align:center;

    }

    .album-info h3{

        font-size:52px;
        margin:20px 0 18px;

    }

    .album-info p{

        font-size:16px;
        line-height:1.9;

    }

    .album-tag{

        font-size:12px;
        letter-spacing:3px;

    }

    /*=========================
            PLAYER
    =========================*/

    .player-card{

        padding:22px;
        margin:35px 0;

    }

    .player-top{

        gap:14px;
        align-items:center;

    }

    .player-play{

        width:56px;
        height:56px;
        font-size:18px;

    }

    .player-info strong{

        font-size:20px;

    }

    .player-info small{

        font-size:14px;

    }

    .player-time{

        font-size:13px;

    }

    /*=========================
            PLATAFORMAS
    =========================*/

    .plataformas{

        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:14px;

    }

    .plataformas a{

        justify-content:center;
        padding:14px 10px;
        font-size:15px;

    }

    /*=========================
            TRACKLIST
    =========================*/

    .track{

        grid-template-columns:45px 1fr 55px;
        padding:16px 18px;

    }

    .track span{

        font-size:18px;

    }

    .track strong{

        font-size:17px;

    }

    .track small{

        font-size:13px;

    }

}


/*==================================================
            RESPONSIVE FOOTER
==================================================*/

@media (max-width:768px){

    .footer{

        padding:80px 0 30px;

    }

    .footer::before{

        width:140px;

    }

    .footer-logo-bg{

        width:320px;
        right:-120px;
        bottom:-80px;
        opacity:.03;

    }

    /*=========================
            GRID
    =========================*/

    .footer-top{

        grid-template-columns:1fr;
        gap:55px;

        text-align:center;

    }

    /*=========================
            BRAND
    =========================*/

    .footer-brand{

        display:flex;
        flex-direction:column;
        align-items:center;

    }

    .footer-brand img{

        width:82px;
        margin-bottom:20px;

    }

    .footer-brand h3{

        font-size:30px;
        margin-bottom:18px;

    }

    .footer-brand p{

        max-width:100%;
        font-size:16px;
        line-height:1.9;

    }

    /*=========================
            REDES
    =========================*/

    .footer-social{

        justify-content:center;
        flex-wrap:wrap;
        gap:14px;
        margin-top:28px;

    }

    .footer-social a{

        width:50px;
        height:50px;
        border-radius:14px;

    }

    /*=========================
            LINKS
    =========================*/

    .footer-links{

        align-items:center;

    }

    .footer-links h4{

        margin-bottom:15px;

    }

    .footer-links a{

        margin:10px 0;

    }

    .footer-links a:hover{

        transform:none;

    }

    /*=========================
            VERSÍCULO
    =========================*/

    .footer-verse{

        text-align:center;

    }

    .footer-verse blockquote{

        font-size:34px;
        line-height:1.3;

    }

    .footer-verse p{

        letter-spacing:3px;

    }

    /*=========================
            COPYRIGHT
    =========================*/

    .footer-bottom{

        margin-top:55px;
        padding-top:25px;

        flex-direction:column;
        gap:12px;

        text-align:center;

        font-size:14px;
        line-height:1.8;

    }

}