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

body{
font-family:'Poppins', sans-serif;
background:#ffffff;
}

/* ===================== */
/* MENÚ */
/* ===================== */

.navbar{

position:absolute;

top:0;

left:0;

width:100%;

padding:20px 60px;

display:flex;

justify-content:space-between;

align-items:center;

z-index:1000;

}

.logo{

font-family:'Playfair Display', serif;

color:white;

font-size:16px;

text-align:center;

font-weight:bold;

}

nav ul{

display:flex;

gap:30px;

list-style:none;

}

nav a{

color:white;

text-decoration:none;

font-size:14px;

}

.nav-buttons{

display:flex;

gap:15px;

}

.btn-app{

background:#d4a64f;

color:black;

padding:12px 22px;

border-radius:8px;

text-decoration:none;

font-weight:bold;

}

.btn-icon{

font-size:40px;

display:flex;

align-items:center;

justify-content:center;

line-height:1;

}

.btn-login{

border:1px solid white;

color:white;

padding:12px 22px;

border-radius:8px;

text-decoration:none;

}

/* ===================== */
/* HERO */
/* ===================== */

.hero{

height:100vh;

background-image:

linear-gradient(
rgba(0,0,0,0.30),
rgba(0,0,0,0.30)
),

url("../assets/imagenes/fondos/hero_microfono_v03.webp");

background-size:100%;

background-repeat:no-repeat;

background-position:center 60%;

display:flex;

align-items:center;

}

.hero-content{

max-width:700px;

margin-left:90px;

color:white;

}

.hero-content h1{

font-family:'Playfair Display', serif;

font-weight:700;

font-size:72px;

margin-bottom:10px;

}

.hero-content p{

font-size:20px;

line-height:1.4;

max-width:600px;

text-align:center;

color:#d4a64f;

margin-bottom:40px;

}

.hero-buttons{

justify-content:center;

display:flex;

gap:20px;

flex-direction:column;

align-items:center;

}

.btn-primary{

background:#d4a64f;

color:black;

padding:28px 60px;

border-radius:34px;

justify-content:center;

display:flex;

align-items:center;

gap:15px;

text-decoration:none;

font-weight:bold;

transition:all 0.3s ease;

cursor:pointer;

transition:all 0.35s ease;

cursor:pointer;

position:relative;

overflow:hidden;

}

.btn-primary:hover{

background:#e8c06a;

transform:translateY(-3px);

box-shadow:0 8px 25px rgba(212,168,79,0.45);

transition:all 0.3s ease;

transform:translateY(-4px);

box-shadow:0 10px 30px rgba(212,168,79,0.50);

}

.btn-primary::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:80px;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.35),
transparent
);

transform:skewX(-20deg);

transition:0.8s;

}

.btn-primary:hover::before{

left:120%;

}

.btn-secondary{

border:2px solid white;

color:white;

padding:18px 30px;

border-radius:10px;

text-decoration:none;

font-weight:bold;

}

.hero-divider{

display:flex;

align-items:center;

gap:12px;

margin:10px 0 25px 0;

max-width:700px;

}

.hero-divider span{

flex:1;

height:2px;

background:#d4a64f;

}

.hero-divider{

color:#d4a64f;

font-size:18px;

}

.beta-text{

margin-top:15px;

text-align:center;

font-size:15px;

letter-spacing:2px;

color:rgba(255,255,255,0.65);

font-style:italic;

}

/* ========================= */
/* MODAL BETA */
/* ========================= */

.modal{

display:none;

position:fixed;

z-index:9999;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.85);

backdrop-filter:blur(5px);

}

.modal-content{

background:#111;

max-width:600px;

margin:6% auto;

padding:40px;

border:1px solid #d4a84f;

border-radius:20px;

text-align:center;

color:white;

box-shadow:0 0 40px rgba(212,168,79,.25);

}

.modal-content h2{

color:#d4a84f;

margin-bottom:20px;

}

.modal-content p{

margin-bottom:15px;

line-height:1.7;

}

.modal-highlight{

color:#d4a84f;

font-weight:bold;

font-size:1.1rem;

}

.close-modal{

float:right;

font-size:30px;

cursor:pointer;

}

/* ========================= */
/* MODAL BIENVENIDA */
/* ========================= */

#welcomeModal .modal-content{

max-width:700px;

text-align:center;

}

#welcomeModal audio{

width:100%;

margin-top:20px;

margin-bottom:20px;

}

#welcomeModal label{

display:block;

margin-top:10px;

color:#d4a64f;

}

#continueBtn{

margin-top:20px;

border:none;

}

.btn-intro{

margin-top:20px;

background:transparent;

border:none;

color:#d4a64f;

font-size:18px;

font-weight:600;

letter-spacing:1px;

cursor:pointer;

transition:all .3s ease;

}

.btn-intro:hover{

transform:scale(1.05);

color:#f0c56a;

text-shadow:0 0 12px rgba(212,166,79,.5);

}

/* ========================= */
/* RESPONSIVE MOVIL */
/* ========================= */

@media (max-width: 768px){

nav{
display:none;
}

.navbar{

flex-direction:column;
padding:15px 20px;
gap:15px;

}

.logo{

font-size:12px;
text-align:center;

}

nav ul{

display:none;

}

.nav-buttons{

display:none;

}

.hero{

min-height:100vh;

padding-top:70px;

background-size:cover;

background-position:center center;

justify-content:center;

text-align:center;

}

.hero-content{

margin-left:0;
padding:0 20px;
max-width:100%;

}

.hero-content h1{
font-size:18px;
line-height:1.15;
margin-bottom:15px;
text-align:center;

}

.hero-divider{

max-width:100%;

}

.hero-content p{

font-size:18px;

max-width:100%;

margin-bottom:60px;

line-height:1.5;

}

.btn-primary{

margin-top:20px;
width:100%;
max-width:320px;

padding:16px 18px;

font-size:18px;

}

.beta-text{

margin-top:5px;

font-size:13px;

}

.btn-intro{

margin-top:35px;

font-size:16px;

}

}