/* =====================================================
   MAIS LOTERIAS ONLINE
   style.css
   ===================================================== */

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* GERAL */

body{
    background:#F0F4FF;
    color:#222;
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.5;
}

/* HEADER */

header{
    background:#0A4ED4;
    color:#fff;
    text-align:center;
    padding:32px 16px;
}

header h1{
    font-size:28px;
    font-weight:800;
    margin-bottom:10px;
}

header p{
    font-size:15px;
}

/* CONTAINER */

.container{
    max-width:1200px;
    margin:40px auto;
    padding:0 16px;
}

/* GRID */

.grid{
    display:grid;
    gap:28px;
    grid-template-columns:1fr;
}

@media (min-width:640px){

.grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (min-width:980px){

.grid{
grid-template-columns:repeat(3,1fr);
}

}

/* CARD */

.card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    border-top:8px solid #0A4ED4;
    box-shadow:0 6px 18px rgba(0,0,0,.12);
    transition:.25s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

/* IMAGEM */

.mockup{
    width:100%;
    display:block;
    aspect-ratio:2/3;
}

/* CONTEÚDO */

.content{
    padding:18px;
    flex-grow:1;
}

.title{
    color:#0A4ED4;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.desc{
    color:#555;
    font-size:14px;
    line-height:1.6;
}

/* META */

.meta{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:12px;
    padding:0 18px 18px;
}

.price-wrap{
    display:flex;
    flex-direction:column;
}

.price{
    font-size:22px;
    font-weight:800;
    color:#166534;
}

/* SHARE */

.share{
    display:flex;
    gap:8px;
    margin-top:6px;
    flex-wrap:wrap;
}

.share a{
    background:#eef2ff;
    color:#0A4ED4;
    text-decoration:none;
    font-size:11px;
    font-weight:700;
    padding:4px 8px;
    border-radius:6px;
    transition:.25s;
}

.share a:hover{
    background:#0A4ED4;
    color:#fff;
}

/* BOTÃO */

.cta{
    display:block;
    margin:0 18px 18px;
    padding:12px 18px;
    text-align:center;
    text-decoration:none;
    font-size:15px;
    font-weight:800;
    color:#fff;
    background:#166534;
    border-radius:12px;
    transition:.25s;
}

.cta:hover{
    background:#0d4e28;
}

/* HERO */

.hero{
    background:linear-gradient(135deg,#000,#1c1c1c);
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

.hero h1{
    color:gold;
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    max-width:900px;
    margin:auto;
}

/* CONTADOR */

#contador-home{
    margin-top:15px;
    color:#ff4444;
    font-size:24px;
    font-weight:bold;
}

/* SELLOS */

.selo{
    background:#111;
    color:#fff;
    border:1px solid gold;
    border-radius:8px;
    padding:12px 20px;
    font-size:14px;
    animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
box-shadow:0 0 5px gold;
}

50%{
box-shadow:0 0 20px gold;
}

100%{
box-shadow:0 0 5px gold;
}

}

/* FOOTER */

footer{
    background:#0A4ED4;
    color:#fff;
    text-align:center;
    padding:24px 14px;
    font-size:14px;
}

footer p{
    margin:6px 0;
}

/* RESPONSIVO */

@media(max-width:768px){

header h1{
font-size:24px;
}

.hero h1{
font-size:30px;
}

.price{
font-size:20px;
}

.meta{
flex-direction:column;
align-items:flex-start;
}

.cta{
width:calc(100% - 36px);
}

}