:root {
  --white: #ffffff;
  --black: #111111;
  --graphite: #292929;
  --muted: #666a70;
  --line: #ececef;
  --red: #c1121f;
  --red-dark: #8f0d16;
  --red-light: #fcebed;
  --soft: #f7f7f8;
  --shadow: 0 20px 60px rgba(17, 17, 17, .08);
  --radius: 16px;
  --container: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body { margin: 0; font-family: "Inter", sans-serif; color: var(--graphite); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--red); color: #fff; }

.skip-link { position: fixed; top: -100px; left: 16px; z-index: 9999; background: var(--black); color: #fff; padding: 12px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid rgba(193, 18, 31, .38); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.soft-red { background: linear-gradient(120deg, #fff 0%, var(--red-light) 100%); }
.soft-gray { background: var(--soft); }
.dark-section { background: var(--black); color: #fff; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h); background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(17,17,17,.06); backdrop-filter: blur(14px); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 24px rgba(17,17,17,.07); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 174px; }
.brand-mark { color: var(--red); width: 42px; height: 42px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: grid; line-height: 1; letter-spacing: .08em; }
.brand-copy strong { font: 800 18px/1 "Manrope", sans-serif; color: var(--black); }
.brand-copy small { font: 700 9px/1.5 "Inter", sans-serif; letter-spacing: .27em; color: var(--red); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 22px; flex: 1; }
.main-nav a { font-size: 13px; font-weight: 600; color: #353535; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--red); transition: width .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-cta { white-space: nowrap; padding: 12px 17px !important; font-size: 12px !important; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--black); margin: 6px 0; transition: .25s ease; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 13px 22px; border-radius: 10px; border: 1px solid transparent; font-weight: 700; font-size: 14px; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 26px rgba(193,18,31,.16); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 14px 34px rgba(143,13,22,.22); }
.btn-secondary { background: #fff; border-color: #d7d7da; color: var(--black); }
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.btn-light { background: #fff; color: var(--black); }
.btn-light:hover { color: var(--red); }
.btn-outline-light { border-color: rgba(255,255,255,.36); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-full { width: 100%; }
.btn-small { min-height: 40px; padding: 9px 15px; }

.hero { min-height: 760px; padding: 154px 0 82px; display: flex; align-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 83% 24%, rgba(193,18,31,.06), transparent 30%), #fff; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 62px; align-items: center; position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .14em; color: var(--red); font-size: 11px; font-weight: 800; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: #ff6670; }
h1, h2, h3 { font-family: "Manrope", sans-serif; color: var(--black); margin-top: 0; }
h1 { font-size: clamp(42px, 4.6vw, 68px); line-height: 1.02; letter-spacing: -.045em; margin: 20px 0 24px; max-width: 780px; }
h2 { font-size: clamp(32px, 3.5vw, 50px); line-height: 1.08; letter-spacing: -.035em; margin-bottom: 20px; }
h3 { font-size: 18px; line-height: 1.25; }
.hero-copy > p { max-width: 670px; color: #5d6065; margin: 0 0 14px; }
.hero-lead { font-size: 18px; }
.service-line { margin: 26px 0; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; font-size: 12px; font-weight: 700; color: #45474b; }
.service-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.trust-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--red); background: var(--red-light); font-weight: 800; }
.hero-trust p { margin: 0; line-height: 1.3; font-size: 13px; }
.hero-trust small { color: var(--muted); }
.image-frame { position: relative; border-radius: 22px 22px 60px 22px; overflow: visible; }
.image-frame::before { content: ""; position: absolute; inset: 16px -16px -16px 16px; border: 2px solid var(--red); border-radius: 22px 22px 60px 22px; z-index: -1; opacity: .55; }
.image-frame img { width: 100%; height: 555px; object-fit: cover; border-radius: inherit; filter: saturate(.75) contrast(.98); box-shadow: var(--shadow); }
.hero-floating-card { position: absolute; background: #fff; box-shadow: 0 18px 50px rgba(17,17,17,.14); border: 1px solid #eee; border-radius: 13px; padding: 13px 16px; display: flex; align-items: center; gap: 11px; min-width: 190px; }
.hero-floating-card small, .hero-floating-card strong { display: block; }
.hero-floating-card small { color: var(--muted); font-size: 10px; }
.hero-floating-card strong { color: var(--black); font: 700 12px/1.3 "Manrope", sans-serif; }
.card-growth { left: -34px; bottom: 46px; }
.card-support { right: -24px; top: 48px; }
.mini-icon { width: 33px; height: 33px; border-radius: 9px; display: grid; place-items: center; background: var(--red-light); color: var(--red); font-weight: 800; }
.status-dot { width: 10px; height: 10px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 6px var(--red-light); margin: 0 10px; }
.hero-shape { position: absolute; pointer-events: none; border: 1px solid rgba(193,18,31,.18); transform: rotate(35deg); }
.hero-shape-one { width: 230px; height: 60px; right: -40px; top: 180px; }
.hero-shape-two { width: 120px; height: 34px; left: -38px; bottom: 85px; }

.section-heading { margin-bottom: 48px; }
.section-heading.centered { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: 50px; }
.section-heading.centered p { max-width: 680px; margin-inline: auto; }
.section-heading.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.section-heading p, .about-copy p, .tech-copy p, .faq-intro p { color: var(--muted); }
.four-cols { grid-template-columns: repeat(4, 1fr); }
.feature-grid { display: grid; gap: 18px; }
.feature-card { padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .25s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(193,18,31,.36); box-shadow: var(--shadow); }
.icon-box, .service-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--red); background: var(--red-light); border-radius: 12px; font-weight: 800; margin-bottom: 22px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin: 0; font-size: 14px; color: var(--muted); }

.problems-grid { display: grid; grid-template-columns: 1fr .87fr; gap: 82px; align-items: center; }
.problem-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 28px 0; }
.problem-list span { font-size: 14px; font-weight: 600; color: #383a3d; }
.strong-copy { color: var(--black) !important; font-weight: 700; max-width: 630px; }
.dashboard-card { min-height: 440px; border-radius: 24px; background: var(--black); color: #fff; padding: 34px; position: relative; overflow: hidden; box-shadow: 0 30px 70px rgba(17,17,17,.18); }
.dash-top { display: flex; align-items: center; justify-content: space-between; }
.dash-top strong { font: 700 16px "Manrope", sans-serif; }
.dash-top span { font-size: 10px; padding: 7px 10px; background: rgba(255,255,255,.09); border-radius: 999px; }
.dash-chart { height: 170px; margin: 36px 0 25px; border-bottom: 1px solid rgba(255,255,255,.16); display: flex; align-items: end; gap: 13px; }
.dash-chart span { flex: 1; height: var(--h); background: linear-gradient(to top, var(--red-dark), #ef3d48); border-radius: 5px 5px 0 0; }
.dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-stats > div { border: 1px solid rgba(255,255,255,.11); border-radius: 12px; padding: 16px; }
.dash-stats small, .dash-stats strong { display: block; }
.dash-stats small { color: #aaa; }
.dash-stats strong { margin-top: 4px; font-size: 13px; }
.dash-lines { display: grid; gap: 7px; margin-top: 24px; }
.dash-lines i { height: 6px; border-radius: 6px; background: rgba(255,255,255,.08); }
.dash-lines i:nth-child(2) { width: 78%; }.dash-lines i:nth-child(3) { width: 55%; }
.wing-lines { position: absolute; right: -48px; bottom: -15px; width: 180px; height: 100px; transform: rotate(-16deg); }
.wing-lines i { display: block; height: 1px; background: rgba(255,255,255,.12); margin: 20px 0; transform: skewX(-34deg); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: #fff; transition: .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: var(--shadow); }
.service-card p { min-height: 112px; color: var(--muted); font-size: 14px; }
.service-card a { color: var(--red); font-size: 13px; font-weight: 800; }
.service-card a span { transition: margin .2s ease; }.service-card a:hover span { margin-left: 5px; }
.section-cta { text-align: center; margin-top: 38px; }

.about-section { padding-top: 30px; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 82px; align-items: center; }
.about-media { position: relative; }
.about-media img { height: 575px; width: 100%; object-fit: cover; border-radius: 18px 18px 18px 80px; filter: grayscale(.1) saturate(.7); }
.about-badge { position: absolute; right: -28px; bottom: 34px; width: min(330px, 80%); background: #fff; border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow); border-left: 4px solid var(--red); }
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { font-family: "Manrope"; color: var(--black); }.about-badge span { font-size: 11px; color: var(--muted); margin-top: 3px; }
.values-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0; }
.values-list span { padding: 8px 12px; background: var(--red-light); color: var(--red-dark); border-radius: 999px; font-size: 11px; font-weight: 800; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mission-vision > div { padding: 16px; border: 1px solid var(--line); border-radius: 12px; }
.mission-vision small { color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.mission-vision p { font-size: 12px; margin: 7px 0 0; }

.team-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.dark-section h2, .dark-section h3 { color: #fff; }
.team-copy p { color: #b9b9bd; max-width: 660px; }
.team-placeholder { display: grid; padding: 16px 0; margin: 15px 0 24px; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.team-placeholder strong { font: 700 14px "Manrope"; }.team-placeholder span { color: #888; font-size: 11px; margin-top: 3px; }
.team-visual { min-height: 330px; border-radius: 20px; border: 1px solid rgba(255,255,255,.1); position: relative; display: grid; place-items: center; background: radial-gradient(circle at center, rgba(193,18,31,.22), transparent 50%); overflow: hidden; }
.team-image { min-height: 0; padding: 22px; }
.team-section-image { width: min(100%, 460px); height: auto; margin: 0 auto; object-fit: contain; border-radius: 14px; box-shadow: 0 16px 34px rgba(0,0,0,.22); }
.team-card { position: relative; z-index: 2; width: min(380px, 82%); background: #fff; color: var(--black); display: flex; align-items: center; gap: 18px; border-radius: 14px; padding: 18px; }
.avatar-placeholder { width: 72px; height: 72px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; background: var(--red); color: #fff; font: 800 18px "Manrope"; }
.team-card small, .team-card strong, .team-card span { display: block; }.team-card small { color: var(--red); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }.team-card strong { margin: 4px 0 2px; }.team-card span { color: var(--muted); font-size: 11px; }
.strategy-lines { position: absolute; inset: 0; opacity: .16; }.strategy-lines i { position: absolute; width: 130%; height: 1px; background: #fff; left: -15%; transform: rotate(-18deg); }.strategy-lines i:nth-child(1){top:20%}.strategy-lines i:nth-child(2){top:38%}.strategy-lines i:nth-child(3){top:58%}.strategy-lines i:nth-child(4){top:78%}

.difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.difference-card { background: #fff; padding: 34px 30px; min-height: 210px; }
.difference-card > span { color: var(--red); font: 800 12px "Manrope"; }
.difference-card h3 { margin: 32px 0 10px; }.difference-card p { color: var(--muted); font-size: 13px; margin: 0; }
.steps-section { background: linear-gradient(180deg, #fff, #fafafa); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; gap: 0; }
.steps::before { content: ""; position: absolute; left: 8%; right: 8%; top: 25px; height: 1px; background: #ddd; }
.step { position: relative; text-align: center; padding: 0 16px; }
.step-num { position: relative; z-index: 2; margin-inline: auto; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 2px solid var(--red); color: var(--red); font: 800 11px "Manrope"; }
.step h3 { margin: 20px 0 9px; font-size: 15px; }.step p { color: var(--muted); font-size: 12px; }

.switch-section { padding-top: 0; }
.switch-card { padding: 46px; border-radius: 24px; background: var(--red); color: #fff; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; position: relative; overflow: hidden; }
.switch-card::after { content: ""; position: absolute; width: 300px; height: 100px; border: 1px solid rgba(255,255,255,.15); right: -75px; top: -30px; transform: rotate(28deg); }
.switch-card h2 { color: #fff; font-size: clamp(30px, 3vw, 44px); margin-bottom: 12px; }.switch-card p { color: #ffe9eb; margin: 0; }
.switch-actions { position: relative; z-index: 2; }.switch-actions p { margin-bottom: 18px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-card { background: #fff; border-radius: 14px; padding: 25px; border: 1px solid transparent; transition: .2s; }.audience-card:hover { border-color: rgba(193,18,31,.28); transform: translateY(-3px); }.audience-card > span { color: var(--red); font: 800 11px "Manrope"; }.audience-card h3 { margin: 24px 0 8px; }.audience-card p { font-size: 13px; color: var(--muted); margin: 0; }

.tech-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.note { font-size: 12px !important; padding-left: 12px; border-left: 2px solid var(--red); }
.tech-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.tech-features > div { border: 1px solid var(--line); border-radius: 14px; padding: 22px; display: flex; align-items: center; gap: 15px; }.tech-features > div > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: var(--red-light); color: var(--red); font-weight: 800; }.tech-features p { margin: 0; }.tech-features strong, .tech-features small { display: block; }.tech-features strong { color: var(--black); font-size: 13px; }.tech-features small { color: var(--red); font-size: 9px; margin-top: 3px; font-weight: 800; }

.faq-section { background: #fcfcfc; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }.faq-intro { position: sticky; top: 120px; }.text-link { color: var(--red); font-weight: 800; font-size: 13px; }
.faq-item { border-bottom: 1px solid var(--line); }.faq-item button { width: 100%; border: 0; background: transparent; padding: 21px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--black); text-align: left; font: 700 15px/1.4 "Manrope"; }.faq-item button i { font-style: normal; width: 30px; height: 30px; border-radius: 50%; border: 1px solid #ddd; display: grid; place-items: center; transition: .2s; }.faq-item.active button i { transform: rotate(45deg); border-color: var(--red); color: var(--red); }.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; }.faq-item.active .faq-answer { grid-template-rows: 1fr; }.faq-item.active .faq-answer > p { padding-bottom: 20px; }

.final-cta { background: var(--black); padding: 88px 0; position: relative; overflow: hidden; }.final-cta::after { content: ""; position: absolute; width: 440px; height: 120px; border: 1px solid rgba(255,255,255,.07); right: -130px; bottom: 0; transform: rotate(-25deg); }.final-cta-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; position: relative; z-index: 2; }.final-cta h2 { color: #fff; margin: 14px 0 14px; }.final-cta p { color: #aaa; max-width: 700px; }.final-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; max-width: 320px; margin-left: auto; }

.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 78px; align-items: start; }.contact-list { display: grid; gap: 10px; margin: 30px 0; }.contact-list > div { display: flex; align-items: center; gap: 13px; }.contact-list > div > span { width: 38px; height: 38px; border-radius: 10px; background: var(--red-light); color: var(--red); display: grid; place-items: center; font-weight: 800; }.contact-list p { margin: 0; }.contact-list small, .contact-list strong { display: block; }.contact-list small { color: var(--muted); font-size: 10px; }.contact-list strong { color: var(--black); font-size: 12px; }
.map-placeholder { min-height: 130px; display: grid; place-items: center; text-align: center; padding: 20px; background: var(--soft); border: 1px dashed #d7d7d7; border-radius: 14px; color: var(--muted); }.map-placeholder > span { font-size: 24px; color: var(--red); }.map-placeholder strong { color: var(--black); }.map-placeholder small { max-width: 420px; font-size: 9px; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px; box-shadow: var(--shadow); }.form-heading small { color: var(--red); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }.form-heading h3 { font-size: 24px; margin: 4px 0 24px; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.contact-form label { display: grid; gap: 6px; margin-bottom: 13px; font-size: 11px; font-weight: 700; color: #333; }.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #ddd; border-radius: 9px; padding: 12px 13px; background: #fff; color: var(--black); transition: border-color .2s, box-shadow .2s; }.contact-form textarea { resize: vertical; }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(193,18,31,.08); outline: 0; }.consent { display: flex !important; grid-template-columns: 18px 1fr; align-items: flex-start; gap: 8px !important; font-weight: 500 !important; color: var(--muted) !important; }.consent input { width: 16px; margin-top: 2px; }.consent a { color: var(--red); text-decoration: underline; }.form-status { min-height: 20px; margin: 10px 0 0; text-align: center; font-size: 11px; color: var(--red); }

.site-footer { background: #0d0d0e; color: #aaa; padding-top: 68px; }.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .95fr .9fr; gap: 48px; padding-bottom: 45px; }.brand-light .brand-copy strong { color: #fff; }.brand-light .brand-copy small { color: #ff6570; }.footer-brand > p { max-width: 270px; font-size: 13px; }.footer-data { list-style: none; padding: 0; margin: 20px 0 0; font-size: 10px; line-height: 1.8; }.site-footer h3 { color: #fff; font-size: 13px; margin-bottom: 18px; }.footer-links { display: grid; gap: 10px; }.footer-links a { font-size: 11px; transition: color .2s; }.footer-links a:hover { color: #fff; }.social-placeholder { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }.social-placeholder span { font-size: 9px; padding: 5px 7px; border: 1px solid rgba(255,255,255,.1); border-radius: 6px; }.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); min-height: 66px; display: flex; align-items: center; justify-content: space-between; font-size: 10px; }.footer-bottom a { color: #fff; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; z-index: 900; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; box-shadow: 0 15px 35px rgba(193,18,31,.32); transition: .2s; }.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); background: var(--red-dark); }.whatsapp-float svg { width: 29px; height: 29px; }
.cookie-banner { position: fixed; z-index: 1200; left: 50%; bottom: 18px; transform: translate(-50%, calc(100% + 60px)); width: min(calc(100% - 36px), 900px); background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 20px 60px rgba(17,17,17,.18); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: transform .35s ease; }.cookie-banner.show { transform: translate(-50%, 0); }.cookie-banner strong { color: var(--black); font: 700 12px "Manrope"; }.cookie-banner p { margin: 3px 0 0; font-size: 10px; color: var(--muted); }.cookie-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }.cookie-actions a { font-size: 10px; color: var(--red); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }.reveal.visible { opacity: 1; transform: none; }.delay-1 { transition-delay: .08s; }.delay-2 { transition-delay: .16s; }.delay-3 { transition-delay: .24s; }

.legal-page { min-height: 100vh; background: #fafafa; }.legal-header { padding: 28px 0; background: #fff; border-bottom: 1px solid var(--line); }.legal-main { padding: 80px 0; }.legal-card { max-width: 850px; margin: auto; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 46px; }.legal-card h1 { font-size: clamp(34px, 4vw, 52px); }.legal-card h2 { font-size: 23px; margin-top: 34px; }.legal-card p, .legal-card li { color: var(--muted); font-size: 14px; }

@media (max-width: 1060px) {
  .main-nav { gap: 14px; }.main-nav a { font-size: 11px; }.header-cta { display: none; }
  .hero-grid { gap: 36px; }.image-frame img { height: 500px; }.four-cols { grid-template-columns: repeat(2,1fr); }.steps { grid-template-columns: repeat(3,1fr); gap: 34px 0; }.steps::before { display: none; }
}

@media (max-width: 820px) {
  .team-image { padding: 18px; min-height: 0; }
  .team-section-image { width: min(100%, 620px); }
  :root { --header-h: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .menu-toggle { display: block; margin-left: auto; order: 3; }
  .main-nav { position: absolute; top: var(--header-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 18px 40px rgba(17,17,17,.08); display: grid; padding: 16px 20px 24px; gap: 0; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .25s ease; }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { padding: 11px 0; font-size: 13px; border-bottom: 1px solid #f4f4f4; }.main-nav a::after { display: none; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }.menu-toggle.active span:nth-child(2) { opacity: 0; }.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { padding-top: 126px; min-height: auto; }.hero-grid, .problems-grid, .about-grid, .team-grid, .tech-grid, .faq-grid, .contact-grid, .final-cta-inner, .switch-card, .section-heading.split { grid-template-columns: 1fr; gap: 42px; }
  h1 { font-size: clamp(38px, 10vw, 52px); }.hero-media { order: 2; }.image-frame img { height: 470px; }.card-growth { left: 12px; bottom: 20px; }.card-support { right: 12px; top: 20px; }
  .services-grid, .difference-grid, .audience-grid { grid-template-columns: 1fr 1fr; }.difference-grid { gap: 1px; }
  .about-section { padding-top: 0; }.about-badge { right: 15px; }.faq-intro { position: static; }.switch-card { padding: 36px; }.final-actions { max-width: none; margin: 0; }.footer-grid { grid-template-columns: 1.3fr 1fr; }.form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .brand { min-width: auto; }.brand-mark { width: 38px; height: 38px; }.brand-copy strong { font-size: 16px; }
  .hero { padding: 112px 0 64px; }.hero-copy > p { font-size: 14px; }.hero-lead { font-size: 16px !important; }.service-line { display: grid; grid-template-columns: 1fr 1fr; }.service-line i { display: none; }.hero-actions, .hero-actions .btn { width: 100%; }.image-frame img { height: 390px; }.hero-floating-card { position: static; margin-top: 9px; width: 100%; }.image-frame::before { inset: 10px -8px -8px 10px; }
  .four-cols, .services-grid, .difference-grid, .audience-grid, .tech-features, .mission-vision, .problem-list, .dash-stats { grid-template-columns: 1fr; }.feature-grid, .services-grid { gap: 12px; }.service-card p { min-height: 0; }.difference-grid { display: grid; }.difference-card { min-height: auto; }.steps { grid-template-columns: 1fr; gap: 22px; }.step { text-align: left; display: grid; grid-template-columns: 55px 1fr; column-gap: 14px; }.step-num { grid-row: 1 / span 2; }.step h3 { margin: 6px 0 2px; }.step p { margin: 0; }.switch-card { padding: 28px 22px; }.about-media img { height: 430px; }.about-badge { position: static; width: 100%; margin-top: 10px; }.dashboard-card { min-height: 380px; padding: 26px; }.contact-form { padding: 24px 18px; }.footer-grid { grid-template-columns: 1fr; gap: 34px; }.footer-bottom { padding: 16px 0; flex-direction: column; gap: 7px; align-items: flex-start; }.cookie-banner { align-items: flex-start; flex-direction: column; }.cookie-actions { width: 100%; justify-content: space-between; }.whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }.legal-card { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Saiba mais expansível dos cards de serviços */
.service-details {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.service-details > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  transition: color .2s ease;
}
.service-details > summary::-webkit-details-marker { display: none; }
.service-details > summary::marker { display: none; content: ""; }
.service-details > summary:hover { color: var(--red-dark); }
.service-details > summary span {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 23px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.service-details[open] > summary span {
  transform: rotate(45deg);
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.service-details-content {
  padding-top: 14px;
}
.service-details-content ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.service-details-content li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Correção final de proporções das imagens principais */
.site-header .brand {
  min-width: 110px;
  flex: 0 0 auto;
  line-height: 0;
}
.site-header .brand-logo {
  display: block;
  width: 150px;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
}
.hero-copy,
.hero-media {
  min-width: 0;
}
.hero-media,
.hero-banner-frame {
  width: 100%;
  max-width: 100%;
}
.hero-banner-frame {
  overflow: hidden;
  border-radius: 18px;
}
.hero-banner-frame::before {
  display: none;
}
.hero-banner-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
  border-radius: 18px;
  filter: none;
}

.site-footer .brand {
  min-width: 0;
  line-height: 0;
}
.site-footer .brand-logo-footer {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 820px) {
  .site-header .brand {
    min-width: 100px;
  }
  .site-header .brand-logo {
    width: 150px;
    max-width: 150px;
  }
  .hero-media {
    order: -1;
  }
  .hero-banner-frame img {
    height: auto !important;
  }
  .site-footer .brand-logo-footer {
    width: 190px;
  }
}

@media (max-width: 560px) {
  .site-header .brand-logo {
    width: 150px;
    max-width:150px;
  }
  .site-footer .brand-logo-footer {
    width: 175px;
  }
}

/* Correção definitiva da hero no mobile: imagem primeiro, texto depois */
@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 30px;
  }

  .hero-media {
    order: 1 !important;
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    order: 2 !important;
    width: 100%;
    max-width: 100%;
  }

  .hero-banner-frame,
  .hero-banner-frame img {
    width: 100%;
    max-width: 100%;
  }

  .hero-banner-frame img {
    height: auto !important;
    object-fit: contain;
  }
}

/* Correção de overflow horizontal no mobile */
@media (max-width: 820px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body {
    position: relative;
  }

  main,
  header,
  footer,
  section {
    max-width: 100%;
  }

  .container {
    width: calc(100% - 28px);
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
  }

  .header-inner,
  .hero-grid,
  .hero-copy,
  .hero-media,
  .hero-banner-frame,
  .services-grid,
  .feature-grid,
  .about-grid,
  .team-grid,
  .difference-grid,
  .steps,
  .switch-card,
  .audience-grid,
  .tech-grid,
  .faq-grid,
  .contact-grid,
  .final-cta-inner,
  .footer-grid,
  .contact-form,
  .form-row {
    min-width: 0;
    max-width: 100%;
  }

  img,
  svg,
  video,
  canvas,
  iframe {
    max-width: 100%;
  }

  .hero,
  .final-cta,
  .site-footer,
  .team-section,
  .switch-card,
  .dashboard-card {
    overflow-x: hidden;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .btn,
  .footer-links a,
  .service-details-content,
  .service-details-content li {
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  p,
  a,
  li,
  span {
    overflow-wrap: break-word;
    word-break: normal;
  }
}


/* Rodapé: pagamentos e segurança */
.footer-trust-column { min-width: 0; }
.footer-payment-block h3 { margin-bottom: 14px; }
.payment-flags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-flag {
  min-width: 54px;
  height: 34px;
  padding: 0 9px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #161616;
  font: 800 10px/1 "Inter", sans-serif;
  letter-spacing: -.02em;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
}
.flag-visa { font-size: 13px; font-style: italic; letter-spacing: -.08em; }
.flag-master { width: 66px; padding: 0; }
.flag-master i, .flag-master b { position: absolute; width: 18px; height: 18px; border-radius: 50%; top: 5px; }
.flag-master i { left: 17px; background: #e64634; }
.flag-master b { left: 29px; background: #f3a51d; opacity: .92; }
.flag-master em { position: absolute; bottom: 3px; font-size: 5.5px; font-style: normal; font-weight: 700; color: #222; }
.flag-elo { font-size: 15px; text-transform: lowercase; letter-spacing: -.1em; }
.flag-pix { gap: 5px; font-size: 10px; }
.flag-pix > span { color: #18a88a; font-size: 10px; transform: rotate(45deg); display: inline-block; }
.secure-site-badge {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
}
.secure-icon { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: rgba(193,18,31,.16); color: #ff5b66; flex: 0 0 auto; }
.secure-icon svg { width: 23px; height: 23px; }
.secure-site-badge strong, .secure-site-badge small { display: block; }
.secure-site-badge strong { color: #fff; font: 700 12px/1.2 "Manrope", sans-serif; }
.secure-site-badge small { color: #9d9da2; font-size: 9px; margin-top: 3px; }
@media (max-width: 560px) {
  .payment-flags { gap: 7px; }
  .payment-flag { min-width: 50px; height: 32px; }
  .secure-site-badge { width: 100%; max-width: 250px; }
}
