/* ==========================================
   10Melhores.online
   Style.css
========================================== */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f6f6f6;

    color:#222;

    line-height:1.7;

}


/* CONTAINER */

.container{

    width:92%;

    max-width:1200px;

    margin:auto;

}


/* LINKS */

a{

    text-decoration:none;

    transition:.3s;

}


/* IMAGENS */

img{

    max-width:100%;

    display:block;

}


/* ==========================================
   HEADER
========================================== */

.site-header{

    background:#111;

    border-bottom:2px solid #d4af37;

    position:sticky;

    top:0;

    z-index:999;

}

.site-header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.site-header img{

    width:170px;

}

.site-header nav{

    display:flex;

    gap:28px;

}

.site-header nav a{

    color:#ffffff;

    font-weight:600;

}

.site-header nav a:hover{

    color:#d4af37;

}


/* ==========================================
   HERO
========================================== */

.hero{

    background:linear-gradient(135deg,#111,#2c2c2c);

    color:white;

    text-align:center;

    padding:90px 20px;

}

.hero h1{

    font-size:48px;

    max-width:850px;

    margin:auto;

    line-height:1.25;

}

.hero p{

    margin:30px auto;

    max-width:760px;

    font-size:20px;

    color:#dddddd;

}

.btn-primary{

    display:inline-block;

    background:#d4af37;

    color:#111;

    padding:16px 34px;

    border-radius:8px;

    font-weight:bold;

}

.btn-primary:hover{

    background:#b88f18;

}


/* ==========================================
   SECTIONS
========================================== */

.section{

    padding:70px 0;

}

.section h2{

    text-align:center;

    color:#111;

    margin-bottom:45px;

    font-size:34px;

}
/* ==========================================
   CARDS
========================================== */

.card{

    background:#ffffff;

    border-radius:14px;

    padding:30px;

    margin-bottom:30px;

    border:1px solid #e5e5e5;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(212,175,55,.18);

    border-color:#d4af37;

}

.card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#111;

}

.card p{

    color:#555;

}


/* ==========================================
   GRID DE CATEGORIAS
========================================== */

.categories-grid,

.ranking-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:28px;

    margin-top:35px;

}


/* ==========================================
   BOTÕES
========================================== */

.btn{

    display:inline-block;

    background:#111;

    color:#fff;

    padding:12px 22px;

    border-radius:8px;

    margin-top:18px;

}

.btn:hover{

    background:#d4af37;

    color:#111;

}


/* ==========================================
   TABELA COMPARATIVA
========================================== */

.comparison-table{

    width:100%;

    border-collapse:collapse;

    margin:40px 0;

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.comparison-table th{

    background:#111;

    color:#d4af37;

    padding:16px;

    text-align:left;

}

.comparison-table td{

    padding:16px;

    border-bottom:1px solid #ececec;

}

.comparison-table tbody tr:nth-child(even){

    background:#fafafa;

}

.comparison-table tbody tr:hover{

    background:#fff7dd;

}


/* ==========================================
   LISTAS
========================================== */

ul{

    margin:15px 0 20px 25px;

}

li{

    margin-bottom:8px;

}


/* ==========================================
   ARTIGOS
========================================== */

.section img{

    border-radius:12px;

    margin:30px 0;

}

.section p{

    margin-bottom:20px;

}

.section h3{

    margin-top:25px;

}
/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#111;

    color:#ffffff;

    margin-top:60px;

    padding:40px 0;

    text-align:center;

    border-top:2px solid #d4af37;

}

.footer p{

    margin-bottom:20px;

}

.footer nav{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer a{

    color:#d4af37;

    font-weight:600;

}

.footer a:hover{

    color:#ffffff;

}


/* ==========================================
   TABELAS RESPONSIVAS
========================================== */

@media (max-width:900px){

    .comparison-table{

        display:block;

        overflow-x:auto;

        white-space:nowrap;

    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .site-header .container{

        flex-direction:column;

        gap:18px;

    }

    .site-header nav{

        flex-wrap:wrap;

        justify-content:center;

        gap:16px;

    }

    .hero{

        padding:70px 20px;

    }

    .hero h1{

        font-size:34px;

    }

    .hero p{

        font-size:18px;

    }

    .section{

        padding:50px 0;

    }

    .section h2{

        font-size:28px;

    }

    .card{

        padding:22px;

    }

}


/* ==========================================
   TELAS MUITO PEQUENAS
========================================== */

@media (max-width:480px){

    .hero h1{

        font-size:28px;

    }

    .hero p{

        font-size:16px;

    }

    .btn-primary{

        width:100%;

        text-align:center;

    }

}


/* ==========================================
   EFEITOS SUAVES
========================================== */

::selection{

    background:#d4af37;

    color:#111;

}

html{

    scroll-behavior:smooth;

}
.table-btn {
    display: inline-block;
    background: #d4af37;
    color: #111;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

.table-btn:hover {
    background: #b8860b;
    color: white;
}
.table-btn {
    display: inline-block;
    background: #d4af37;
    color: #111;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

.table-btn:hover {
    background: #b8860b;
    color: white;
}
a.table-btn {
    display: inline-block !important;
    background: #d4af37 !important;
    color: #111 !important;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: bold !important;
    white-space: nowrap !important;
}