@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* força o fundo da página */
html, body {
    background: #f5f5f5 !important;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

/* tenta neutralizar wrappers do tema/elementor */
body.page .site,
body.page .site-content,
body.page .content-area,
body.page .site-main,
body.page .entry-content,
.elementor-kit-5,
.elementor-section,
.elementor-container,
.elementor-widget-wrap {
    background: transparent !important;
}

.supelpack-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background: #f5f5f5 !important;
}

/* HEADER */
.supelpack-header {
    text-align: center;
    margin-bottom: 50px;
}

.supelpack-logo {
    max-width: 360px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.supelpack-subtitle {
    font-size: 22px;
    color: #222;
    font-weight: 600;
    margin: 0;
}

/* CARDS */
.supelpack-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.supelpack-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.supelpack-card:hover {
    border-color: #F4B400;
    transform: translateY(-6px);
}

.supelpack-card h3 {
    color: #000;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
}

.supelpack-card p {
    color: #555;
    font-size: 15px;
}

/* BOTÃO */
.supelpack-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.2s;
    font-weight: 600;
}

.supelpack-button:hover {
    background: #F4B400;
    color: #000;
}

/* FOOTER */
.supelpack-footer {
    margin-top: 60px;
    background: #000;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.supelpack-footer h4 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.supelpack-footer p {
    margin-bottom: 15px;
    color: #ddd;
}

.supelpack-footer a {
    color: #F4B400;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
}

.supelpack-footer a:hover {
    text-decoration: underline;
}

table th, table td {
    padding: 10px;
    text-align: left;
}

table tbody tr:hover {
    background: #f9fafb;
}