@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* BASE */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #EDF2F7;
    color: #0E0E14;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #D9DEE6;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #0E0E14;
}

.menu a {
    margin-left: 25px;
    text-decoration: none;
    color: #4A4A58;
    font-weight: 500;
    transition: 0.2s;
}

.menu a:hover {
    color: #3A6DFF;
}

/* HERO */
.hero {
    text-align: center;
    padding: 90px 0;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0E0E14;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #4A4A58;
}

.btn {
    padding: 14px 32px;
    background: #3A6DFF;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.btn:hover {
    background: #2D55CC;
}

/* SEÇÕES */
.section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #0E0E14;
}

/* GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARDS */
.card,
.tool-card {
    background: #FFFFFF;
    border: 1px solid #D9DEE6;
    border-radius: 10px;
    padding: 25px;
    transition: 0.25s;
}

.card:hover,
.tool-card:hover {
    border-color: #3A6DFF;
    transform: translateY(-3px);
}

/* BOTÕES SECUNDÁRIOS */
.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid #3A6DFF;
    color: #3A6DFF;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}

.btn-secondary:hover {
    background: #3A6DFF;
    color: #FFFFFF;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 25px 0;
    background: #FFFFFF;
    border-top: 1px solid #D9DEE6;
    font-size: 14px;
    color: #4A4A58;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }
}


/* CATALOGO.HTML */
/* TÍTULO DO CATÁLOGO */
.title-area h1 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #0E0E14;
}

.title-area p {
    font-size: 18px;
    color: #4A4A58;
    margin-top: 0;
}

/* FILTROS */
.filters {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    background: #FFFFFF;
    border: 1px solid #D9DEE6;
    color: #4A4A58;
    padding: 8px 18px;
    border-radius: 6px;
    margin: 5px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: #3A6DFF;
}

.filter-btn.active {
    background: #3A6DFF;
    color: #FFFFFF;
    border-color: #3A6DFF;
}
