:root {
  --ink: #071f27;
  --teal: #0a5967;
  --coral: #ef735f;
  --cream: #f3eee5;
  --paper: #fbf8f2;
  --line: rgba(7, 31, 39, .14);
  --safe-top: max(18px, env(safe-area-inset-top));
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--ink); }
body { margin: 0; background: var(--paper); color: var(--ink); overflow-x: hidden; }
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 12px 16px; background: white; color: var(--ink); }
.skip-link:focus { top: 12px; }

.loader { position: fixed; inset: 0; z-index: 90; display: grid; place-content: center; gap: 22px; background: var(--ink); color: white; transition: opacity .7s ease, visibility .7s; }
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-brand { display: flex; align-items: center; justify-content: center; gap: 10px; letter-spacing: -.04em; font-size: 25px; }
.loader-brand span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-family: Georgia, serif; }
.loader-track { width: min(62vw, 280px); height: 1px; background: rgba(255,255,255,.18); }
.loader-track i { display: block; width: 0; height: 100%; background: var(--coral); transition: width .18s linear; }
.loader small { text-align: center; color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }

.site-header { position: fixed; z-index: 30; top: 0; left: 0; width: 100%; height: 86px; padding: var(--safe-top) clamp(22px, 4vw, 64px) 0; display: flex; align-items: center; justify-content: space-between; color: white; transition: color .35s, background .35s, height .35s, transform .35s; }
.site-header::after { content: ""; position: absolute; left: clamp(22px, 4vw, 64px); right: clamp(22px, 4vw, 64px); bottom: 0; height: 1px; background: rgba(255,255,255,.18); }
.site-header.is-light { color: var(--ink); background: rgba(251,248,242,.88); backdrop-filter: blur(16px); height: 72px; }
.site-header.is-light::after { background: var(--line); }
.brand { display: flex; align-items: center; gap: 9px; font-size: 23px; font-weight: 650; letter-spacing: -.045em; }
.brand img { width: 34px; height: 34px; object-fit: cover; border-radius: 50%; }
.brand span { line-height: .78; }
.brand small { display: block; margin-top: 8px; font-size: 7px; font-weight: 700; letter-spacing: .22em; }
.site-header nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 46px); font-size: 12px; letter-spacing: .05em; }
.nav-cta { padding: 11px 18px; border: 1px solid currentColor; border-radius: 999px; }

.film { position: relative; height: 720svh; background: var(--ink); }
.film-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; background: #061d25; color: white; }
[data-cinema-canvas] { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.film-grade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,21,.66) 0%, rgba(3,16,21,.18) 48%, rgba(3,16,21,.06) 72%), linear-gradient(0deg, rgba(3,16,21,.68), transparent 38%); pointer-events: none; }
.film-vignette { position: absolute; inset: 0; box-shadow: inset 0 0 13vw rgba(0,0,0,.26); pointer-events: none; }
.film-copy { position: absolute; z-index: 3; left: clamp(26px, 8vw, 124px); bottom: clamp(92px, 15vh, 150px); max-width: 820px; opacity: 0; transform: translate3d(0, 36px, 0); pointer-events: none; will-change: opacity, transform; }
.film-copy p { display: flex; align-items: center; gap: 13px; margin: 0 0 20px; font-size: 10px; font-weight: 700; letter-spacing: .22em; }
.film-copy p span { color: var(--coral); }
.film-copy h1, .film-copy h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 7vw, 110px); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.film-copy h2 { font-size: clamp(44px, 6.4vw, 96px); }
.film-copy em { color: #f0b49e; font-weight: 400; }
.film-copy small { display: block; margin-top: 24px; max-width: 480px; color: rgba(255,255,255,.72); font-size: clamp(13px, 1.3vw, 17px); line-height: 1.5; }
.film-index { position: absolute; z-index: 4; right: clamp(22px, 4vw, 64px); bottom: 37px; display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: .12em; }
.film-index i { width: 62px; height: 1px; background: rgba(255,255,255,.22); }
.film-index i b { display: block; width: 0; height: 100%; background: white; }
.film-index small { color: rgba(255,255,255,.42); }
.scroll-cue { position: absolute; z-index: 4; left: clamp(26px, 8vw, 124px); bottom: 34px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; transition: opacity .4s; }
.scroll-cue i { width: 30px; height: 1px; background: currentColor; position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: white; transform: translateX(-100%); animation: cue 1.8s infinite; }
@keyframes cue { 60%,100% { transform: translateX(100%); } }

.editorial, .principles, .experience, .plans, .pilot, .closing, footer { padding-left: clamp(24px, 7vw, 112px); padding-right: clamp(24px, 7vw, 112px); }
.editorial { padding-top: clamp(90px, 13vw, 180px); padding-bottom: clamp(80px, 12vw, 160px); }
.eyebrow { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; margin-bottom: clamp(65px, 9vw, 120px); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.eyebrow i { height: 1px; background: var(--line); }
.eyebrow small { color: rgba(7,31,39,.52); }
.editorial-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(50px, 8vw, 150px); align-items: end; }
.editorial h2, .experience h2, .plans h2, .pilot h2, .closing h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 7.3vw, 112px); line-height: .91; letter-spacing: -.06em; font-weight: 400; }
.editorial h2 em, .experience h2 em, .plans h2 em, .pilot h2 em, .closing h2 em { color: var(--teal); font-weight: 400; }
.editorial-grid > div > p { margin: 0; font-size: clamp(18px, 2vw, 28px); line-height: 1.45; letter-spacing: -.025em; }
.editorial-grid .disclaimer { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 12px; color: rgba(7,31,39,.56); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles article { min-height: 220px; padding: 38px 38px 38px 0; display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-content: end; }
.principles article + article { border-left: 1px solid var(--line); padding-left: 38px; }
.principles span, .section-label { color: var(--coral); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.principles h3 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.principles p { margin: 0; color: rgba(7,31,39,.6); font-size: 13px; line-height: 1.5; }

.experience { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 10vw, 170px); min-height: 100svh; padding-top: clamp(100px, 13vw, 190px); padding-bottom: clamp(100px, 13vw, 190px); background: var(--cream); align-items: center; }
.experience h2 { margin: 28px 0 35px; font-size: clamp(48px, 6vw, 88px); }
.experience-copy > p:not(.section-label) { max-width: 580px; color: rgba(7,31,39,.68); font-size: 17px; line-height: 1.7; }
.feature-list { margin-top: 50px; display: grid; border-top: 1px solid var(--line); }
.feature-list span { display: flex; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.feature-list b { color: var(--coral); font-size: 9px; }
.phone-stage { perspective: 1200px; }
.phone { position: relative; width: min(100%, 360px); margin: auto; padding: 28px 20px 22px; border: 8px solid #092b34; border-radius: 44px; background: #f9f5ee; box-shadow: 0 45px 90px rgba(7,31,39,.25); transform: rotateY(-7deg) rotateX(2deg); }
.phone-island { position: absolute; z-index: 2; top: 8px; left: 50%; width: 94px; height: 23px; border-radius: 20px; background: #092b34; transform: translateX(-50%); }
.app-header { display: flex; align-items: center; gap: 7px; padding: 16px 3px 25px; font-size: 14px; font-weight: 700; }
.app-header b { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--teal); color: white; font-family: Georgia, serif; }
.app-header i { margin-left: auto; width: 25px; height: 25px; border-radius: 50%; border: 1px solid var(--line); }
.hello { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -.04em; }
.hello-sub { color: rgba(7,31,39,.5); }
.pet-card { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 10px; margin: 22px 0 12px; padding: 13px; background: white; border-radius: 17px; box-shadow: 0 8px 24px rgba(7,31,39,.06); }
.pet-photo { display: grid; place-items: center; width: 48px; height: 48px; background: #e7d6bc; border-radius: 14px; }
.pet-card strong, .pet-card small { display: block; }
.pet-card small { margin-top: 4px; color: rgba(7,31,39,.48); font-size: 9px; }
.pet-card > span { color: var(--coral); font-size: 24px; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-grid article { padding: 14px; background: #e8f0ed; border-radius: 16px; }
.app-grid i { display: grid; place-items: center; width: 26px; height: 26px; margin-bottom: 20px; border-radius: 8px; background: var(--teal); color: white; font-style: normal; }
.app-grid strong, .app-grid small { display: block; }
.app-grid strong { font-size: 11px; }
.app-grid small { margin-top: 4px; color: rgba(7,31,39,.5); font-size: 8px; }
.digital-card { position: relative; margin-top: 10px; min-height: 135px; padding: 18px; overflow: hidden; border-radius: 18px; background: var(--teal); color: white; }
.digital-card small, .digital-card strong, .digital-card span { display: block; }
.digital-card small { font-size: 7px; letter-spacing: .12em; opacity: .65; }
.digital-card strong { margin-top: 24px; font-size: 21px; }
.digital-card span { margin-top: 4px; font-size: 8px; opacity: .7; }
.digital-card b { position: absolute; right: 18px; bottom: 18px; display: grid; place-items: center; width: 42px; height: 42px; background: white; color: var(--ink); font-size: 9px; }
.app-nav { display: flex; justify-content: space-around; padding-top: 18px; }
.app-nav i { width: 17px; height: 4px; border-radius: 5px; background: rgba(7,31,39,.2); }
.app-nav i:first-child { background: var(--coral); }

.plans { padding-top: clamp(100px, 13vw, 180px); padding-bottom: clamp(100px, 13vw, 180px); background: var(--paper); }
.plans-head { display: grid; grid-template-columns: 1.1fr .6fr; gap: clamp(50px, 10vw, 170px); align-items: end; }
.plans h2 { margin-top: 28px; font-size: clamp(48px, 6vw, 92px); }
.plans-intro { padding-bottom: 5px; }
.plans-intro p { margin: 0; font-family: Georgia, serif; font-size: clamp(20px, 2vw, 28px); line-height: 1.4; letter-spacing: -.025em; }
.plans-intro small { display: block; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: rgba(7,31,39,.56); font-size: 11px; line-height: 1.6; }
.plans-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(70px, 9vw, 120px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-card { min-width: 0; min-height: 570px; padding: 30px 24px 28px; display: flex; flex-direction: column; background: var(--paper); }
.plan-card + .plan-card { border-left: 1px solid var(--line); }
.plan-card.is-featured { margin-top: -16px; margin-bottom: -16px; padding-top: 46px; padding-bottom: 44px; background: var(--teal); color: white; box-shadow: 0 28px 70px rgba(7,31,39,.18); }
.plan-card.is-future { background: rgba(7,31,39,.035); }
.plan-topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; min-height: 32px; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.plan-topline span { color: var(--coral); }
.plan-topline b { max-width: 110px; color: rgba(7,31,39,.48); text-align: right; font-size: 7px; line-height: 1.4; }
.is-featured .plan-topline span { color: #f0b49e; }
.is-featured .plan-topline b { color: rgba(255,255,255,.58); }
.plan-card h3 { margin: 34px 0 0; font-family: Georgia, serif; font-size: clamp(29px, 2.6vw, 42px); line-height: 1; letter-spacing: -.045em; font-weight: 400; }
.plan-price { margin: 35px 0 0; }
.plan-price small { display: block; margin-bottom: 6px; color: rgba(7,31,39,.48); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.plan-price strong { font-family: Georgia, serif; font-size: clamp(30px, 2.6vw, 42px); font-weight: 400; letter-spacing: -.04em; }
.plan-price span { margin-left: 5px; color: rgba(7,31,39,.5); font-size: 10px; }
.is-featured .plan-price small, .is-featured .plan-price span { color: rgba(255,255,255,.55); }
.plan-card ul { margin: 34px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plan-card li { padding: 13px 0; border-bottom: 1px solid var(--line); color: rgba(7,31,39,.68); font-size: 11px; line-height: 1.35; }
.is-featured ul, .is-featured li { border-color: rgba(255,255,255,.16); }
.is-featured li { color: rgba(255,255,255,.76); }
.plan-card > a { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.is-featured > a { color: #f0b49e; }
.plan-card > a span { font-size: 17px; }
.plans-legal { max-width: 760px; margin: 38px 0 0 auto; color: rgba(7,31,39,.48); font-size: 10px; line-height: 1.6; text-align: right; }

.pilot { padding-top: clamp(100px, 13vw, 180px); padding-bottom: clamp(100px, 13vw, 180px); }
.pilot-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 10vw, 180px); margin-top: 44px; align-items: end; }
.pilot h2 { font-size: clamp(48px, 6vw, 92px); }
.pilot-facts { display: grid; }
.pilot-facts article { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.pilot-facts b { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.pilot-facts span { color: rgba(7,31,39,.55); font-size: 12px; }

.closing { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(60px, 12vw, 190px); padding-top: clamp(90px, 12vw, 170px); padding-bottom: clamp(90px, 12vw, 170px); background: var(--ink); color: white; }
.section-label.light { color: #f0b49e; }
.closing h2 { margin: 30px 0; font-size: clamp(48px, 6vw, 90px); }
.closing h2 em { color: #f0b49e; }
.closing > div > p:last-child { color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.6; }
.closing form { display: grid; gap: 20px; align-content: center; }
.closing label span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.closing input { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.25); outline: 0; background: transparent; color: white; }
.closing input:focus { border-color: var(--coral); }
.closing button { margin-top: 14px; display: flex; justify-content: space-between; padding: 17px 20px; border: 0; background: var(--coral); color: var(--ink); font-weight: 750; cursor: pointer; }
.closing form > small { color: rgba(255,255,255,.4); font-size: 9px; }
.form-status { min-height: 20px; margin: 0; color: #f0b49e; font-size: 12px; }
footer { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; padding-bottom: 30px; background: #04171d; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .08em; }

@media (max-width: 767px) {
  .site-header { height: 70px; padding-left: 18px; padding-right: 18px; }
  .site-header::after { left: 18px; right: 18px; }
  .brand { font-size: 18px; }
  .brand img { width: 29px; height: 29px; }
  .brand small { font-size: 5px; margin-top: 6px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 13px; font-size: 9px; }
  .film { height: 660svh; }
  .film-grade { background: linear-gradient(0deg, rgba(3,16,21,.82) 0%, rgba(3,16,21,.2) 52%, rgba(3,16,21,.12) 100%); }
  .film-copy { left: 22px; right: 22px; bottom: max(106px, calc(env(safe-area-inset-bottom) + 86px)); }
  .film-copy h1, .film-copy h2 { font-size: clamp(42px, 13vw, 61px); line-height: .94; }
  .film-copy p { margin-bottom: 15px; font-size: 8px; }
  .film-copy small { margin-top: 18px; max-width: 310px; font-size: 12px; }
  .film-index { right: 20px; bottom: max(28px, calc(env(safe-area-inset-bottom) + 16px)); }
  .scroll-cue { left: 22px; bottom: max(27px, calc(env(safe-area-inset-bottom) + 15px)); }
  .editorial { padding-top: 80px; padding-bottom: 80px; }
  .eyebrow { margin-bottom: 64px; gap: 10px; font-size: 7px; }
  .editorial-grid, .experience, .plans-head, .pilot-grid, .closing { grid-template-columns: 1fr; }
  .editorial-grid { gap: 40px; }
  .editorial h2, .experience h2, .plans h2, .pilot h2, .closing h2 { font-size: clamp(43px, 13vw, 62px); }
  .editorial-grid > div > p { font-size: 18px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 150px; padding: 28px 0; }
  .principles article + article { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .experience { gap: 75px; min-height: 0; padding-top: 90px; padding-bottom: 90px; }
  .phone { width: min(100%, 330px); transform: none; }
  .plans { padding-top: 90px; padding-bottom: 90px; }
  .plans-head { gap: 45px; }
  .plans-intro p { font-size: 18px; }
  .plans-grid { grid-template-columns: 1fr; margin-top: 68px; border-bottom: 0; }
  .plan-card { min-height: 0; padding: 30px 0 34px; border-bottom: 1px solid var(--line); }
  .plan-card + .plan-card { border-left: 0; }
  .plan-card.is-featured { margin: 0 -24px; padding: 38px 24px 40px; border-bottom: 0; box-shadow: none; }
  .plan-card h3 { font-size: 39px; }
  .plan-price strong { font-size: 37px; }
  .plan-card ul { margin-bottom: 34px; }
  .plans-legal { margin-top: 34px; text-align: left; }
  .pilot { padding-top: 90px; padding-bottom: 90px; }
  .pilot h2 { font-size: clamp(37px, 9.8vw, 50px); }
  .pilot-grid { gap: 58px; }
  .pilot-facts article { display: grid; }
  .closing { gap: 70px; padding-top: 90px; padding-bottom: 90px; }
  footer { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-cue i::after { animation: none; }
  .film { height: 300svh; }
  .film-copy { transition: none; }
}

/* V12 — refinamento de marca e nova escala dos destaques corais. */
@font-face {
  font-family: "Nexa Text";
  src: url("assets/fonts/NexaTextBook.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa Text";
  src: url("assets/fonts/NexaTextBold.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Guthen Jaqueline";
  src: url("assets/fonts/Guthen-Jaqueline-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root { font-family: "Nexa Text", ui-sans-serif, system-ui, sans-serif; }
body { font-family: "Nexa Text", ui-sans-serif, system-ui, sans-serif; }

.loader-brand { width: min(72vw, 310px); }
.loader-brand img { display: block; width: 100%; height: auto; }

.brand { position: relative; width: clamp(156px, 14.5vw, 208px); height: 46px; flex: 0 0 auto; overflow: visible; }
.brand-logo { position: absolute; inset: 0 auto 0 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; border-radius: 0; transition: opacity .35s ease; }
.brand-logo--white { opacity: 1; }
.brand-logo--color { opacity: 0; }
.site-header.is-light .brand-logo--white { opacity: 0; }
.site-header.is-light .brand-logo--color { opacity: 1; }

.film-copy h1,
.film-copy h2,
.editorial h2,
.experience h2,
.plans h2,
.pilot h2,
.closing h2,
.principles h3,
.plan-card h3,
.plan-price strong,
.plans-intro p,
.pilot-facts b {
  font-family: "Nexa Text", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.film-copy h1, .film-copy h2 {
  letter-spacing: -.062em;
  line-height: .88;
}
.film-copy em,
.editorial h2 em,
.experience h2 em,
.plans h2 em,
.pilot h2 em,
.closing h2 em {
  font-style: normal;
  font-weight: 400;
}
.film-copy em,
.closing h2 em {
  display: inline-block;
  margin-top: .08em;
  color: #f1a089;
  font-family: "Guthen Jaqueline", cursive;
  font-size: 1.12em;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .78;
  transform: rotate(-1.2deg);
}
.film-copy em { font-size: 1.52em; line-height: .72; }
.film-copy--protecao em { font-size: 1.58em; line-height: .73; }
.film-copy--vida em { font-size: 1.14em; line-height: .84; }
.closing h2 em { font-size: 1.02em; }

.intro-product, .plans, .pilot { position: relative; isolation: isolate; overflow: hidden; }
.intro-product::before,
.plans::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .08;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 19%, var(--teal) 0 5.2%, transparent 5.7%),
    radial-gradient(circle at 27% 38%, var(--teal) 0 6.6%, transparent 7.1%),
    radial-gradient(circle at 73% 38%, var(--teal) 0 6.6%, transparent 7.1%),
    radial-gradient(ellipse at 50% 67%, var(--teal) 0 22%, transparent 22.7%);
  filter: blur(.2px);
  transform: rotate(-12deg);
}
.intro-product::before { right: -12%; top: 10%; }
.plans::before { left: -18%; bottom: 2%; opacity: .045; transform: rotate(18deg); }
.experience::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 8%;
  width: 36vw;
  height: 36vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 50%;
  background: rgba(239,115,95,.12);
  filter: blur(70px);
  pointer-events: none;
}

.principles article { grid-template-columns: 54px 1fr; }
.principle-icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--teal); }
.principle-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.principles h3 { font-size: 22px; line-height: 1.1; letter-spacing: -.035em; }
.principles p { max-width: 230px; }

.phone-stage { position: relative; z-index: 1; }
.prototype-label { max-width: 360px; margin: 0 auto 18px; color: rgba(7,31,39,.5); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-align: center; }
.phone { width: min(100%, 370px); padding-top: 31px; background: #fbf8f2; }
.app-header { padding-bottom: 18px; }
.app-header img { width: 27px; height: 27px; object-fit: contain; }
.app-header span { color: var(--ink); font-size: 13px; font-weight: 700; letter-spacing: -.02em; }
.hello span { font-size: 17px; }
.hello-sub { display: block; max-width: 250px; margin-top: 4px; line-height: 1.35; }
.club-strip { display: flex; justify-content: space-between; align-items: center; margin: 16px 0 10px; padding: 9px 11px; border-radius: 12px; background: rgba(10,89,103,.08); }
.club-strip span { color: var(--teal); font-size: 7px; font-weight: 800; letter-spacing: .11em; }
.club-strip strong { color: var(--coral); font-size: 8px; }
.pet-card { margin-top: 10px; }
.app-grid article { min-height: 112px; background: #e8f1ee; }
.digital-card {
  background:
    radial-gradient(circle at 12% 120%, rgba(255,255,255,.13) 0 38%, transparent 39%),
    linear-gradient(135deg, #0a5967, #063f4b);
}
.digital-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .brand { width: 145px; height: 38px; }
  .film-copy em { font-size: 1.50em; }
  .film-copy--protecao em { font-size: 1.52em; }
  .film-copy--vida em { font-size: 1.08em; }
  .closing h2 em { font-size: .98em; }
  .intro-product::before { width: 92vw; right: -44%; top: 18%; }
  .principles article { grid-template-columns: 48px 1fr; gap: 16px; }
  .principle-icon { width: 40px; height: 40px; }
  .prototype-label { font-size: 7px; line-height: 1.5; }
  .phone { width: min(100%, 336px); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo, .film-copy em, .closing h2 em { transition: none; transform: none; }
}

/* V12 — logo oficial preservado com respiro interno e caixa sem corte */
.brand .brand-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 0; }
.experience { position: relative; overflow: hidden; isolation: isolate; }
