/* Rhovagon — static, shared design system. No remote font or asset dependency. */
/* Faixa da homologação: mudar para none somente na publicação final autorizada. */
.preview-banner {
  display: var(--preview-banner-display, block);
  margin: 0;
  padding: 9px 18px;
  background: var(--sky);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
}
:root {
  --ink:#14374a;
  --muted:#536570;
  --blue:#174e70;
  --blue-dark:#10394f;
  --navy:#102f42;
  --paper:#f7f5f0;
  --line:#deded6;
  --sky:#f1eadc;
  --gold:#a67b35;
  --radius:20px;
  --max:1200px
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:110px
}
body {
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:white;
  line-height:1.65
}
a {
  color:var(--blue);
  text-underline-offset:4px
}
a:hover {
  text-decoration-thickness:2px
}
button,input,select,textarea {
  font:inherit
}
button,a,input,select,textarea,summary {
  -webkit-tap-highlight-color:transparent
}
:focus-visible {
  outline:3px solid #bd5800;
  outline-offset:5px
}
img,svg {
  max-width:100%;
  display:block
}
h1,h2,h3,p {
  margin-top:0
}
h1,h2,h3 {
  line-height:1.12;
  letter-spacing:-.045em
}
h1 {
  font-size:clamp(2.6rem,5.3vw,4.8rem);
  font-weight:600;
  margin-bottom:26px
}
h2 {
  font-size:clamp(2rem,3.5vw,3.25rem);
  font-weight:600;
  margin-bottom:24px
}
h3 {
  font-size:1.4rem;
  letter-spacing:-.025em
}
p {
  margin-bottom:20px
}
main {
  min-height:65vh
}
.wrap {
  width:min(var(--max),calc(100% - 64px));
  margin-inline:auto
}
.section {
  padding-block:96px
}
.section-sm {
  padding-block:56px
}
.muted {
  color:var(--muted)
}
.eyebrow {
  text-transform:uppercase;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.17em;
  margin-bottom:24px;
  display:block
}
.eyebrow:before {
  content:'';
  display:inline-block;
  background:currentColor;
  width:22px;
  height:2px;
  vertical-align:middle;
  margin-right:10px
}
.lead {
  font-size:1.15rem;
  max-width:57ch;
  color:var(--muted)
}
.intro {
  max-width:760px;
  margin-bottom:44px
}
.split {
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:70px;
  align-items:center
}
.grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px
}
.grid.two {
  grid-template-columns:repeat(2,minmax(0,1fr))
}
.soft {
  background:var(--paper)
}
.sky {
  background:var(--sky)
}
.dark {
  background:var(--navy);
  color:#fff
}
.dark .lead,.dark .muted {
  color:#c2d6e3
}
.dark a:not(.button) {
  color:#d2eaff
}
.dark .eyebrow {
  color:#9ccaff
}
.accent {
  color:var(--blue)
}
.actions {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  margin-top:30px
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:var(--blue);
  color:white;
  border:1px solid var(--blue);
  border-radius:7px;
  padding:14px 22px;
  font-size:.9rem;
  font-weight:700;
  text-decoration:none;
  min-height:50px;
  cursor:pointer
}
.button:hover {
  background:var(--blue-dark);
  border-color:var(--blue-dark)
}
.button.secondary {
  color:var(--ink);
  background:transparent;
  border-color:#a8bbc8
}
.button.secondary:hover {
  background:#e7f1fa
}
.dark .button.secondary {
  color:white;
  border-color:#7793a5
}
.dark .button.secondary:hover {
  background:#183d55
}
.text-link {
  font-weight:700;
  display:inline-block;
  margin-top:12px
}
.skip {
  position:fixed;
  left:16px;
  top:-100px;
  z-index:100;
  background:white;
  padding:12px
}
.skip:focus {
  top:12px
}
.site-header {
  position:sticky;
  top:0;
  background:#fffffffa;
  z-index:20;
  border-bottom:1px solid var(--line)
}
.header-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:88px
}
.brand {
  color:var(--ink);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-shrink:0
}
.brand-mark {
  width:30px;
  height:35px;
  border:2px solid var(--blue);
  border-radius:50% 50% 6px 6px;
  transform:rotate(18deg);
  position:relative
}
.brand-mark:after {
  content:'';
  position:absolute;
  left:6px;
  top:12px;
  width:22px;
  height:2px;
  background:var(--blue);
  transform:rotate(-35deg)
}
.brand-name {
  font-size:1.24rem;
  font-weight:800;
  letter-spacing:.055em;
  line-height:1.1
}
.brand-name small {
  display:block;
  font-size:.6rem;
  letter-spacing:.34em;
  font-weight:500;
  margin-top:6px
}
.nav {
  display:flex;
  align-items:center;
  gap:24px
}
.nav a {
  font-size:.82rem;
  color:var(--ink);
  text-decoration:none;
  padding:12px 0
}
.nav a[aria-current=page] {
  color:var(--blue);
  text-decoration:underline;
  text-decoration-thickness:2px
}
.nav a:hover {
  text-decoration:underline
}
.nav .button {
  color:white;
  padding:11px 17px
}
.menu-toggle {
  display:none
}
.hero {
  padding-block:78px 88px
}
.hero .split {
  gap:54px
}
.home-hero {
  background:linear-gradient(110deg,#f3f8fb 15%,#e8f1f7 100%)
}
.home-hero h1 {
  max-width:660px
}
.hero-foot {
  display:flex;
  gap:25px;
  border-top:1px solid #b5cbd9;
  padding-top:22px;
  margin-top:38px;
  font-size:.76rem;
  font-weight:700
}
.journey-art {
  position:relative;
  min-height:520px;
  background:#dbeaf2;
  border-radius:180px 180px 24px 24px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  padding:28px
}
.journey-art:before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 68% 26%,#f7fcff 0 9%,transparent 9.3%),linear-gradient(155deg,transparent 52%,#91b7c9 52.2% 64%,transparent 64.2%),linear-gradient(32deg,#537e95 35%,transparent 35.2%),linear-gradient(150deg,#bad4e2 67%,#2d5c76 67.2%)
}
.journey-art:after {
  content:'';
  position:absolute;
  width:340px;
  height:400px;
  border:1px dashed #fff;
  top:20px;
  left:-80px;
  border-radius:50%;
  transform:rotate(-35deg)
}
.art-caption {
  position:relative;
  z-index:1;
  background:#fffffff2;
  padding:17px 20px;
  border-radius:10px;
  max-width:100%;
  font-size:.78rem;
  line-height:1.5
}
.art-caption strong {
  display:block;
  font-size:1rem
}
.art-label {
  position:absolute;
  right:22px;
  top:35px;
  font-size:.65rem;
  letter-spacing:.14em;
  font-weight:bold;
  writing-mode:vertical-rl;
  color:#1e4b65
}
.service-strip {
  border-bottom:1px solid var(--line);
  padding-block:24px
}
.strip-row {
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  font-size:.85rem;
  font-weight:700
}
.strip-row span:before {
  content:'↗';
  color:var(--blue);
  margin-right:10px
}
.card {
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  background:white
}
.card p:last-child {
  margin-bottom:0
}
.card-index {
  display:block;
  color:var(--blue);
  font-size:.8rem;
  font-weight:bold;
  margin-bottom:30px
}
.route-card {
  padding:42px;
  min-height:350px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  border-radius:var(--radius);
  background:var(--sky)
}
.route-card.dark {
  background:var(--navy)
}
.route-card .text-link {
  margin-top:auto;
  padding-top:20px
}
.route-card h3 {
  font-size:2.1rem
}
.line-list {
  list-style:none;
  padding:0;
  margin:0
}
.line-list li {
  padding:20px 0;
  border-bottom:1px solid var(--line);
  display:flex;
  gap:20px
}
.line-list li:before {
  content:'↗';
  color:var(--blue);
  font-weight:bold
}
.statement {
  font-size:clamp(1.6rem,2.5vw,2.3rem);
  line-height:1.3;
  letter-spacing:-.025em;
  max-width:850px
}
.quote-line {
  border-left:3px solid var(--blue);
  padding-left:24px;
  margin-top:34px
}
.steps {
  counter-reset:step;
  list-style:none;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:30px;
  margin:35px 0 0
}
.steps li {
  counter-increment:step;
  border-top:1px solid var(--line);
  padding-top:25px
}
.steps li:before {
  content:'0' counter(step);
  color:var(--blue);
  display:block;
  margin-bottom:24px;
  font-size:.8rem;
  font-weight:bold
}
.steps h3 {
  font-size:1.35rem
}
.placeholder {
  border:1px dashed #829cad;
  border-radius:var(--radius);
  background:repeating-linear-gradient(-45deg,#f2f6f9,#f2f6f9 10px,#edf3f7 10px,#edf3f7 11px);
  min-height:300px;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:var(--ink);
  margin:0
}
.placeholder .placeholder-icon {
  font-size:2rem;
  color:var(--blue);
  margin-bottom:18px
}
.placeholder strong {
  font-size:1.15rem
}
.placeholder figcaption {
  font-size:.8rem;
  max-width:36ch;
  margin-top:12px;
  color:var(--muted)
}
.placeholder-tag {
  display:inline-block;
  padding:5px 9px;
  border:1px solid #9fb5c4;
  border-radius:4px;
  font-size:.63rem;
  letter-spacing:.09em;
  font-weight:bold;
  margin-bottom:20px;
  background:white;
  color:var(--muted)
}
.placeholder.compact {
  min-height:160px
}
.screen-frame {
  padding:14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 25px 70px #143e5920;
  transform:rotate(2deg)
}
.screen-top {
  font-size:.7rem;
  padding:3px 8px 14px;
  color:var(--muted);
  display:flex;
  justify-content:space-between
}
.screen-frame .placeholder {
  min-height:310px
}
.note {
  font-size:.85rem;
  color:var(--muted);
  border-left:2px solid #91b4cb;
  padding-left:16px;
  margin-top:24px
}
.pill-list {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  padding:0;
  margin:24px 0
}
.pill-list li {
  border:1px solid var(--line);
  border-radius:30px;
  padding:9px 16px;
  font-size:.9rem
}
.comparison {
  width:100%;
  border-collapse:collapse;
  font-size:.92rem
}
.comparison caption {
  text-align:left;
  font-size:.85rem;
  color:var(--muted);
  padding-bottom:16px
}
.comparison th,.comparison td {
  text-align:left;
  padding:20px;
  border-bottom:1px solid var(--line);
  vertical-align:top
}
.comparison thead {
  background:var(--sky)
}
.comparison tbody th {
  font-weight:600
}
.faq {
  border-top:1px solid var(--line)
}
details {
  border-bottom:1px solid var(--line)
}
summary {
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:24px 0;
  font-size:1.05rem;
  font-weight:600
}
summary:after {
  content:'+';
  color:var(--blue);
  font-size:1.3rem
}
details[open] summary:after {
  content:'−'
}
summary::-webkit-details-marker {
  display:none
}
details p {
  color:var(--muted);
  max-width:75ch;
  padding-right:30px
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px
}
.field {
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:.85rem;
  font-weight:600
}
.field.wide {
  grid-column:1/-1
}
input,select,textarea {
  width:100%;
  min-width:0;
  border:1px solid #829baa;
  background:white;
  border-radius:6px;
  padding:12px;
  color:var(--ink)
}
textarea {
  resize:vertical;
  min-height:110px
}
.form-status {
  margin-top:20px;
  font-size:.9rem
}
.form-preview {
  margin-top:20px
}
.form-preview textarea {
  margin-block:12px
}
.form-note {
  font-size:.8rem;
  color:var(--muted);
  margin-top:20px
}
.cta-panel {
  border-radius:24px;
  padding:60px;
  background:var(--sky)
}
.cta-panel h2 {
  max-width:740px
}
.breadcrumbs {
  font-size:.75rem;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:34px
}
.page-hero {
  padding-block:52px 76px;
  background:var(--paper)
}
.page-hero h1 {
  max-width:890px
}
.destination-media {
  min-height:220px;
  border-radius:14px 14px 0 0;
  background:linear-gradient(150deg,#e4eef3 52%,#b5cdda 52.3% 70%,#7099ae 70.3%);
  display:flex;
  align-items:flex-end;
  padding:20px
}
.destination-card {
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden
}
.destination-copy {
  padding:28px
}
.destination-copy h3 {
  font-size:1.6rem
}
.destination-media .placeholder-tag {
  margin:0
}
.site-footer {
  background:var(--navy);
  color:#c2d6e3;
  padding-block:60px 24px;
  font-size:.85rem
}
.footer-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:50px
}
.site-footer .brand {
  color:white;
  margin-bottom:24px
}
.site-footer a {
  color:#e0eff9
}
.site-footer h2 {
  font-size:.9rem;
  letter-spacing:0;
  color:white
}
.footer-links {
  list-style:none;
  margin:0;
  padding:0
}
.footer-links li {
  margin-bottom:10px
}
.footer-bottom {
  border-top:1px solid #385366;
  padding-top:22px;
  margin-top:44px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:.73rem
}
.review-label {
  border:1px solid #597487;
  border-radius:5px;
  padding:5px 9px;
  display:inline-block;
  font-size:.7rem
}
.jump-nav {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:30px
}
.jump-nav a {
  border:1px solid var(--line);
  border-radius:30px;
  padding:9px 15px;
  font-size:.85rem;
  text-decoration:none
}
.screen-section {
  scroll-margin-top:110px
}
.screen-section:nth-child(even) {
  background:var(--paper)
}
@media(min-width:1450px) {
  .hero {
    padding-block:95px
  }
  .journey-art {
    min-height:550px
  }
}
@media(max-width:1080px) {
  .nav {
    gap:14px
  }
  .nav a {
    font-size:.75rem
  }
  .header-row {
    gap:16px
  }
  .split {
    gap:35px
  }
  .wrap {
    width:calc(100% - 48px)
  }
  .journey-art {
    min-height:480px
  }
  .section {
    padding-block:76px
  }
  .hero-foot {
    gap:14px
  }
  .route-card {
    padding:30px
  }
}
@media(max-width:900px) {
  .header-row {
    flex-wrap:wrap;
    padding-block:18px;
    min-height:78px
  }
  .js .menu-toggle {
    display:inline-flex;
    padding:9px 14px;
    border:1px solid var(--line);
    border-radius:6px;
    background:white;
    color:var(--ink);
    cursor:pointer
  }
  .nav {
    width:100%;
    flex-wrap:wrap;
    gap:8px 24px;
    padding-bottom:10px
  }
  .js .nav {
    display:none
  }
  .js .nav.is-open {
    display:flex
  }
  .nav a {
    font-size:.9rem
  }
  .split {
    grid-template-columns:1fr 1fr;
    gap:28px
  }
  .hero h1 {
    font-size:clamp(2.6rem,5.6vw,3.5rem)
  }
  .journey-art {
    min-height:450px
  }
  .grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .hero-foot {
    flex-wrap:wrap
  }
  .screen-frame {
    transform:none
  }
  .footer-grid {
    gap:24px
  }
  .cta-panel {
    padding:40px
  }
  .form-grid {
    grid-template-columns:1fr
  }
  .field {
    grid-column:1/-1
  }
}
@media(max-width:650px) {
  .wrap {
    width:calc(100% - 36px)
  }
  .section {
    padding-block:58px
  }
  .hero {
    padding-block:42px 50px
  }
  .split,.grid,.grid.two,.steps,.footer-grid {
    grid-template-columns:1fr
  }
  .split {
    gap:36px
  }
  .hero h1 {
    font-size:2.85rem
  }
  .hero .split {
    gap:36px
  }
  .journey-art {
    min-height:350px;
    border-radius:130px 130px 20px 20px
  }
  .journey-art:after {
    height:320px
  }
  .hero-foot {
    font-size:.72rem;
    margin-top:28px;
    gap:12px
  }
  .actions {
    align-items:stretch;
    flex-direction:column
  }
  .actions .button {
    width:100%
  }
  .strip-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    font-size:.75rem;
    gap:14px
  }
  .route-card {
    min-height:320px;
    padding:28px
  }
  .card {
    padding:26px
  }
  .screen-frame .placeholder {
    min-height:270px
  }
  .placeholder {
    padding:22px;
    min-height:240px
  }
  .intro {
    margin-bottom:32px
  }
  .page-hero {
    padding-block:32px 50px
  }
  .page-hero h1 {
    font-size:2.75rem
  }
  .comparison th,.comparison td {
    padding:12px 8px;
    font-size:.78rem;
    overflow-wrap:anywhere
  }
  .comparison {
    table-layout:fixed
  }
  .cta-panel {
    padding:30px 24px
  }
  .footer-bottom {
    flex-direction:column;
    gap:10px
  }
  .footer-grid {
    gap:30px
  }
  .steps {
    gap:15px
  }
  .steps li:before {
    margin-bottom:14px
  }
  .brand-name {
    font-size:1.1rem
  }
  .nav.is-open {
    align-items:stretch;
    flex-direction:column
  }
  .nav a {
    padding:10px
  }
  .nav .button {
    align-self:flex-start
  }
  .screen-section .split {
    gap:26px
  }
  .screen-section .placeholder {
    order:2
  }
}
.brand-logo {
  width:58px;
  height:58px;
  object-fit:contain
}
.brand-logo.b2b {
  width:100px;
  height:70px
}
.brand-b2b-label {
  font-size:.8rem;
  font-weight:700;
  border-left:1px solid var(--line);
  padding-left:12px
}
.brand-logo-box {
  position: relative;
  width: 128px;
  height: 82px;
  overflow: hidden;
}
.brand-logo-box .brand-logo.b2b {
  position: absolute;
  width: 128px;
  height: 128px;
  max-width: none;
  top: -18px;
}
.art-label {
  top: 100px;
}
.corporate-hero h1 {
  font-size: clamp(2.5rem, 4.1vw, 3.65rem);
}
@media (min-width: 651px) and (max-width: 900px) {
  .corporate-hero .split {
    grid-template-columns: 1fr;
  }
  .corporate-hero h1 {
    max-width: 700px;
    font-size: 3.3rem;
  }
  .corporate-hero .screen-frame {
    max-width: 650px;
  }
}
.home-hero {
  background:linear-gradient(110deg,#fbf9f4 15%,#f0e7d6 100%)
}
.hero-foot {
  border-color:#cebea4
}
.journey-art {
  background:#e7d5b5
}
.journey-art:before {
  background:radial-gradient(circle at 68% 26%,#fff7df 0 9%,transparent 9.3%),linear-gradient(155deg,transparent 52%,#9caea9 52.2% 64%,transparent 64.2%),linear-gradient(32deg,#446679 35%,transparent 35.2%),linear-gradient(150deg,#d8c29e 67%,#163c53 67.2%)
}
.art-label {
  color:#334f58
}
.dark .eyebrow {
  color:#e3c58c
}
.card-index,.steps li:before {
  color:#866023
}
.brand-footer {
  background:#fff;
  border-radius:10px;
  padding:5px 12px
}
.brand-footer .brand-name {
  color:var(--ink)
}
.gold-rule {
  width:56px;
  height:3px;
  background:var(--gold);
  margin-bottom:28px
}
.site-footer .brand-footer {
  color:var(--ink)
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important
  }
}
