/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* CUERPO */

body{
    background-image:url("../img/background.png");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    font-family:Arial, Helvetica, sans-serif;
    color:white;
}

/* CONTENEDOR PRINCIPAL */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    text-align:center;
    padding:40px;
    background:rgba(0,0,0,.65);
}

.logo{
    max-width:250px;
    margin-bottom:20px;
}

h1{
    color:#FFD700;
    font-size:40px;
    margin-bottom:15px;
}

h2{
    color:#FFD700;
    margin-bottom:20px;
}

h3{
    color:white;
    margin-top:15px;
    margin-bottom:10px;
}

p{
    line-height:1.8;
}

/* MENU */

nav{
    background:#102742;
    text-align:center;
    padding:20px;
    position:sticky;
    top:0;
    z-index:999;
}

nav a{
    color:white;
    text-decoration:none;
    padding:15px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#FFD700;
}

/* TARJETAS */

.card{
    background:rgba(10,20,40,.88);
    padding:30px;
    margin-top:30px;
    border-radius:20px;
    box-shadow:0 0 20px rgba(255,215,0,.25);
}

/* AUDIO */

audio{
    width:100%;
    margin-top:20px;
}

/* IFRAME TV */

iframe{
    border-radius:15px;
}

/* FOOTER */

footer{
    background:#050d17;
    text-align:center;
    padding:40px;
    margin-top:40px;
    color:white;
}

footer p{
    margin-top:10px;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:white;
    padding:15px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 0 15px rgba(0,0,0,.4);
}

.whatsapp:hover{
    background:#1ebc57;
}

/* IMAGENES */

img{
    max-width:100%;
}

/* RESPONSIVE */

@media(max-width:768px){

    h1{
        font-size:28px;
    }

    nav a{
        display:block;
        padding:10px;
    }

    .card{
        padding:20px;
    }

    .logo{
        max-width:180px;
    }

}