/* ==========================
   RESET
========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f4f4;
    color:#333;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

/* ==========================
   CONTAINER
========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

header{
    background:#111;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 10px rgba(0,0,0,.25);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    width:180px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:#fff;
    font-weight:bold;
}

nav a:hover{
    color:#ff9800;
}

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

.hero{
    background:linear-gradient(135deg,#0d47a1,#1976d2);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}

/* ==========================
   PLAYER
========================== */

.player{
    max-width:600px;
    margin:auto;
}

.player audio{
    width:100%;
}

/* ==========================
   ADSENSE
========================== */

.ads{
    margin:40px auto;
    max-width:1200px;
    text-align:center;
}

/* ==========================
   SECTIONS
========================== */

section{
    padding:50px 0;
}

section h2{
    text-align:center;
    margin-bottom:35px;
    color:#0d47a1;
    font-size:2rem;
}

/* ==========================
   CARDS
========================== */

.cards{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.cards article{

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.12);

    transition:.3s;

}

.cards article:hover{

    transform:translateY(-8px);

}

.cards img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.cards h3{

    padding:20px 20px 10px;

    color:#222;

}

.cards p{

    padding:0 20px 20px;

}

.cards a{

    display:inline-block;

    margin:0 20px 20px;

    background:#0d47a1;

    color:#fff;

    padding:10px 18px;

    border-radius:6px;

}

.cards a:hover{

    background:#ff9800;

}

/* ==========================
   TABELA
========================== */

table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    box-shadow:0 4px 10px rgba(0,0,0,.10);

}

table th{

    background:#0d47a1;

    color:#fff;

    padding:15px;

}

table td{

    padding:15px;

    border-bottom:1px solid #ddd;

}

table tr:hover{

    background:#f7f7f7;

}

/* ==========================
   REDES SOCIAIS
========================== */

.social{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

}

.social a{

    background:#1976d2;

    color:#fff;

    padding:12px 25px;

    border-radius:30px;

    font-weight:bold;

}

.social a:hover{

    background:#ff9800;

}

/* ==========================
   BOTÕES
========================== */

.btn{

    display:inline-block;

    background:#1976d2;

    color:#fff;

    padding:14px 28px;

    border-radius:8px;

    font-weight:bold;

}

.btn:hover{

    background:#ff9800;

}

/* ==========================
   FORMULÁRIO
========================== */

form{

    max-width:700px;

    margin:auto;

    background:#fff;

    padding:30px;

    border-radius:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.10);

}

form input,

form textarea{

    width:100%;

    padding:15px;

    margin-bottom:20px;

    border:1px solid #ccc;

    border-radius:5px;

    font-size:16px;

}

form textarea{

    resize:vertical;

    min-height:180px;

}

form button{

    border:none;

    cursor:pointer;

    background:#1976d2;

    color:#fff;

    padding:15px 35px;

    border-radius:6px;

    font-size:17px;

}

form button:hover{

    background:#ff9800;

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#111;

    color:#fff;

    text-align:center;

    padding:35px 20px;

    margin-top:50px;

}

footer p{

    margin:8px 0;

}

/* ==========================
   RESPONSIVO
========================== */

@media(max-width:900px){

header .container{

    flex-direction:column;

}

nav ul{

    flex-direction:column;

    text-align:center;

    margin-top:20px;

    gap:15px;

}

.hero h1{

    font-size:2.2rem;

}

.hero{

    padding:60px 20px;

}

.cards{

    grid-template-columns:1fr;

}

}

@media(max-width:600px){