:root {
    --purple: #2d1458;
    --purple-dark: #241046;
    --purple-deep: #1b0b36;
    --magenta: #a706bd;
    --magenta-hover: #bd0bd1;
    --magenta-soft: #f7e9fa;
    --text: #211b29;
    --muted: #706878;
    --line: #e8e1ed;
    --bg-soft: #f7f2f9;
    --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Sora', Arial, sans-serif;
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button:focus-visible, a:focus-visible { outline: 3px solid rgba(167, 6, 189, .35); outline-offset: 3px; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section, .section-soft { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--purple-dark);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 124px; height: auto; max-width: none; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 25px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600; }
.main-nav a { transition: color .18s ease; }
.main-nav a:hover { color: #fff; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--magenta); }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 410px;
    display: grid;
    place-items: center;
    padding: 92px 0 102px;
    background:
        radial-gradient(circle at 10% 50%, rgba(167,6,189,.14), transparent 30%),
        radial-gradient(circle at 90% 50%, rgba(167,6,189,.14), transparent 30%),
        var(--purple-dark);
}
.hero .container { width: min(1050px, calc(100% - 40px)); }
.hero-center { text-align: center; }
.hero-copy { display: flex; flex-direction: column; align-items: center; }
.hero h1 { max-width: 900px; margin: 0; color: #fff; font-size: clamp(40px, 4.6vw, 62px); line-height: 1.08; letter-spacing: -.05em; font-weight: 800; }
.hero h1 span { color: var(--magenta); }
.hero-copy > p { max-width: 760px; margin: 23px auto 0; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 28px; border-radius: 999px; font-size: 13px; font-weight: 700; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #552487; color: #fff; }
.btn-primary:hover { background: #642b9d; }
.btn-secondary { border: 1px solid rgba(255,255,255,.34); color: #fff; background: rgba(255,255,255,.06); }
.btn-secondary:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); }
.hero-actions .btn { min-width: 200px; min-height: 52px; }
.hero-actions .btn-primary { background: var(--magenta); }
.hero-actions .btn-primary:hover { background: var(--magenta-hover); }
.hero-actions .btn-secondary { border-color: rgba(255,255,255,.75); background: transparent; }
.hero-actions .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-white { background: #fff; color: var(--purple); }
.play-button { position: absolute; inset: 50% auto auto 50%; display: grid; place-items: center; transform: translate(-50%, -50%); border-radius: 50%; background: var(--magenta); color: #fff; transition: transform .18s ease, background .18s ease; }
.video-player:hover .play-button { transform: translate(-50%, -50%) scale(1.06); background: var(--magenta-hover); }

.section-heading { margin-bottom: 42px; }
.section-heading h2, .about-content h2, .vip-box h2 { margin: 0; color: var(--purple-dark); font-size: clamp(29px, 3.1vw, 39px); line-height: 1.12; letter-spacing: -.045em; font-weight: 800; }
.section-heading h2 span, .about-content h2 span { color: var(--magenta); }
.section-heading p { margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.section-heading.centered { max-width: 760px; margin: 0 auto 42px; text-align: center; }

.learning-tools { border-bottom: 1px solid #eee6f1; }
.learning-tools .section-heading.centered { max-width: 960px; }
.learning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.learning-card { min-height: 275px; padding: 34px 26px; border: 1px solid #e7dfec; border-radius: 22px; background: #fff; text-align: center; box-shadow: 0 12px 34px rgba(45,20,88,.05); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.learning-card:hover { transform: translateY(-4px); border-color: rgba(167,6,189,.5); box-shadow: 0 17px 38px rgba(45,20,88,.1); }
.learning-card > i { width: auto; height: 72px; display: grid; place-items: center; margin: 0 auto; color: var(--magenta); font-size: 62px; line-height: 1; }
.learning-logo { width: 150px; height: 72px; display: block; margin: 0 auto; background: var(--magenta); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.learning-logo-woocommerce { -webkit-mask-image: url('../images/woocommerce-logo.png'); mask-image: url('../images/woocommerce-logo.png'); -webkit-mask-size: contain; mask-size: contain; }
.learning-card h3 { margin: 22px 0 9px; color: var(--purple-dark); font-size: 19px; }
.learning-card p { max-width: 320px; min-height: 66px; margin: 0 auto; color: var(--muted); font-size: 14px; line-height: 1.68; }

.partners {
    background:
        radial-gradient(circle at 10% 50%, rgba(167,6,189,.12), transparent 30%),
        radial-gradient(circle at 90% 50%, rgba(167,6,189,.12), transparent 30%),
        var(--purple-dark);
}
.section-heading-light h2 { color: #fff; }
.section-heading-light p { color: rgba(255,255,255,.64); }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.partner-card { min-height: 315px; display: flex; flex-direction: column; align-items: center; padding: 34px 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.045); color: #fff; text-align: center; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.partner-card:hover { transform: translateY(-4px); border-color: rgba(167,6,189,.65); background: rgba(255,255,255,.07); }
.partner-logo { width: 180px; height: 64px; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.partner-logo-mark { display: block; height: 52px; background: #fff; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.partner-logo-image { display: block; height: auto; object-fit: contain; }
.logo-canva { width: 58px; -webkit-mask-image: url('../images/partners/canva-mark.svg'); mask-image: url('../images/partners/canva-mark.svg'); }
.logo-melhor-envio { width: 150px; -webkit-mask-image: url('../images/partners/melhor-envio.svg'); mask-image: url('../images/partners/melhor-envio.svg'); }
.logo-h3web { width: 178px; }
.partner-card h3 { margin: 21px 0 8px; font-size: 19px; }
.partner-card p { min-height: 86px; margin: 21px auto 0; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.65; }
.section-btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border-radius: 999px; font-size: 12px; font-weight: 700; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.section-btn:hover { transform: translateY(-2px); }
.partner-card .partner-btn { margin-top: auto; background: var(--magenta); color: #fff; }
.partner-card:hover .partner-btn { background: var(--magenta-hover); }

.templates-heading { display: block; text-align: center; }
.templates-heading > div { max-width: 980px; margin: 0 auto; }
.templates-heading h2 { white-space: nowrap; }
.templates-heading p { max-width: 900px; margin-right: auto; margin-left: auto; }
.templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.template-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid #e5ddea; border-radius: 22px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.template-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(45,20,88,.09); }
.template-visual { aspect-ratio: 32 / 15; overflow: hidden; background: var(--purple-dark); }
.template-visual img { width: 100%; height: 100%; object-fit: cover; }
.template-content { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 27px 26px 29px; text-align: center; }
.template-content h3 { margin: 0 0 9px; color: var(--purple-dark); font-size: 19px; }
.template-title-nowrap { white-space: nowrap; }
.template-content p { max-width: 320px; min-height: 70px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.66; }
.template-content .template-btn { margin-top: auto; background: var(--magenta-soft); color: var(--magenta); }
.template-card:hover .template-btn { background: var(--magenta); color: #fff; }

.about {
    overflow: hidden;
    padding: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(167,6,189,.12), transparent 30%),
        radial-gradient(circle at 90% 50%, rgba(167,6,189,.12), transparent 30%),
        var(--purple-dark);
}
.about-grid { min-height: 555px; display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 58px; }
.about-photo { align-self: end; }
.about-photo img {
    width: min(100%, 545px);
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}
.about-content { max-width: 560px; padding: 74px 0; }
.about-content h2 { color: #fff; }
.about-content p { max-width: 540px; margin: 22px 0 0; color: rgba(255,255,255,.67); font-size: 15px; line-height: 1.8; }
.about-btn { min-width: 200px; min-height: 52px; margin-top: 27px; border: 1px solid rgba(255,255,255,.75); background: transparent; color: #fff; }
.about-btn:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.videos { padding: 88px 0; }
.videos-heading { max-width: 860px; margin: 0 auto 40px; text-align: center; }
.videos-heading p { max-width: 760px; margin: 14px auto 0; }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 27px 20px; }
.video-card { min-width: 0; }
.video-player { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; display: block; padding: 0; border: 0; border-radius: 16px; background: #e9e5ed; cursor: pointer; box-shadow: 0 8px 28px rgba(45,20,88,.08); }
.video-player img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.video-player:hover img { transform: scale(1.025); }
.play-button { width: 54px; height: 54px; font-size: 19px; }
.latest-label { position: absolute; top: 12px; left: 12px; padding: 7px 10px; border-radius: 8px; background: var(--magenta); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.video-info { padding: 14px 3px 0; }
.video-info h3 { margin: 0; color: #2d2732; font-size: 14px; line-height: 1.48; font-weight: 700; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-info span { display: block; margin-top: 7px; color: #9a929f; font-size: 12px; }
.video-player iframe { width: 100%; height: 100%; border: 0; display: block; }
.videos-action { display: flex; justify-content: center; margin-top: 42px; }
.videos-empty { padding: 42px; border: 1px dashed #d8cfdf; border-radius: 18px; background: #faf8fb; text-align: center; color: var(--muted); }
.videos-empty strong { display: block; margin-bottom: 8px; color: var(--purple-dark); }
.videos-empty p { margin: 0; }

.vip-section {
    padding: 34px 0 38px;
    background: #120522;
}
.vip-box { display: flex; flex-direction: column; align-items: center; text-align: center; color: #fff; }
.vip-box h2 { color: #fff; font-size: clamp(29px, 3.1vw, 39px); }
.vip-box p { max-width: 720px; margin: 14px auto 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.7; }
.btn-whatsapp { min-height: 46px; margin-top: 22px; padding: 0 30px; background: #25d366; color: #fff; font-size: 14px; }
.btn-whatsapp:hover { background: #20bd5b; }
.btn-whatsapp i { font-size: 19px; }

.site-footer { position: relative; padding: 64px 0 22px; background: #120522; border-top: 0; }
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(167,6,189,.38) 22%, var(--magenta) 50%, rgba(167,6,189,.38) 78%, transparent 100%);
}
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, .8fr); align-items: start; gap: 64px; }
.footer-brand { max-width: 270px; }
.footer-logo { width: 132px; height: auto; max-width: none; object-fit: contain; }
.footer-description { max-width: 260px; margin: 16px 0 0; color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.55; }
.footer-social { margin-top: 23px; }
.footer-social > strong { display: block; margin-bottom: 11px; color: #fff; font-size: 12px; }
.footer-social-links { display: flex; align-items: center; gap: 8px; }
.footer-social-links a { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.05); color: #fff; transition: background .18s ease, transform .18s ease; }
.footer-social-links a:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.footer-social-links i { font-size: 15px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h2 { margin: 0 0 8px; color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .01em; }
.footer-column a { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.45; transition: color .18s ease; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 54px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.7; }
.footer-bottom span:last-child { color: rgba(255,255,255,.45); text-align: right; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.2); transition: transform .18s ease; }
.whatsapp-float:hover { transform: translateY(-2px) scale(1.03); }
.whatsapp-float i { font-size: 28px; }

/* Política de privacidade */
.legal-page { background: #fcfbfd; }
.legal-hero { padding: 82px 0 72px; background: var(--purple-dark); text-align: center; }
.legal-hero h1 { color: #fff; font-size: clamp(38px, 5vw, 58px); }
.legal-hero p { margin: 16px 0 0; color: rgba(255,255,255,.7); font-size: 14px; }
.legal-content { padding: 70px 0 88px; }
.legal-card { max-width: 920px; }
.legal-card h2 { margin: 38px 0 12px; color: var(--purple-dark); font-size: 23px; line-height: 1.35; }
.legal-card h2:first-of-type { margin-top: 32px; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 15px; line-height: 1.8; }
.legal-card p { margin: 0 0 16px; }
.legal-card ul { margin: 0 0 18px; padding-left: 22px; }
.legal-card li + li { margin-top: 7px; }

@media (max-width: 980px) {
    .main-nav { gap: 18px; }
    .learning-grid, .partners-grid, .templates-grid { grid-template-columns: repeat(2, 1fr); }
    .learning-card:last-child, .partner-card:last-child, .template-card:last-child { grid-column: 1 / -1; }
    .about-grid { min-height: 0; grid-template-columns: .85fr 1.15fr; gap: 30px; }
    .about-content { padding: 58px 0; }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 60px; }
}

@media (max-width: 760px) {
    .container, .hero .container { width: min(100% - 28px, 1160px); }
    .section, .section-soft { padding: 68px 0; }
    .header-inner { min-height: 64px; }
    .brand-logo { width: 112px; }
    .partner-card:first-child .partner-logo { height: 72px; }
    .partner-card:first-child .logo-canva { width: 76px; height: 66px; }
    .menu-toggle { display: block; }
    .main-nav { position: absolute; top: 64px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 3px; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: var(--purple-dark); box-shadow: 0 20px 45px rgba(0,0,0,.2); }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 10px 12px; border-radius: 9px; }
    .hero { min-height: 390px; padding: 72px 0 78px; }
    .hero h1 { font-size: clamp(34px, 10vw, 45px); }
    .hero-copy > p { font-size: 14px; }
    .learning-grid, .partners-grid, .templates-grid, .videos-grid { grid-template-columns: 1fr; }
    .learning-tools .section-heading p br { display: none; }
    .template-copy-break { display: none; }
    .learning-card:last-child, .partner-card:last-child, .template-card:last-child { grid-column: auto; }
    .learning-card, .partner-card { min-height: 0; }
    .templates-heading { margin-bottom: 32px; }
    .templates-heading h2 { white-space: normal; }
    .about { padding: 0; }
    .about-grid { display: flex; flex-direction: column-reverse; gap: 0; }
    .about-content { max-width: none; padding: 38px 0 24px; text-align: center; }
    .about-content p { margin-right: auto; margin-left: auto; }
    .about-btn { width: 100%; }
    .about-photo { width: 100%; align-self: stretch; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 0; line-height: 0; }
    .about-photo img { width: min(100%, 390px); margin-bottom: 0; }
    .videos { padding: 68px 0; }
    .vip-section { padding: 32px 0 36px; }
    .footer-grid { grid-template-columns: 1fr; justify-items: start; gap: 36px; text-align: left; }
    .footer-brand { width: 100%; max-width: none; }
    .footer-logo { margin: 0; }
    .footer-description { width: 100%; max-width: 370px; margin-right: 0; margin-left: 0; font-size: 12px; line-height: 1.55; }
    .footer-social-links { justify-content: flex-start; }
    .footer-column { align-items: flex-start; }
    .footer-bottom { flex-direction: column; gap: 8px; margin-top: 42px; }
    .footer-bottom span:last-child { text-align: left; }
    .footer-logo { width: 148px; }
    .whatsapp-float { right: 16px; bottom: 16px; width: 51px; height: 51px; }
    .legal-hero { padding: 64px 0 56px; }
    .legal-content { padding: 46px 0 64px; }
    .legal-card h2 { font-size: 21px; }
}

@media (max-width: 430px) {
    .hero-actions { width: 100%; flex-direction: column; gap: 16px; }
    .btn { width: 100%; }
    .btn-whatsapp { width: auto; padding-right: 30px; padding-left: 30px; }
    .section-heading h2, .about-content h2 { font-size: 29px; }
    .template-content { padding-right: 18px; padding-left: 18px; }
}
