@import url("../colors_and_type.css"); * { box-sizing: border-box; } html, body { margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { background: var(--bg-page); color: var(--fg-1); font-family: var(--font-sans); font-weight: 350; -webkit-font-smoothing: antialiased; line-height: 1.5; } a { color: inherit; text-decoration: none; } img { max-width: 100%; display: block; } .wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; } .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--an-orange-700); } h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--an-purple-900); text-wrap: balance; letter-spacing: -0.015em; } /* ========== NAV ========== */ .nav { position: sticky; top: 0; z-index: 60; background: rgba(251, 248, 242, 0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(95,32,95,.08); } .nav .inner { display: flex; align-items: center; justify-content: space-between; height: 72px; } .nav-logo img { height: 38px; } .nav-links { display: flex; gap: 32px; } .nav-links a { font-size: 14px; font-weight: 500; color: var(--fg-2); transition: color .15s; } .nav-links a:hover { color: var(--an-purple-900); } /* ========== BUTTONS ========== */ .btn { display: inline-flex; align-items: center; gap: 10px; border: 0; cursor: pointer; font-family: var(--font-sans); font-weight: 700; padding: 15px 28px; border-radius: 999px; font-size: 14px; transition: transform .15s cubic-bezier(.2,.8,.2,1), background .2s, box-shadow .2s; letter-spacing: 0.01em; } .btn:active { transform: scale(0.98); } .btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 30px -10px rgba(37,211,102,.6); } .btn-wa:hover { background: #1FB657; transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(37,211,102,.7); } .btn-brand { background: var(--an-purple-900); color: #fff; } .btn-brand:hover { background: #4A1A4A; transform: translateY(-2px); } .btn-ghost { background: transparent; color: var(--an-purple-900); border: 1.5px solid var(--an-purple-900); } .btn-ghost:hover { background: var(--an-purple-900); color: #fff; } .btn-yellow { background: var(--an-yellow-500); color: var(--an-purple-900); } .btn-yellow:hover { background: var(--an-yellow-600); } .btn-lg { padding: 18px 34px; font-size: 15px; } /* ========== HERO ========== */ .hero { padding: 72px 0 60px; position: relative; overflow: hidden; } .hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 90% -10%, rgba(252,196,30,.18), transparent 40%), radial-gradient(circle at -5% 80%, rgba(125,101,169,.18), transparent 45%); } .hero .wrap { position: relative; z-index: 1; } .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; } .hero h1 { font-size: clamp(40px, 5.6vw, 72px); line-height: 1.02; font-weight: 700; margin: 18px 0 22px; } .hero h1 em { font-style: normal; font-weight: 300; display: block; color: var(--an-purple-900); } .hero h1 .hl { background: linear-gradient(180deg, transparent 60%, #FFDC93 60%); padding: 0 6px; } .hero .lead { font-size: 19px; font-weight: 300; line-height: 1.55; color: var(--fg-2); max-width: 540px; margin: 0 0 28px; } .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; } .hero-meta { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; font-size: 13px; color: var(--fg-2); } .hero-meta .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--an-orange-500); } .hero-meta strong { color: var(--an-purple-900); font-weight: 700; } .hero-portrait { aspect-ratio: 4/5; border-radius: 36px; background: radial-gradient(circle at 30% 25%, #EED6EE 0%, #B088C9 55%, #5F205F 100%); position: relative; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(95,32,95,.4); display: flex; align-items: flex-end; justify-content: center; } .hero-portrait img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; position: relative; z-index: 2; } .hero-portrait::before { content: ""; position: absolute; inset: auto 0 0 0; height: 55%; background: radial-gradient(ellipse at 50% 100%, rgba(47,15,47,.45), transparent 65%); z-index: 1; } .crm-badge { position: absolute; top: 22px; left: 22px; z-index: 5; background: #fff; color: var(--an-purple-900); padding: 12px 18px; border-radius: 14px; font-size: 12px; font-weight: 500; line-height: 1.3; box-shadow: 0 12px 30px -10px rgba(95,32,95,.35); } .crm-badge strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.05em; } .crm-badge .num { color: var(--an-orange-700); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; } .confid-card { position: absolute; bottom: 24px; right: -8px; z-index: 5; background: #fff; border-radius: 18px; padding: 14px 18px; box-shadow: 0 20px 40px -16px rgba(95,32,95,.35); max-width: 230px; display: flex; gap: 12px; align-items: flex-start; } .confid-card .icon { width: 36px; height: 36px; border-radius: 999px; background: var(--an-purple-900); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .confid-card p { font-size: 12px; color: var(--fg-2); margin: 0; line-height: 1.4; font-weight: 500; } .confid-card strong { color: var(--an-purple-900); font-weight: 700; display: block; font-size: 13px; margin-bottom: 2px; font-family: var(--font-display); } /* ========== STRIP ========== */ .strip { background: var(--an-purple-900); padding: 40px 0; color: #fff; } .strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .strip-stat strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--an-yellow-500); font-size: 38px; line-height: 1; letter-spacing: -0.02em; } .strip-stat span { display: block; margin-top: 8px; font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.4; } /* ========== SECTIONS ========== */ .sect { padding: 84px 0; } .sect-head { text-align: center; max-width: 780px; margin: 0 auto 56px; } .sect-head h2 { font-size: clamp(34px, 4.4vw, 52px); line-height: 1.05; font-weight: 700; margin: 12px 0; } .sect-head h2 em { font-style: normal; font-weight: 300; } .sect-head p { font-size: 17px; font-weight: 300; color: var(--fg-2); line-height: 1.55; max-width: 620px; margin: 0 auto; } /* ========== INDICAÇÕES (motivações) ========== */ .indic { background: var(--bg-soft); } .indic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; } .indic-card { background: #fff; border-radius: 22px; padding: 30px 28px; border: 1px solid rgba(95,32,95,.08); position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s; } .indic-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -20px rgba(95,32,95,.25); } .indic-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent, var(--an-purple-900)); } .indic-card .pill { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--accent-soft, rgba(95,32,95,.08)); color: var(--accent, var(--an-purple-900)); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; } .indic-card h4 { font-size: 22px; font-weight: 700; line-height: 1.1; margin: 0 0 12px; } .indic-card p { font-size: 14px; color: var(--fg-2); line-height: 1.6; margin: 0 0 14px; font-weight: 350; } .indic-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; } .indic-card ul li { font-size: 13px; color: var(--fg-1); padding-left: 18px; position: relative; font-weight: 400; } .indic-card ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 999px; background: var(--accent, var(--an-purple-900)); } /* ========== ABORDAGEM ========== */ .approach { background: var(--bg-page); } .approach-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; } .approach h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.05; margin: 12px 0 18px; } .approach h2 em { font-style: normal; font-weight: 300; } .approach p { font-size: 16px; color: var(--fg-2); line-height: 1.65; margin: 0 0 16px; font-weight: 350; } .approach-portrait { aspect-ratio: 4/5; border-radius: 32px; background: radial-gradient(circle at 30% 25%, #FDE4B0 0%, #FCC41E 50%, #CC9500 100%); position: relative; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(47,15,47,.4); display: flex; align-items: flex-end; justify-content: center; } .approach-portrait img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; position: relative; z-index: 2; } .approach-portrait::before { content: ""; position: absolute; inset: auto 0 0 0; height: 50%; background: radial-gradient(ellipse at 50% 100%, rgba(47,15,47,.3), transparent 65%); z-index: 1; } .approach-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; } .pillar-card { background: var(--bg-soft); border-radius: 18px; padding: 22px; border: 1px solid rgba(95,32,95,.08); } .pillar-card .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--an-purple-900); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; } .pillar-card .ico svg { width: 22px; height: 22px; stroke-width: 1.75; } .pillar-card h5 { font-family: var(--font-display); font-weight: 700; color: var(--an-purple-900); font-size: 15px; margin: 0 0 6px; } .pillar-card p { font-size: 13px; color: var(--fg-2); line-height: 1.5; margin: 0; font-weight: 400; } /* ========== O QUE INCLUI A CONSULTA ========== */ .included { background: var(--an-purple-900); color: #fff; } .included .sect-head h2 { color: #fff; } .included .sect-head h2 em { color: var(--an-yellow-500); } .included .sect-head p { color: rgba(255,255,255,.78); } .inc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; } .inc-card { background: rgba(255,255,255,.04); border: 1px solid rgba(252,196,30,.18); border-radius: 20px; padding: 26px; } .inc-card .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--an-yellow-500); color: var(--an-purple-900); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; } .inc-card .ico svg { width: 24px; height: 24px; stroke-width: 2; } .inc-card h4 { color: #fff; font-size: 17px; font-weight: 700; line-height: 1.15; margin: 0 0 8px; } .inc-card p { font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.55; margin: 0; font-weight: 350; } /* ========== JORNADA / COMO FUNCIONA ========== */ .journey { background: var(--bg-soft); } .journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; } .journey-grid::before { content: ""; position: absolute; left: 7%; right: 7%; top: 32px; border-top: 2px dashed rgba(95,32,95,.18); z-index: 0; } .j-step { position: relative; z-index: 1; text-align: center; } .j-step .num { width: 64px; height: 64px; border-radius: 999px; background: #fff; color: var(--an-purple-900); font-family: var(--font-display); font-weight: 700; font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border: 2px solid var(--an-purple-900); box-shadow: 0 10px 28px -8px rgba(95,32,95,.25); } .j-step h5 { font-family: var(--font-display); font-weight: 700; color: var(--an-purple-900); font-size: 17px; margin: 0 0 8px; } .j-step p { font-size: 13px; color: var(--fg-2); line-height: 1.55; margin: 0; font-weight: 400; } /* ========== AUTORA / CREDENCIAIS ========== */ .credentials { background: var(--bg-page); } .cred-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; } .cred-portrait { aspect-ratio: 4/5; border-radius: 32px; background: radial-gradient(circle at 30% 25%, #EED6EE 0%, #B088C9 55%, #5F205F 100%); position: relative; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(95,32,95,.4); display: flex; align-items: flex-end; justify-content: center; } .cred-portrait img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; position: relative; z-index: 2; } .cred-portrait::before { content: ""; position: absolute; inset: auto 0 0 0; height: 50%; background: radial-gradient(ellipse at 50% 100%, rgba(47,15,47,.4), transparent 65%); z-index: 1; } .cred-grid h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.05; margin: 12px 0 12px; } .cred-grid h2 em { font-style: normal; font-weight: 300; } .cred-grid .crm-line { display: inline-flex; align-items: center; gap: 10px; background: rgba(95,32,95,.06); padding: 7px 14px; border-radius: 999px; font-size: 13px; color: var(--an-purple-900); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 18px; } .cred-grid .crm-line .num { font-family: var(--font-mono); font-weight: 500; } .cred-grid p { font-size: 16px; color: var(--fg-2); line-height: 1.65; margin: 0 0 14px; font-weight: 350; } .cred-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-top: 22px; } .cred-list li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--fg-1); font-weight: 500; } .cred-list li::before { content: ""; width: 18px; height: 18px; border-radius: 999px; background: var(--an-orange-500); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml;utf8,"); background-size: 60%; background-position: center; background-repeat: no-repeat; } /* ========== PARA QUEM ========== */ .audience { background: #fff; padding: 84px 0; } .aud-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 980px; margin: 0 auto; } .aud-card { background: var(--bg-page); border-radius: 22px; padding: 28px 30px; display: flex; gap: 18px; align-items: flex-start; border: 1px solid rgba(95,32,95,.08); } .aud-card .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--an-purple-900); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .aud-card .ico svg { width: 22px; height: 22px; stroke-width: 2; } .aud-card h4 { font-family: var(--font-display); color: var(--an-purple-900); font-weight: 700; font-size: 17px; margin: 0 0 6px; line-height: 1.15; } .aud-card p { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; font-weight: 400; } /* ========== FAQ ========== */ .faq { padding: 84px 0; background: var(--bg-soft); } .faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; } .faq-item { background: #fff; border-radius: 18px; padding: 24px 28px; border: 1px solid rgba(95,32,95,.08); } .faq-item summary { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--an-purple-900); list-style: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item summary::after { content: "+"; font-family: var(--font-display); font-weight: 300; font-size: 28px; color: var(--an-orange-500); line-height: 0.6; transition: transform .25s; } .faq-item[open] summary::after { transform: rotate(45deg); } .faq-item p { margin: 16px 0 0; font-size: 15px; color: var(--fg-2); line-height: 1.6; font-weight: 400; } /* ========== CTA FINAL ========== */ .cta-final { padding: 96px 0; background: var(--an-purple-900); color: #fff; text-align: center; position: relative; overflow: hidden; } .cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 30%, rgba(252,196,30,.18), transparent 40%), radial-gradient(circle at 85% 70%, rgba(37,211,102,.18), transparent 40%); } .cta-final .wrap { position: relative; z-index: 1; max-width: 720px; } .cta-final h2 { font-size: clamp(36px, 5vw, 60px); line-height: 1.04; color: #fff; font-weight: 700; margin: 0 0 18px; } .cta-final h2 em { font-style: normal; font-weight: 300; color: var(--an-yellow-500); } .cta-final p { font-size: 18px; color: rgba(255,255,255,.85); font-weight: 300; max-width: 560px; margin: 0 auto 32px; line-height: 1.55; } .cta-final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; } .cta-note { font-size: 13px; color: rgba(255,255,255,.6); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 20px; } .cta-note strong { color: var(--an-yellow-500); font-weight: 700; } /* ========== FOOTER ========== */ .footer { padding: 56px 0 28px; background: #2B1A2E; color: rgba(255,255,255,.7); } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; } .footer h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--an-yellow-500); font-weight: 700; margin: 0 0 14px; } .footer a { display: block; font-size: 13px; color: rgba(255,255,255,.78); margin-bottom: 7px; transition: color .15s; } .footer a:hover { color: var(--an-yellow-500); } .footer .brand-col img { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); } .footer .brand-col p { font-size: 13px; line-height: 1.55; max-width: 280px; font-weight: 300; margin: 0; } .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 8px; } /* ========== FAB ========== */ .fab-wa { position: fixed; bottom: 22px; right: 22px; z-index: 80; width: 60px; height: 60px; border-radius: 999px; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 36px -10px rgba(37,211,102,.6); transition: transform .2s; animation: pulse 2.4s infinite; } .fab-wa:hover { transform: scale(1.06); } .fab-wa svg { width: 30px; height: 30px; } @keyframes pulse { 0% { box-shadow: 0 14px 36px -10px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 14px 36px -10px rgba(37,211,102,.6), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 14px 36px -10px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,0); } } /* ========== RESPONSIVE ========== */ @media (max-width: 980px) { .hero-grid, .approach-grid, .cred-grid { grid-template-columns: 1fr; } .strip .wrap, .indic-grid, .inc-grid, .journey-grid, .aud-grid { grid-template-columns: 1fr 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } .nav-links { display: none; } .journey-grid::before { display: none; } .approach-pillars { grid-template-columns: 1fr; } .cred-list { grid-template-columns: 1fr; } } @media (max-width: 600px) { .strip .wrap, .indic-grid, .inc-grid, .journey-grid, .aud-grid, .footer-grid { grid-template-columns: 1fr; } .sect, .audience, .faq, .cta-final { padding: 64px 0; } }