/* Identidade Despnet Talk: ver files/CLAUDE.md */
:root {
    --blue: #0E60B6;
    --blue-dk: #012152;
    --blue-mid: #0A3E86;
    --yellow: #FBD11B;
    --yellow-ink: #33290A;
    --paper: #EFF4FA;
    --ink: #0A1B33;
    --text: #51657F;
    --text-on-dark: #A9C6E8;
    --line: #E1E9F4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--ink);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 2.6rem;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h1 em { font-style: normal; }

h2 {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
}

h3 { font-size: 1.1rem; line-height: 1.5; font-weight: 400; }

.kicker {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 14px;
}

button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 12px 12px 32px;
    border-radius: 999px;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    background-color: var(--blue);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(14, 96, 182, .28);
    transition: transform .25s, box-shadow .25s, background-color .25s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(14, 96, 182, .36);
}

.btn-arrow {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s;
}

.btn-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--blue-dk);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

button:hover .btn-arrow { transform: translateX(3px); }

/* Em fundo escuro o CTA é amarelo (padrão dos criativos) */
header button, .section-dark button, footer button {
    background-color: var(--yellow);
    color: var(--yellow-ink);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .25);
}

header button:hover, .section-dark button:hover, footer button:hover { box-shadow: 0 20px 38px rgba(0, 0, 0, .32); }

header .btn-arrow, .section-dark .btn-arrow, footer .btn-arrow { background-color: var(--blue-dk); }

header .btn-arrow svg, .section-dark .btn-arrow svg, footer .btn-arrow svg { stroke: var(--yellow); }

a:has(> button) { text-decoration: none; display: inline-block; }

input[type=text] {
    outline: 0;
    border-radius: 12px;
    padding: 14px 16px;
    width: 100%;
    border: 1.5px solid var(--line);
    background-color: #F7FAFD;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    transition: border-color .2s, background-color .2s;
}

input[type=text]:focus { border-color: var(--blue); background-color: #fff; }

img { width: 100%; height: 100%; }

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist li {
    position: relative;
    padding-left: 34px;
    font-weight: 500;
    line-height: 1.45;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.video-frame {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 30px 64px rgba(1, 33, 82, .18);
    line-height: 0;
}

.video-frame video { width: 100%; height: auto; display: block; }

@media (max-width: 550px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.05rem; }
    button { font-size: 1rem; padding: 10px 10px 10px 24px; }
    .btn-arrow { width: 38px; height: 38px; flex-basis: 38px; }
}

/* ================================= HEADER ================================= */

#root header section {
    background: radial-gradient(900px 700px at 80% 0%, var(--blue-mid), var(--blue-dk) 65%);
    overflow: hidden;
}

#root header section > div {
    display: flex;
    align-items: center;
    gap: 60px;
    color: #fff;
    margin: 0 auto;
    max-width: 1280px;
    padding: 70px 40px 90px;
}

#root .top-left { width: 52%; }

#root .top-logo { width: 240px; height: auto; margin-bottom: 64px; }

#root .top-logo img { height: auto; display: block; }

#root header .kicker { color: var(--yellow); }

#root .top-left > h1 { font-size: 3.2rem; line-height: 1.06; }

#root .top-left > h1 em { color: var(--yellow); }

#root .top-left > h2 { padding-top: 24px; color: var(--text-on-dark); max-width: 560px; }

#root .top-left > h2 strong { color: #fff; font-weight: 600; }

#root .top-action { padding-top: 36px; }

#root .top-seal {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 22px;
    color: var(--text-on-dark);
    font-size: .95rem;
}

#root .top-seal svg { width: 22px; height: 22px; color: var(--yellow); flex: 0 0 22px; }

#root .top-seal strong { color: #fff; font-weight: 600; }

#root .top-right { width: 48%; }

#root .top-right .video-frame {
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
}

@media (max-width: 1137px) {
    #root .top-left > h1 { font-size: 2.7rem; }
}

@media (max-width: 995px) {
    #root header section > div {
        flex-direction: column;
        gap: 48px;
        padding: 44px 20px 64px;
    }

    #root .top-left, #root .top-right { width: 100%; max-width: 640px; }
    #root .top-logo { width: 210px; margin-bottom: 44px; }
}

@media (max-width: 550px) {
    #root .top-left > h1 { font-size: 2.1rem; }
    #root .top-logo { width: 190px; }
}

/* ================================= MAIN ================================= */

#root > main > section { background-color: #fff; }

#root > main > section:nth-of-type(odd):not(.section-dark) { background-color: var(--paper); }

#root > main > section > div {
    padding: 110px 40px;
    margin: 0 auto;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    row-gap: 48px;
}

#root > main .section-dark {
    background: radial-gradient(800px 600px at 15% 0%, var(--blue-mid), var(--blue-dk) 65%);
    color: #fff;
}

#root main h1 em {
    background: linear-gradient(var(--yellow), var(--yellow)) 0 88% / 100% .18em no-repeat;
    padding: 0 2px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

#root main .section-dark h1 em { background: none; padding: 0; color: var(--yellow); }

#root main .section-dark .kicker { color: var(--yellow); }

/* Seções de funcionalidade: texto + vídeo lado a lado */
#root main .feature > div {
    flex-direction: row;
    align-items: center;
    column-gap: 72px;
}

#root main .feature.reverse > div { flex-direction: row-reverse; }

#root main .feature .section-text { flex: 1 1 46%; }

#root main .feature .section-image { flex: 1 1 54%; }

#root .section-text h1 { font-size: 2.3rem; }

#root .section-text > p:not(.kicker) {
    padding-top: 20px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text);
}

#root .section-dark .section-text > p:not(.kicker) { color: var(--text-on-dark); }

#root .section-text .checklist { padding-top: 24px; color: var(--blue-dk); }

#root .section-text .section-action { padding-top: 34px; }

#root .section-image { display: flex; justify-content: center; }

#root .section-dark .video-frame {
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 36px 76px rgba(0, 0, 0, .4);
}

#root .integration {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 10px 18px 10px 12px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    font-size: .95rem;
    color: var(--text-on-dark);
}

#root main > section:not(.section-dark) .integration {
    background-color: #fff;
    border-color: var(--line);
    color: var(--text);
}

#root .integration img { width: 28px; height: 28px; object-fit: contain; }

#root .integration strong { font-weight: 600; color: inherit; }

#root .section-dark .integration strong { color: #fff; }

#root main > section:not(.section-dark) .integration strong { color: var(--blue-dk); }

#root .section-title { text-align: center; }

#root .section-title h1 { max-width: 780px; margin: 0 auto; }

#root .section-action { text-align: center; }

#root .feature .section-action { text-align: left; }

/* Cards de pós-venda */
#root .section-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

#root .section-cards > div {
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(1, 33, 82, .10);
    transition: transform .3s, box-shadow .3s;
}

#root .section-cards > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 54px rgba(1, 33, 82, .16);
}

#root .section-cards-card-image { aspect-ratio: 4 / 3; overflow: hidden; }

#root .section-cards-card-image img { object-fit: cover; display: block; }

#root .section-cards-card-content { padding: 24px 24px 28px; }

#root .section-cards h1 {
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--blue);
    letter-spacing: -0.01em;
    padding-bottom: 8px;
}

#root .section-cards p { font-size: .95rem; line-height: 1.6; color: var(--text); }

/* FAQ */
#root .faq-questions {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

#root .faq-questions > div {
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

#root .faq-question {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.08rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--blue-dk);
    align-items: center;
    cursor: pointer;
    user-select: none;
}

#root .faq-answer {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    padding: 0 24px 24px;
    transition: .5s opacity, .5s margin;
}

#root .faq-question-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
}

#root .faq-question-icon img { width: 20px; height: 20px; }

@media (max-width: 1114px) {
    #root .section-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    #root > main > section > div { padding: 72px 20px; }

    #root main .feature > div,
    #root main .feature.reverse > div {
        flex-direction: column;
        row-gap: 36px;
    }

    #root main .feature .section-text,
    #root main .feature .section-image { flex-basis: auto; width: 100%; max-width: 640px; }
}

@media (max-width: 575px) {
    #root .section-text h1 { font-size: 1.75rem; }
    #root .section-cards { grid-template-columns: 1fr; }
    #root .faq-question { font-size: 1rem; padding: 18px; }
    #root .faq-answer { padding: 0 18px 18px; }
}

/* ================================= FOOTER ================================= */

#root footer > section {
    background: radial-gradient(900px 700px at 80% 0%, var(--blue-mid), var(--blue-dk) 65%);
}

#root footer > section > div {
    padding: 110px 40px 60px;
    color: #fff;
    margin: 0 auto;
    max-width: 1280px;
}

#root footer .footer-action {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#root footer .top-logo { width: 200px; margin-bottom: 40px; }

#root footer .footer-action h1 { font-size: 3rem; line-height: 1.08; }

#root footer .footer-action h1 em { color: var(--yellow); }

#root footer .checklist { padding-top: 32px; text-align: left; color: #fff; }

#root footer .checklist li::before { background-color: var(--yellow); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23012152' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E"); }

#root footer .footer-action-btn { padding-top: 44px; }

#root footer .footer-note { padding-top: 16px; font-size: .9rem; color: var(--text-on-dark); }

#root footer .footer-contact {
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

#root footer .footer-contact a { text-decoration: none; color: white; }

#root footer .footer-contact > div { padding-top: 40px; }

#root footer .footer-contact h3 { font-size: .85rem; font-weight: 600; letter-spacing: .2em; color: var(--yellow); }

#root footer .footer-contact p { font-size: 1.1rem; padding-top: 15px; }

#root footer .footer-contact-icons {
    display: flex;
    padding-top: 15px;
    column-gap: 12px;
    justify-content: center;
}

#root footer .footer-contact-icons > div { width: 34px; height: 34px; opacity: .8; transition: opacity .2s; }

#root footer .footer-contact-icons > div:hover { opacity: 1; }

@media (max-width: 995px) {
    #root footer > section > div { padding: 80px 20px 50px; }
}

@media (max-width: 550px) {
    #root footer .footer-action h1 { font-size: 2.1rem; }
}
