:root {
    --bg: #ffffff;
    --text: #0b1220; /* COR PRETA (para textos principais) */
    --secondary: #001542; /* COR SECUNDÁRIA (para títulos e links) */
    --muted: #7A7A7A; /* COR CINZA (para textos secundários) */
    --brand: #FFB30D; /* COR AMARELA (para destaques) */
    --brand-600: #E6A10C; /* Tom mais escuro da cor principal para hovers */
    --brand-50: #FFF7E7; /* Tom bem claro da cor principal para fundos sutis */
    --surface: #f6f7fb;
    --card: #ffffff;
    --stroke: #e6e8ef;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --radius: 16px;
    --radius-lg: 22px;
    --maxw: 1100px;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: var(--text);
    background: var(--bg);
}

img {
    max-width: 100%;
    display: block
}

a {
    color: var(--secondary);
    text-decoration: none
}

a:hover {
    color: var(--brand-600)
}

h1, h2, h3, h4 {
    color: var(--secondary);
}

/* Header */
.topbar {
    background: var(--brand-50);
    border-bottom: 1px solid var(--stroke);
    font-size: .875rem;
    color: var(--text);
}

.topbar .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: .5rem;
    align-items: center
}
.topbar a {
    color: var(--brand);
    font-weight: 600;
}

.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(150%) blur(8px);
    border-bottom: 1px solid var(--stroke);
    z-index: 50
}

.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700
}

.brand svg {
    width: 24px;
    height: 24px
}

.menu {
    margin-left: auto;
    display: flex;
    gap: 18px;
    align-items: center
}

.menu a {
    color: var(--text);
    font-weight: 500
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: #fff;
    font-weight: 600;
    color: var(--text);
}

.btn.primary {
    background: var(--brand);
    color: var(--text);
    border-color: var(--brand);
    font-weight: 700;
}

.btn.primary:hover {
    background: var(--brand-600)
}

.btn.ghost {
    background: transparent
}

/* Hero */
.section {
    padding: 72px 20px
}

.hero {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #0D47A1;
    font-weight: 700
}

h1 {
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.05;
    margin: 12px 0 16px
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 52ch
}

.hero .cta {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center
}

.input {
    height: 44px;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    padding: 0 14px;
    min-width: 280px;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .02)
}

.note {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 8px
}

.mock {
    background: linear-gradient(180deg, #0D47A1, #1565C0);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow)
}

/* Estiliza a nova imagem para que tenha uma aparência profissional */
.hero-image {
  width: 100%;
  border-radius: var(--radius-lg); /* Usa o mesmo raio de borda do mockup antigo */
  box-shadow: var(--shadow); /* Usa a mesma sombra padrão do site */
}

.laptop {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    border: 1px solid var(--stroke);
    box-shadow: 0 14px 40px rgba(125, 79, 255, .25)
}

.laptop .bar {
    height: 28px;
    border-bottom: 1px solid var(--stroke);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e6e8ef
}

.grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 12px;
    padding: 12px
}

.card {
    border: 1px solid var(--stroke);
    border-radius: 10px;
    padding: 12px;
    background: #fff
}

.bar-chart,
.kanban {
    height: 120px;
    background: repeating-linear-gradient(to top, #e9ecf5 0 8px, transparent 8px 16px);
    border-radius: 8px
}

/* Logos */
.logos {
    max-width: var(--maxw);
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
    align-items: center;
    opacity: .9
}

.logos .logo {
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(180deg, #f4f6fa, #e8ebf3);
    border: 1px solid var(--stroke)
}

/* Feature blocks */
.feature {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.feature h2 {
    font-size: clamp(24px, 2.4vw, 32px);
    margin: 0 0 8px
}

.feature p {
    color: var(--text);
}

.feature p a {
    color: var(--secondary);
    font-weight: 600;
}
.feature p a:hover {
    color: var(--brand);
}

.shot {
    border-radius: 16px;
    background: #fff;
}

/* Accordion */
.accordion {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.acc-list {
    display: grid;
    gap: 12px
}

.acc-item {
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: #fff
}

.acc-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: transparent;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: var(--text);
}

.acc-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
    padding: 0 18px
}

.acc-inner {
    overflow: hidden
}

.acc-inner p {
    color: var(--text);
}

.acc-item.open .acc-panel {
    grid-template-rows: 1fr
}

.acc-item.open .acc-btn .chev {
    transform: rotate(180deg)
}

.chev {
    transition: transform .2s
}

/* CTA band */
.cta-band {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 48px 24px;
    background: #fbfcff;
    border: 1px solid var(--stroke);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.cta-band h3 {
    font-size: clamp(22px, 2.2vw, 32px);
    margin: 0
}

/* Footer */
footer {
    background: var(--surface);
    border-top: 1px solid var(--stroke)
}

.footer {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 48px 20px
}

.foot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px
}

.foot-col a {
    display: block;
    color: var(--text);
    padding: 6px 0;
    font-size: .925rem
}
.foot-col a:hover {
    color: var(--brand);
}

.subfoot {
    border-top: 1px solid var(--stroke);
    margin-top: 28px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: .9rem
}

.footer .brand {
    margin-bottom: 20px;
}

/* --- Seção de Preços --- */
.pricing-header {
    max-width: 65ch;
    margin: 0 auto 48px;
    text-align: center;
}

.pricing-header p {
    color: var(--muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--maxw);
    margin: 0 auto;
}

.pricing-card {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.recommended {
    position: relative;
    border-color: var(--brand);
    border-width: 2px;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: var(--text);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
}

.price {
    margin-bottom: 24px;
}

.price .currency {
    font-size: 1.2rem;
    font-weight: 500;
    vertical-align: top;
    color: var(--muted);
}

.price .amount {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--text);
}

.features-list li svg {
    fill: var(--brand);
    flex-shrink: 0;
}

/*
--- Seção de Recursos ---
*/
.features-header {
    max-width: var(--maxw); /* Garante que o container use a largura máxima */
    margin: 0 auto 48px;    /* Centraliza o bloco do cabeçalho na página */
    text-align: center;     /* Centraliza o TEXTO dentro desse bloco */
}

.features-header .lead {
  max-width: none; /* Remove a limitação de largura para permitir a centralização completa */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--maxw);
    margin: 0 auto;
}

.feature-card {
    background-color: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--brand-50);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--brand-600);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
}

/* --- Estilo para o Botão Principal de CTA (Versão WhatsApp) --- */
.btn-cta-principal {
  background-color: #25D366; /* Cor oficial do WhatsApp */
  color: #FFFFFF; /* Texto e ícone brancos */
  border: 2px solid #25D366;
  padding: 0 28px;
  height: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25); /* Sombra verde sutil */
  transition: all 0.2s ease; /* Transição mais suave */
  cursor: pointer; /* Adiciona a "mãozinha" de clique */
  white-space: nowrap; /* Impede que o texto quebre a linha */
}

.btn-cta-principal:hover {
    background-color: #1EAE57; /* Tom de verde mais escuro para o hover */
    border-color: #1EAE57;
    color: #FFFFFF; /* Texto continua branco */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-cta-principal svg {
    width: 20px;
    height: 20px;
    fill: currentColor; /* O ícone terá a mesma cor do texto (branco) */
}

/* Responsive */
@media (max-width: 1024px) {
    .hero, .feature, .accordion {
        grid-template-columns: 1fr
    }

    .logos {
        grid-template-columns: repeat(3, 1fr)
    }

    .foot-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 560px) {
    .menu {
        display: none
    }

    .logos {
        grid-template-columns: repeat(2, 1fr)
    }

    .input {
        min-width: 0;
        width: 100%
    }

    .hero .cta {
        flex-direction: column;
        align-items: stretch
    }
}