/* --------------------------------------------------
   BASE / ROOT
-------------------------------------------------- */
:root {
    --green: #4CAF50;
    --green-dark: #2E7D32;
    --dark: #333;
    --muted: #666;
    --card: #fff;
    --bg: #000000;
    --radius: 14px;
    --maxw: 1100px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background: var(--bg);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    line-height: 1.45;
}

/* --------------------------------------------------
   CONTAINER
-------------------------------------------------- */
.container {
    max-width: var(--maxw);
    margin: 32px auto;
    padding: 24px;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo */
.logo {
    height: 85px;
    width: 85px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(76,175,80,0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

nav a {
    margin-left: 10px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

/* MOBILE - Menu centralizado */
@media (max-width: 700px) {
    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 6px;
    }
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: center;
    margin: 25px 0 40px;
}

/* Tablet e celular */
@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

/* Textos */
.hero-left h1 {
    font-size: clamp(26px, 4vw, 40px);
    color: var(--green-dark);
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-left p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 18px;
}

/* Badges */
.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.badge {
    background: #FFFFFF;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* --------------------------------------------------
   CARD GERAL
-------------------------------------------------- */
.card {
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* FORM */
input, select, textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    margin-bottom: 12px;
    font-size: 14px;
}

/* GRID de inputs */
.row {
    display: flex;
    gap: 12px;
}
.row .col {
    flex: 1;
}

/* Mobile – ajusta inputs lado a lado */
@media (max-width: 650px) {
    .row {
        flex-direction: column;
    }
}

/* Botão CTA */
.cta {
    background: #172f1e;
    color: #fff;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(76,175,80,0.25);
    transition: 0.2s;
}
.cta:hover {
    background: var(--green-dark);
}

/* --------------------------------------------------
   FEATURES GRID
-------------------------------------------------- */
.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

@media (max-width: 1000px) {

    .grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
    .grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------
   TABELA
-------------------------------------------------- */
.commission-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.commission-table th,
.commission-table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px dashed #ddd;
}

.commission-table th {
    color: var(--muted);
    font-weight: 700;
}

.highlight {
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 900;
}

/* Mobile – deixa a tabela respirando melhor */
@media (max-width: 600px) {
    .commission-table td,
    .commission-table th {
        font-size: 14px;
        padding: 10px 6px;
    }
}

/* --------------------------------------------------
   TESTEMUNHOS
-------------------------------------------------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.t {
    background: #000000;
	opacity: 90%;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
@media (max-width: 900px) {
    .testimonials { grid-template-columns: 1fr; }
}

/* --------------------------------------------------
   FAQ
-------------------------------------------------- */
.faq h4 {
    margin-top: 14px;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
    margin-top: 40px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.logo2 img {
    max-width: 100px;
    margin-bottom: 10px;
}

/* --------------------------------------------------
   AJUSTES GERAIS DE RESPONSIVIDADE
-------------------------------------------------- */

/* Remove excesso de margem em telas menores */
@media (max-width: 500px) {
    .container {
        padding: 16px;
    }

    .card {
        padding: 16px;
    }

    header {
        text-align: center;
        justify-content: center;
    }
}

/* Melhora experiência em telas muito grandes */
@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}
