
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#eef3f8;
    color:#333;
}

/* ===========================
HEADER
=========================== */

header{

    background:linear-gradient(135deg,#005bea,#00c6fb);

    color:#fff;

    padding:45px 20px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

header h1{

    font-size:38px;

    margin-bottom:10px;

}

header p{

    opacity:.9;

    font-size:17px;

}

/* ===========================
CONTAINER
=========================== */

.container{

    width:95%;

    max-width:1500px;

    margin:auto;

    padding:30px 0;

}

/* ===========================
FILTROS
=========================== */

.filtros{

    background:white;

    padding:20px;

    border-radius:18px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:15px;

    margin-bottom:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.filtros input,

.filtros select{

    padding:12px;

    border-radius:10px;

    border:1px solid #ddd;

    font-size:15px;

    outline:none;

}

.filtros input:focus,

.filtros select:focus{

    border-color:#0d6efd;

}

.filtros button{

    border:none;

    background:#005bea;

    color:white;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

    font-size:16px;

}

.filtros button:hover{

    background:#0044cc;

    transform:translateY(-2px);

}

/* ===========================
RESULTADOS
=========================== */

.resultado{

    margin-bottom:25px;

    font-weight:600;

    color:#666;

}

/* ===========================
GALERIA
=========================== */

.galeria{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

    gap:25px;

}

/* ===========================
CARD
=========================== */

.card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(0,0,0,.18);

}

/* ===========================
IMAGEM
=========================== */

.imagem{

    width:100%;

    height:280px;

    object-fit:cover;

    cursor:pointer;

    transition:.4s;

}

.card:hover .imagem{

    transform:scale(1.05);

}

/* ===========================
VIDEO
=========================== */

.video-box{

    width:100%;

    background:#000;

}

.video-box video{

    width:100%;

    height:280px;

    object-fit:cover;

}

/* ===========================
INFO
=========================== */

.info{

    padding:18px;

}

.info h3{

    margin-bottom:10px;

    font-size:21px;

    color:#222;

}

.info p{

    color:#666;

    margin-bottom:15px;

    line-height:1.5;

}

/* ===========================
TAGS
=========================== */

.tags{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-bottom:18px;

}

.tags span{

    background:#edf5ff;

    color:#005bea;

    padding:7px 12px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

}

/* ===========================
RODAPÉ CARD
=========================== */

.rodape-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid #eee;

    padding-top:12px;

    color:#777;

    font-size:14px;

}

/* ===========================
SEM RESULTADOS
=========================== */

.sem-resultados{

    background:white;

    padding:60px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.sem-resultados .emoji{

    font-size:80px;

    margin-bottom:20px;

}

.sem-resultados h2{

    margin-bottom:10px;

}

/* ===========================
LIGHTBOX
=========================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

    animation:fade .25s;

}

.lightbox img{

    max-width:92%;

    max-height:90%;

    border-radius:12px;

    box-shadow:0 0 30px rgba(255,255,255,.25);

}

#fechar{

    position:absolute;

    top:20px;

    right:35px;

    color:white;

    font-size:35px;

    cursor:pointer;

}

/* ===========================
ANIMAÇÃO
=========================== */

@keyframes fade{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

/* ===========================
RESPONSIVO
=========================== */

@media(max-width:900px){

.galeria{

grid-template-columns:repeat(auto-fill,minmax(280px,1fr));

}

}

@media(max-width:700px){

header h1{

font-size:30px;

}

.filtros{

grid-template-columns:1fr;

}

.galeria{

grid-template-columns:1fr;

}

.imagem{

height:240px;

}

.video-box video{

height:240px;

}

}

@media(max-width:480px){

header{

padding:35px 15px;

}

header h1{

font-size:25px;

}

.info h3{

font-size:18px;

}

.info{

padding:15px;

}

}

