/* Fonte local válida extraída do backup original. */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/open-sans.woff2") format("woff2");
}

:root {
  --bluepro-dark: #031b3d;
  --bluepro-light: #0085ca;
  --bluepro-accent: #00a8e8;
  --bluepro-gray: #f3f4f6;
  --white: #ffffff;
  --gray-200: #e5e7eb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  color: var(--bluepro-dark);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

.editorial-main :is(h1, h2, h3, .section-kicker, .editorial-cta, .calendar-cta, .region-whatsapp-cta, .editorial-hero-cta),
.editorial-page .nav,
.editorial-page .btn-header {
  font-family: "Montserrat", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 20px 0;
  background: var(--bluepro-dark);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 16px;
  padding-left: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
  transition: all 300ms ease;
}

.nav {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  padding: 24px;
  background: var(--bluepro-dark);
  border-top: 1px solid #1e3a8a;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav > a:not(.btn-header) {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  transition: color 150ms ease;
}

.nav > a:not(.btn-header):hover {
  color: var(--bluepro-light);
}

.btn-header {
  margin-top: 16px;
  padding: 12px 0;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  background: var(--bluepro-light);
  border-radius: 999px;
}

.menu-toggle {
  display: block;
  width: 28px;
  height: 28px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle svg {
  display: block;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle.is-open .menu-icon {
  display: none;
}

.menu-toggle.is-open .close-icon {
  display: block;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 92px 16px 48px;
  background: linear-gradient(to bottom, var(--bluepro-dark) 0 92px, #f6f8fb 92px 100%);
}

.hero-shell {
  padding: 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  outline: none;
}

.hero-carousel:focus-visible {
  border-radius: 14px;
  box-shadow: 0 0 0 3px rgb(0 133 202 / .35);
}

.hero-viewport {
  position: relative;
  overflow: hidden;
  background: var(--bluepro-dark);
  border-radius: 12px;
  box-shadow: 0 20px 45px -24px rgb(3 27 61 / .6);
}

.hero-track {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide picture,
.hero-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-control {
  position: absolute;
  top: calc(50% - 18px);
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  background: rgb(3 27 61 / .78);
  border: 1px solid rgb(255 255 255 / .28);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-control:hover,
.hero-control:focus-visible {
  background: var(--bluepro-light);
  transform: translateY(-50%) scale(1.06);
}

.hero-control-prev { left: 12px; }
.hero-control-next { right: 12px; }

.hero-dots {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #cbd5e1;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--bluepro-light);
}

.hero-carousel.has-single-slide .hero-control,
.hero-carousel.has-single-slide .hero-dots {
  display: none;
}

.hero-benefits-wrap {
  position: relative;
}

.hero-benefits {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 7% 6px;
  scroll-behavior: smooth;
  scroll-padding-inline: 7%;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-benefits::-webkit-scrollbar { display: none; }

.benefit-card {
  cursor: pointer;
  display: flex;
  min-height: 88px;
  flex: 0 0 86%;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  box-shadow: 0 8px 22px -18px rgb(3 27 61 / .5);
  scroll-snap-align: center;
  color: inherit;
  text-decoration: none;
}
.hero-benefits-cta { display: flex; justify-content: center; margin: 22px 0 0; }
.products-cta { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 12px; text-align: center; }

.benefit-card svg {
  width: 30px;
  height: 30px;
  flex: none;
  fill: none;
  stroke: var(--bluepro-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card strong {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.benefit-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: var(--bluepro-dark);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}

.benefit-control-prev { left: 0; }
.benefit-control-next { right: 0; }

.hero button:focus-visible {
  outline: 3px solid rgb(0 168 232 / .45);
  outline-offset: 3px;
}

.btn {
  padding: 16px 32px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  border-radius: 6px;
  transition: all 300ms ease;
}

.btn-primary {
  background: var(--bluepro-light);
  box-shadow: 0 10px 15px -3px rgb(30 58 138 / 0.5), 0 4px 6px -4px rgb(30 58 138 / 0.5);
}

.btn-primary:hover {
  color: var(--bluepro-dark);
  background: var(--white);
}

.btn-outline {
  border: 2px solid var(--white);
}

.btn-outline:hover {
  color: var(--bluepro-dark);
  background: var(--white);
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }

  .header-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .logo img {
    height: 56px;
  }

  .hero { padding-top: 108px; }
  .hero-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; overflow: visible; }
  .benefit-card { min-width: 0; flex-basis: auto; }
  .benefit-control { display: none; }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }

  .hero-benefits { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide { transition: none; }
  .hero-benefits { scroll-behavior: auto; }
}

/* SITE CONTENT */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
img { max-width: 100%; }
.section { padding: 80px 0; }
.section-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.5vw, 32px);
}
.section-kicker { margin: 0 0 8px; color: var(--bluepro-light); font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.video-presentation { color: #fff; background: var(--bluepro-dark); }
.video-presentation-grid { display: grid; gap: 40px; align-items: center; }
.video-presentation-content { width: 100%; max-width: 768px; margin-inline: auto; text-align: center; }
.video-presentation-content .section-kicker { color: #7dd3fc; }
.video-presentation-content h2 { margin: 0 0 20px; font-family: "Open Sans", sans-serif; font-size: 30px; line-height: 1.2; }
.video-presentation-content p:not(.section-kicker) { margin: 0 0 28px; color: #dbeafe; line-height: 1.625; }
.video-presentation-player { position: relative; aspect-ratio: 9 / 16; width: min(100%, 320px); justify-self: center; overflow: hidden; border: 1px solid rgb(255 255 255 / .18); border-radius: 12px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / .45); background: #000; }
.video-presentation-player iframe { display: block; width: 100%; height: 100%; border: 0; }
.about { overflow-x: hidden; background: #fff; }
.about-grid { display: flex; flex-direction: column; align-items: center; gap: 64px; }
.about-media { position: relative; width: 100%; }
.about-media img { position: relative; z-index: 2; display: block; width: 100%; border-radius: 8px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25); }
.about-carousel-loading { position: relative; z-index: 2; min-height: 280px; background: #e5e7eb; border-radius: 8px; }
.about-carousel { position: relative; z-index: 2; overflow: hidden; border-radius: 8px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25); background: #e5e7eb; }
.about-carousel-track { position: relative; min-height: 280px; }
.about-carousel-slide { position: absolute; inset: 0; margin: 0; opacity: 0; pointer-events: none; transition: opacity 500ms ease; }
.about-carousel-slide.is-active { position: relative; opacity: 1; pointer-events: auto; }
.about-carousel-slide img { height: clamp(280px, 38vw, 520px); object-fit: cover; box-shadow: none; }
.about-carousel-control { position: absolute; top: 50%; z-index: 3; display: grid; width: 40px; height: 40px; place-items: center; padding: 0; color: #fff; font-size: 26px; line-height: 1; background: rgb(3 27 61 / .72); border: 0; border-radius: 50%; cursor: pointer; transform: translateY(-50%); transition: background 150ms ease, transform 150ms ease; }
.about-carousel-control:hover { background: var(--bluepro-light); transform: translateY(-50%) scale(1.08); }
.about-carousel-control-prev { left: 16px; }
.about-carousel-control-next { right: 16px; }
.about-carousel-dots { position: absolute; right: 16px; bottom: 16px; left: 16px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.about-carousel-dot { width: 8px; height: 8px; padding: 0; background: rgb(255 255 255 / .58); border: 0; border-radius: 50%; cursor: pointer; transition: width 180ms ease, background 180ms ease; }
.about-carousel-dot.is-active { width: 24px; background: #fff; border-radius: 8px; }
.about-fill { position: absolute; right: -24px; bottom: -24px; z-index: 1; width: 66.666%; height: 66.666%; background: var(--bluepro-light); border-radius: 8px; opacity: .2; }
.about-frame { position: absolute; top: -24px; left: -24px; z-index: 1; width: 33.333%; height: 33.333%; border: 4px solid var(--bluepro-dark); border-radius: 8px; }
.about-content { width: 100%; }
.about-content h2, .section-heading h2, .brands-heading h2 { margin: 0; font-family: "Open Sans", sans-serif; font-weight: 700; }
.about-content h2 { margin-bottom: 24px; font-size: 30px; line-height: 1.2; }
.about-content > p:not(.section-kicker) { margin: 0 0 24px; color: #4b5563; line-height: 1.625; }

.services { color: #fff; background: var(--bluepro-dark); }
.services .section-heading p:not(.section-kicker) { color: #dbeafe; }
.section-heading { max-width: 768px; margin: 0 auto 64px; text-align: center; }
.section-heading h2 { margin-bottom: 16px; font-size: 30px; line-height: 1.2; }
.section-heading > p:last-child { margin: 0; color: #4b5563; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.service-card { display: block; height: 100%; overflow: hidden; color: var(--bluepro-dark); background: #fff; border: 1px solid #f3f4f6; border-radius: 12px; box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1); transition: box-shadow 300ms ease; }
.service-card:hover { box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25); }
.service-image { position: relative; height: 192px; overflow: hidden; }
.service-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-cover { position: absolute; inset: 0; z-index: 1; background: var(--bluepro-dark); opacity: 0; transition: opacity 300ms ease; }
.service-card:hover .service-image img { transform: scale(1.1); }
.service-card:hover .service-cover { opacity: .2; }
.service-body { position: relative; display: flex; min-height: 254px; flex-direction: column; padding: 32px; }
.service-icon { position: absolute; top: -32px; right: 32px; display: grid; width: 48px; height: 48px; place-items: center; color: #fff; background: var(--bluepro-light); border-radius: 8px; box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1); transition: background 150ms ease; }
.service-card:hover .service-icon { background: var(--bluepro-dark); }
.service-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-body h3 { margin: 0 0 12px; font-size: 20px; line-height: 28px; transition: color 150ms ease; }
.service-card:hover h3 { color: var(--bluepro-light); }
.service-body p { margin: 0 0 24px; color: #4b5563; font-size: 14px; line-height: 1.625; }
.service-cta { display: inline-flex; align-items: center; margin-top: auto; font-size: 14px; font-weight: 600; transition: color 150ms ease; }
.service-cta:hover { color: var(--bluepro-light); }
.service-cta svg { width: 16px; height: 16px; margin-left: 8px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.brands {
  overflow: hidden;
  padding-top: 1px;
  background: #f6f8fb;
}
.brands-window { width: 100%; overflow: hidden; }
.brands-track { display: flex; width: max-content; animation: brands-scroll 45s linear infinite; will-change: transform; }
.brands-track:hover { animation-play-state: paused; }
.brand-item { display: flex; width: 192px; height: 112px; align-items: center; justify-content: center; margin: 0 6px; padding: 6px; transition: transform 300ms ease; }
.brand-item:hover { transform: translateY(-4px); }
.brand-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-item:hover img { filter: none; opacity: 1; }
@keyframes brands-scroll { to { transform: translate3d(-50%, 0, 0); } }

.contact { background: #fff; }
.contact-card { display: grid; grid-template-columns: minmax(0, 1fr); overflow: hidden; flex-direction: column; gap: 0; background: #fff; border: 1px solid #f3f4f6; border-radius: 16px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25); }
.contact-info { position: relative; display: flex; width: 100%; min-width: 0; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 40px; color: #fff; background: var(--bluepro-dark); }
.contact-glow { position: absolute; top: -128px; right: -128px; width: 256px; height: 256px; background: var(--bluepro-light); border-radius: 50%; opacity: .1; filter: blur(48px); }
.contact-info > div, .socials { position: relative; z-index: 1; }
.contact-info h3 { margin: 0 0 24px; font-size: 24px; line-height: 32px; }
.contact-info h3 { font-family: "Open Sans", sans-serif; }
.contact-intro { margin: 0 0 32px; color: #dbeafe; line-height: 1.625; }
.contact-list { display: grid; gap: 24px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-row > svg { width: 24px; height: 24px; flex: none; margin-top: 4px; color: var(--bluepro-light); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-row span { display: block; color: #93c5fd; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.contact-row strong { display: block; overflow-wrap: anywhere; font-size: 16px; line-height: 1.375; }
.socials { margin-top: 48px; }
.socials p { margin: 0 0 16px; color: #93c5fd; font-size: 14px; }
.socials > div { display: flex; gap: 16px; }
.socials a { display: grid; width: 36px; height: 36px; place-items: center; background: rgb(255 255 255 / .1); border-radius: 50%; transition: background 150ms ease; }
.socials a:hover { background: var(--bluepro-light); }
.socials svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.whatsapp-button { position: fixed; right: 24px; bottom: 24px; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.whatsapp-icon-container { display: flex; width: 60px; height: 60px; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); border-radius: 50%; box-shadow: 0 4px 20px rgb(37 211 102 / .4); transition: transform 300ms cubic-bezier(.25,.1,.25,1), box-shadow 300ms cubic-bezier(.25,.1,.25,1); }
.whatsapp-icon-container svg { width: 32px; height: 32px; }
.whatsapp-button:hover .whatsapp-icon-container { transform: scale(1.08); box-shadow: 0 6px 30px rgb(37 211 102 / .6); }
.whatsapp-pulse { position: absolute; z-index: -1; width: 60px; height: 60px; background: rgb(37 211 102 / .4); border-radius: 50%; animation: whatsapp-pulse 2.5s cubic-bezier(.25,.1,.25,1) infinite; }
.whatsapp-tooltip { position: absolute; right: 70px; padding: 8px 16px; color: #fff; font-size: 14px; font-weight: 500; white-space: nowrap; background: var(--bluepro-dark); border-radius: 8px; opacity: 0; pointer-events: none; transform: translateX(10px); transition: opacity 300ms ease, transform 300ms ease; }
.whatsapp-button:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@keyframes whatsapp-pulse { 0% { opacity: .5; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.35); } }

.reveal { --reveal-x: 0; --reveal-y: 0; opacity: 1; transform: none; }

.contact-map { margin-top: 24px; overflow: hidden; border-radius: 10px; aspect-ratio: 16 / 9; }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.faq {
  background: var(--bluepro-dark);
}

.faq .section-heading h2 {
  color: #fff;
}

.faq .section-kicker {
  color: var(--bluepro-light);
}
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { margin-bottom: 12px; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; }
.faq-item summary { padding: 20px 24px; color: var(--bluepro-dark); font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { float: right; content: "+"; color: var(--bluepro-light); font-size: 22px; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 24px 20px; color: #4b5563; line-height: 1.6; }
.instagram-placeholder { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgb(37 99 235 / .2); }
.instagram-placeholder p { margin-bottom: 8px; }
.instagram-placeholder a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.instagram-placeholder svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.about-container { display: block; }
.about-container > .about-content { max-width: 820px; margin: 0 auto 40px; text-align: center; }
.about-visuals { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; align-items: center; }
.about-visuals .about-media { width: 100%; }
.instagram-widget { width: 100%; min-width: 0; overflow: hidden; }
.products-carousel { position: relative; display: flex; align-items: center; gap: 16px; min-width: 0; }
.products-window { min-width: 0; overflow: hidden; }
.products-track { display: flex; margin: 0 -12px; transition: transform 450ms ease; will-change: transform; }
.product-card { flex: 0 0 calc(33.333% - 24px); margin: 0 12px; overflow: hidden; background: #fff; border: 1px solid #dbeafe; border-radius: 12px; box-shadow: 0 12px 24px rgb(3 27 61 / .1); }
.product-card img { display: block; width: 100%; height: 210px; object-fit: cover; }
.product-card h3 { margin: 0; padding: 20px 24px; color: var(--bluepro-dark); font-size: 20px; }
.products-control { z-index: 1; display: grid; width: 42px; height: 42px; flex: none; place-items: center; padding: 0; color: #fff; font-size: 24px; background: var(--bluepro-dark); border: 0; border-radius: 50%; cursor: pointer; }
.products-control:hover { background: var(--bluepro-light); }
.contact-card { min-height: 500px; }
.contact-directions { display: inline-flex; position: static; margin-top: 28px; align-self: flex-start; }
.contact-map { width: 100%; min-height: 360px; margin: 0; overflow: hidden; border-radius: 0; aspect-ratio: auto; }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }
@media (max-width: 1023px) { .product-card { flex-basis: calc(50% - 24px); } }
@media (max-width: 767px) {
  .about-visuals { grid-template-columns: 1fr; gap: 32px; }
  .product-card { flex-basis: calc(100% - 24px); }
  .contact-card { min-height: 0; }
  .contact-map { width: 100%; }
  .contact-map { height: 340px; }
}
@media (prefers-reduced-motion: reduce) { .products-track { transition: none; } }

/* Catálogo Produtos */
.reveal-up { --reveal-y: 25px; }
.reveal-down { --reveal-y: -25px; }
.reveal-left { --reveal-x: 25px; }
.reveal-right { --reveal-x: -25px; }
.reveal.is-visible { animation: content-reveal 600ms cubic-bezier(.25,.1,.25,1) both; }
@keyframes content-reveal { from { opacity: 0; transform: translate(var(--reveal-x), var(--reveal-y)) scale(.98); } to { opacity: 1; transform: translate(0) scale(1); } }

@media (min-width: 768px) {
  .section-container { padding-inline: clamp(16px, 2.5vw, 32px); }
  .video-presentation-content h2, .about-content h2, .section-heading h2, .brands-heading h2 { font-size: 36px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }


}

@media (min-width: 1024px) {
  .video-presentation-grid { grid-template-columns: minmax(0, 1fr); gap: 64px; }
  .video-presentation-player { width: min(100%, 360px); }
  .about-grid { flex-direction: row; }
  .about-grid > .about-media, .about-grid > .about-content { width: 50%; }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {

  .hero-benefits-wrap { padding: 0 44px; }
  .hero-benefits { overflow: hidden; padding: 0; scroll-padding-inline: 0; scroll-snap-type: none; }
  .hero-benefits.is-ready .benefit-card:not(.is-active) { display: none; }
  .benefit-card { width: 100%; min-width: 0; flex: 0 0 100%; scroll-snap-align: none; }
  .benefit-control-prev { left: 2px; }
  .benefit-control-next { right: 2px; }
  .section { padding: 64px 0; }
  .about-grid { gap: 48px; }
  .about-media { width: calc(100% - 16px); }
  .about-carousel-track { min-height: 240px; }
  .about-carousel-slide img { height: 240px; }
  .about-carousel-control { width: 36px; height: 36px; font-size: 22px; }
  .about-frame { top: -12px; left: -12px; }
  .about-fill { right: -12px; bottom: -12px; }
  .contact-info { padding: 32px 24px; }
  .whatsapp-button { right: 16px; bottom: 16px; }
  .whatsapp-icon-container, .whatsapp-pulse { width: 56px; height: 56px; }
  .whatsapp-icon-container svg { width: 28px; height: 28px; }
  .whatsapp-tooltip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .brands-track, .whatsapp-pulse { animation: none; }
}

/* HERO MOTION — transição sutil sem alterar o layout */
.hero-slide {
  transform: scale(1.018);
  transition:
    opacity 620ms cubic-bezier(.22, 1, .36, 1),
    transform 900ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.hero-slide.is-active {
  transform: scale(1);
}

@media (max-width: 767px) {
  .hero-benefits {
    position: relative;
  }

  .hero-benefits.is-ready .benefit-card {
    transition:
      opacity 420ms cubic-bezier(.22, 1, .36, 1),
      transform 560ms cubic-bezier(.22, 1, .36, 1),
      visibility 0s linear 560ms;
    will-change: opacity, transform;
  }

  .hero-benefits.is-ready .benefit-card:not(.is-active) {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(.985);
  }

  .hero-benefits.is-ready .benefit-card.is-active {
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 80ms, 80ms, 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active,
  .hero-benefits.is-ready .benefit-card,
  .hero-benefits.is-ready .benefit-card.is-active,
  .hero-benefits.is-ready .benefit-card:not(.is-active) {
    transition: none;
    transform: none;
    will-change: auto;
  }
}

/* MOBILE HEADER COMPACT — reduz a faixa fixa sem afetar tablet/desktop */
@media (max-width: 767px) {
  .header {
    padding: 8px 0;
  }

  .logo img {
    height: 31px;
  }

  .editorial-page .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .editorial-page .nav {
    max-height: calc(100dvh - 52px);
  }

  .hero {
    padding-top: 52px;
    background: linear-gradient(to bottom, var(--bluepro-dark) 0 52px, #f6f8fb 52px 100%);
  }
}

@media (min-width: 1280px) {
  .nav,
  .nav.is-open {
    position: static;
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav > a:not(.btn-header) {
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  }

.nav > a:not(.btn-header):hover {
  color: var(--bluepro-accent);
}
  .btn-header {
    margin-top: 0;
    padding: 8px 24px;
    line-height: 24px;
    background: var(--bluepro-light);
    border: 1px solid transparent;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition: all 150ms ease;
  }

  .btn-header:hover {
    background: var(--bluepro-accent);
    border-color: rgb(255 255 255 / 0.2);
    transform: scale(1.05);
  }

  .menu-toggle {
    display: none;
  }

}

/* Sprint 03: shared navigation, intrinsic contact sizing and editorial corrections. */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip-path:inset(50%); white-space:nowrap; border:0; }
.skip-link { position:fixed; top:8px; left:16px; z-index:10000; padding:12px 18px; color:#fff; background:#031b3d; transform:translateY(-160%); }
.skip-link:focus { transform:none; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline:3px solid #0078ae; outline-offset:4px; }
.btn { display:inline-flex; justify-content:center; align-items:center; max-width:100%; }
.menu-toggle { width:44px; height:44px; place-items:center; }
.menu-toggle svg { margin:auto; }
.nav { max-height:calc(100dvh - 96px); overflow-y:auto; }
.nav > a { min-height:44px; display:flex; align-items:center; }
.nav .btn-header { justify-content:center; }
.video-media { min-width:0; width:100%; max-width:640px; margin-inline:auto; }
.video-secondary { display:block; width:fit-content; margin:18px auto 0; color:#b9e7ff; text-decoration:underline; text-underline-offset:4px; }
.service-body .service-eyebrow { font-size:11px; letter-spacing:.07em; font-weight:700; color:#006b9f; }
.service-cta { gap:8px; color:#006b9f; }
.service-cta svg { flex:none; }
.services-cta { display:flex; flex-wrap:wrap; justify-content:center; text-align:center; margin-top:36px; }
.category-pending { display:grid; place-content:center; justify-items:center; gap:10px; height:210px; background:#e9f2f7; color:#39586a; }
.category-pending svg { width:56px; height:56px; fill:none; stroke:currentColor; stroke-width:1.5; }
.products-window { flex:1; }
.products-track { margin:0; }
.product-card { flex:0 0 calc(33.333333% - 24px); }
.products-control { width:44px; height:44px; }
.about-container > .about-content { width:100%; max-width:768px; margin-bottom:32px; }
.text-link, .faq-item p a { color:#006b9f; text-decoration:underline; text-underline-offset:3px; }
.contact-info h3 { margin:0 0 20px; font-size:24px; line-height:1.4; }
@media (min-width:1280px) {
  .nav { overflow:visible; }
}
@media (min-width:1100px) { .contact-card { grid-template-columns:minmax(420px, 1fr) minmax(0, 1fr); } }
@media (max-width:1023px) { .product-card { flex-basis:calc(50% - 24px); } .about-container > .about-content { max-width:100%; } }
@media (max-width:767px) {
  html { scroll-padding-top:96px; }
  .product-card { flex-basis:calc(100% - 24px); }
  .products-carousel { gap:6px; }
  .products-control { width:36px; min-height:44px; }
  .product-card h3 { padding:18px 14px; font-size:18px; }
  .btn { padding:14px 22px; }
}
@media (max-width: 767px) {
  .brand-item {
    width: 118px;
    height: 78px;
    margin: 0 2px;
    padding: 6px;
  }

  .brand-item img {
    max-width: 100%;
    max-height: 100%;
  }
}

/* Foco do card inteiro, contido para nao ser cortado pelo carrossel. */
.benefit-card:focus-visible { outline: 3px solid var(--bluepro-light); outline-offset: -4px; }


/* Páginas editoriais: identidade compartilhada com a Home, sem catálogo. */
.editorial-page { background: #f6f8fb; }
.editorial-main { padding-top: 96px; }
.editorial-wrap { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: clamp(16px, 2.5vw, 32px); }
.editorial-page .skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 18px; color: #fff; background: #031b3d; transform: translateY(-180%); }
.editorial-page .skip-link:focus { transform: translateY(0); }
.editorial-page :is(a, button):focus-visible { outline: 3px solid #0085ca; outline-offset: 5px; }
.editorial-hero { padding-block: clamp(40px, 6vw, 88px); background: #031b3d; color: #fff; }
.editorial-hero .section-kicker, .editorial-closing .section-kicker { color: #7dd3fc; }
.editorial-intro { max-width: 920px; margin-inline: auto; text-align: center; }
.editorial-page h1 { max-width: 960px; margin: 12px 0 28px; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.08; letter-spacing: -.045em; overflow-wrap: break-word; }
.editorial-lead { max-width: 820px; color: #dbeafe; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.85; }
.editorial-lead p { margin: 0 0 18px; }
.editorial-page .editorial-cta { display: flex; width: fit-content; margin-inline: auto; min-height: 48px; max-width: 100%; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; padding: 12px 24px; color: #fff; background: #0085ca; border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.5; text-align: center; }
.editorial-page .editorial-cta:hover { background: #031b3d; border-color: #00a8e8; }
.editorial-hero-photo { position: relative; display: grid; min-height: clamp(380px, 45vw, 650px); align-items: end; isolation: isolate; padding-block: 64px; overflow: hidden; }
.editorial-hero-photo > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.editorial-hero-photo::before { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(180deg, rgb(3 27 61 / .22), rgb(3 27 61 / .84)); }
.editorial-hero-photo h1 { max-width: 850px; }
.editorial-hero-caption { margin: 18px 0 0; color: #dbeafe; font-size: 13px; }
.editorial-section { padding-block: clamp(48px, 7vw, 100px); }
.editorial-section + .editorial-section { padding-top: 0; }
.editorial-row { display: grid; align-items: center; gap: clamp(28px, 5vw, 72px); grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.editorial-row.is-reverse .editorial-media { order: 2; }
.editorial-media { margin: 0; min-width: 0; overflow: hidden; border-radius: 14px; background: #e4ebf3; }
.editorial-media img { display: block; width: 100%; height: clamp(320px, 35vw, 500px); object-fit: cover; }
.editorial-media.is-portrait img { object-position: 50% 66%; }
.editorial-media figcaption { padding: 12px 18px; color: #42546b; background: #eef3f8; font-size: 12px; line-height: 1.5; }
.editorial-copy { min-width: 0; }
.editorial-page h2 { margin: 10px 0 22px; font-size: clamp(27px, 3vw, 40px); line-height: 1.2; letter-spacing: -.035em; }
.editorial-copy p:not(.section-kicker), .editorial-section-intro { color: #46556b; line-height: 1.85; }
.editorial-section-heading { max-width: 820px; margin-bottom: 36px; }
.editorial-pending { margin-block: 24px; padding: 16px 20px; color: #4e5c6e; background: #eef2f6; border-left: 3px solid #8295a9; font-size: 14px; line-height: 1.7; }
.editorial-pending strong { display: block; margin-bottom: 5px; color: #33475f; font-size: 11px; letter-spacing: .06em; }
.editorial-media-pending { display: grid; min-height: 280px; align-content: center; padding: clamp(24px, 4vw, 52px); background: linear-gradient(135deg, #e6edf5, #f6f8fb); border: 1px dashed #9bafc4; border-radius: 14px; }
.editorial-media-pending .editorial-pending { margin: 0; padding: 0; background: none; border: 0; }
.editorial-closing { padding-block: clamp(48px, 6vw, 80px); color: #fff; background: #031b3d; }
.editorial-closing h2 { max-width: 820px; }
.editorial-models { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.editorial-model { padding: 30px; border: 1px dashed #a5b3c2; border-radius: 12px; background: #eef3f7; }
.editorial-model h3 { margin: 0 0 18px; font-size: 18px; }
.editorial-model p { margin: 0; color: #4e5c6e; font-size: 14px; line-height: 1.75; }
.editorial-model-photo { margin: 0 0 20px; overflow: hidden; border-radius: 8px; background: #e4ebf3; }
.editorial-model-photo img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: contain; }
.editorial-model .pending-label { display: block; margin-bottom: 18px; color: #40566f; font-size: 11px; font-weight: 700; letter-spacing: .07em; }
.editorial-destination { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 36px; padding-block: 36px; border-bottom: 1px solid #d5dfe9; }
.editorial-destination:first-of-type { padding-top: 12px; }
.editorial-destination.is-featured { padding-block: 44px; }
.editorial-destination-number { margin: 6px 0 0; color: #738aa2; font-size: clamp(38px, 6vw, 70px); font-weight: 300; line-height: 1; }
.editorial-destination h3 { margin: 0 0 12px; font-size: clamp(22px, 2.8vw, 32px); line-height: 1.3; }
.editorial-destination.is-featured h3 { font-size: clamp(27px, 3.2vw, 42px); }
.editorial-calendar { padding: clamp(20px, 4vw, 48px); background: #fff; border: 1px solid #cfdce9; border-radius: 14px; }
.calendar-months { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.calendar-month { min-height: 48px; padding: 12px 5px; color: #254360; background: #f3f6fa; border: 1px solid #c4d3e3; border-radius: 6px; cursor: pointer; font-size: 14px; }
.calendar-month:hover { border-color: #006fa9; }
.calendar-month[aria-selected="true"] { color: #fff; background: #031b3d; border-color: #031b3d; box-shadow: inset 0 -3px #7dd3fc; font-weight: 700; }
.calendar-panel { margin-top: 28px; padding-top: 28px; border-top: 1px solid #dce5ee; }
.calendar-panel h3 { margin: 0 0 14px; font-size: 26px; }
.calendar-panel p { margin: 8px 0; line-height: 1.75; }
.calendar-current { color: #52657c; font-size: 13px; }
.calendar-panel .editorial-pending { margin-top: 20px; }
@media (max-width: 899px) {
  .editorial-row { grid-template-columns: 1fr; gap: 28px; }
  .editorial-row.is-reverse .editorial-media { order: 0; }
  .editorial-media img { height: clamp(260px, 58vw, 500px); }
  .editorial-models { grid-template-columns: 1fr; gap: 16px; }
  .editorial-model { padding: 24px; }
  .editorial-destination { grid-template-columns: 65px minmax(0, 1fr); gap: 20px; }
  .calendar-months { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .editorial-main { padding-top: 52px; }
  .editorial-wrap { width: 100%; }
  .editorial-hero-photo { min-height: 430px; padding-block: 40px; }
  .editorial-hero-photo h1 { font-size: clamp(34px, 8vw, 48px); }
  .editorial-destination { grid-template-columns: 42px minmax(0, 1fr); gap: 16px; }
}
@media (max-width: 479px) {
  .calendar-months { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .calendar-month { font-size: 12px; }
  .editorial-page .editorial-cta { width: 100%; padding-inline: 16px; }
  .editorial-pending { padding: 14px; }
}

/* Eixo central das chamadas; cards, listas e dados mantêm leitura interna. */
.editorial-page :is(.editorial-hero h1, .editorial-lead, .editorial-section-heading, .editorial-closing h2) {
  margin-inline: auto;
}
.editorial-section-heading,
.editorial-hero-photo > .editorial-wrap > :is(.section-kicker, h1, .editorial-hero-caption),
.editorial-closing,
.editorial-copy > :is(.section-kicker, h2, p:not(.editorial-pending)) {
  text-align: center;
}


/* Rodapé oficial Blue Pro — padrão visual compartilhado */
.footer {
  padding: 64px 0 32px;
  color: #fff;
  background: #01132b;
  border-top: 1px solid #1f2937;
  font: 14px/1.5 "Open Sans", sans-serif;
  text-align: left;
}
.footer, .footer *, .footer *::before, .footer *::after { box-sizing: border-box; }
.footer > .container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 16px;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer .footer-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.footer .footer-grid h2 {
  margin: 0 0 4px;
  color: #0085ca;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: normal;
}
.footer p { margin: 0; }
.footer .footer-brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 48px;
  margin: 0 0 24px;
  object-fit: contain;
  opacity: .9;
}
.footer .footer-brand p {
  margin-bottom: 16px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.625;
}
.footer .footer-brand strong {
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.5;
}
.footer .footer-brand ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer .footer-brand ul li { display: block; }
.footer .footer-brand ul a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  color: #dbe7f4;
  background: #172844;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer .footer-brand ul a:hover,
.footer .footer-brand ul a:focus-visible {
  color: #fff;
  background: #20395f;
  transform: translateY(-1px);
}
.footer ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #9ca3af;
  font-size: 14px;
  list-style: none;
}
.footer a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 150ms ease;
}
.footer a:hover { color: #fff; }
.footer address {
  display: grid;
  gap: 7px;
  color: #9ca3af;
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}
.footer li span { color: #0085ca; }
.footer .hours { margin-top: 20px; }
.footer .hours strong {
  display: block;
  margin-bottom: 8px;
  color: #718096;
  font-size: 12px;
}
.footer .hours p {
  color: #9ca3af;
  font-size: 14px;
}
.footer .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  padding: 24px 0 0;
  color: #7f91a6;
  font-size: 13px;
  border-top: 1px solid #1f2937;
}
.footer .footer-meta { min-width: 0; }
.footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  min-width: 0;
  font-size: 12px;
}
.footer .footer-credit { font-size: 12px; }

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 120;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0,14px,0) scale(.92);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.8,.2,1), visibility 0s linear .55s;
  will-change: opacity, transform;
}
.floating-whatsapp.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0,0,0) scale(1);
  transition-delay: 0s;
  will-change: auto;
}
.floating-whatsapp svg { width: 28px; height: 28px; }

@media (min-width: 768px) {
  .footer > .container { padding-inline: 24px; }
  .footer .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 34px; }
  .footer .footer-bottom {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 32px;
  }
}
@media (min-width: 1024px) {
  .footer .footer-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
}

/* Header global compacto em tablet/desktop. Mobile permanece com 64px. */
@media (min-width: 768px) {
  html { scroll-padding-top: 96px; }
  .header { padding: 10px 0; }
  .hero { padding-top: 88px; }
  .editorial-main,
  .legal-main { padding-top: 76px; }


}

/* Imagens desta subpágina ficam isoladas para troca simples sem mexer no HTML estrutural. */
.editorial-destination-media{margin:18px 0 0;overflow:hidden;border-radius:12px;background:#dbe5ef}
.editorial-destination-media img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover}
@media(max-width:767px){.editorial-destination-media{margin-top:14px}}



/* Calendário editorial premium — subpágina Camping e Pesca */
.editorial-calendar {
  box-shadow: 0 18px 48px -38px rgb(3 27 61 / .45);
}
.calendar-panel {
  margin-top: 30px;
  padding-top: 30px;
}
.calendar-panel-heading h3 {
  margin: 0 0 8px;
  color: #031b3d;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}
.calendar-current {
  margin: 0 !important;
  color: #66778c;
  font-size: 14px;
}
.calendar-insights {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #dce5ee;
}
.calendar-insight {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}
.calendar-insight-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #063b72;
  background: #edf5fb;
  border-radius: 999px;
}
.calendar-insight-icon svg {
  width: 26px;
  height: 26px;
}
.calendar-insight-label {
  display: block;
  margin: 0 0 4px;
  color: #526985;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.calendar-insight strong {
  display: block;
  color: #031b3d;
  font-size: 22px;
  line-height: 1.25;
}
.calendar-insight p {
  margin: 0 !important;
  color: #263f5f;
  font-size: 15px;
  line-height: 1.65;
}
.calendar-insight ul {
  margin: 4px 0 0;
  padding-left: 20px;
  color: #263f5f;
  font-size: 15px;
  line-height: 1.7;
}
.calendar-cta {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  width: 100%;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 14px 20px;
  color: #fff;
  background: linear-gradient(135deg, #0069a7, #008bd1);
  border-radius: 12px;
  box-shadow: 0 12px 26px -18px rgb(0 105 167 / .75);
  font-weight: 800;
  text-align: center;
}
.calendar-cta:hover {
  background: linear-gradient(135deg, #005d96, #007fc2);
}
.calendar-cta svg {
  width: 24px;
  height: 24px;
}
.calendar-cta-arrow {
  justify-self: end;
}
.calendar-source {
  margin: 14px 0 0 !important;
  color: #74869a !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}
@media (max-width: 479px) {
  .editorial-calendar {
    padding: 16px;
  }
  .calendar-months {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .calendar-months::-webkit-scrollbar { display: none; }
  .calendar-month {
    min-width: 104px;
    flex: 0 0 104px;
    min-height: 48px;
    font-size: 12px;
  }
  .calendar-panel {
    margin-top: 18px;
    padding-top: 24px;
  }
  .calendar-panel-heading h3 {
    font-size: 28px;
  }
  .calendar-insights {
    gap: 20px;
    margin-top: 22px;
    padding-top: 22px;
  }
  .calendar-insight {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }
  .calendar-insight-icon {
    width: 42px;
    height: 42px;
  }
  .calendar-insight-icon svg {
    width: 23px;
    height: 23px;
  }
  .calendar-insight strong {
    font-size: 20px;
  }
  .calendar-insight p,
  .calendar-insight ul {
    font-size: 14px;
  }
  .calendar-cta {
    min-height: 56px;
    margin-top: 24px;
    padding-inline: 16px;
    font-size: 15px;
  }
}



/* CALENDARIO V3 — swipe mobile + peixe/isca/linha/destino */
.calendar-section{padding-top:0}
.calendar-heading{margin-bottom:18px}
.calendar-heading-copy{max-width:680px;margin:-8px auto 0;color:#5b6d82;font-size:14px;line-height:1.6;text-align:center}
.calendar-v2{max-width:760px;margin-inline:auto;padding:22px;overflow:hidden;border-radius:18px;box-shadow:0 20px 52px -38px rgb(3 27 61 / .55)}
.calendar-nav{display:grid;grid-template-columns:40px minmax(0,1fr) 40px;align-items:center;gap:6px}
.calendar-arrow{display:grid;width:40px;height:40px;place-items:center;padding:0;color:#053663;background:#edf5fb;border:1px solid #d7e5f1;border-radius:999px;cursor:pointer;font-size:28px;line-height:1}
.calendar-arrow:active{transform:scale(.96)}
.calendar-month-window{min-width:0;overflow:hidden;touch-action:pan-y;user-select:none;cursor:grab}
.calendar-month-window.is-dragging{cursor:grabbing}
.calendar-v2 .calendar-months{display:flex!important;width:100%;gap:0!important;padding:0!important;overflow:visible!important;transform:translate3d(calc(var(--month-index,0)*-100%),0,0);transition:transform 320ms cubic-bezier(.2,.75,.25,1);scrollbar-width:none}
.calendar-v2 .calendar-month{min-width:100%!important;flex:0 0 100%!important;min-height:44px!important;padding:4px 8px!important;color:#6b7d90!important;background:transparent!important;border:0!important;box-shadow:none!important;font-size:14px!important;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.calendar-v2 .calendar-month[aria-selected="true"]{color:#031b3d!important;font-size:21px!important;font-weight:800;letter-spacing:-.01em;text-transform:none}
.calendar-progress{width:84px;height:3px;margin:7px auto 0;overflow:hidden;background:#e2eaf2;border-radius:999px}
.calendar-progress span{display:block;width:calc(100%/12);height:100%;background:#0085ca;border-radius:inherit;transform:translateX(calc(var(--month-index,0)*100%));transition:transform 320ms ease}
.calendar-swipe-hint{margin:7px 0 0!important;color:#8291a3!important;font-size:11px!important;text-align:center}
.calendar-v2 .calendar-panel{margin-top:14px;padding-top:16px}
.calendar-topline{display:flex;align-items:center;justify-content:space-between;gap:10px}
.calendar-season-pill{display:inline-flex;min-height:26px;align-items:center;padding:4px 9px;color:#075281;background:#e9f5fb;border-radius:999px;font-size:10px;font-weight:800;letter-spacing:.08em}
.calendar-v2 .calendar-current{margin:0!important;color:#64768a;font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.calendar-fish-block{margin-top:15px;padding:15px 16px;background:linear-gradient(145deg,#031b3d,#073c72);border-radius:14px}
.calendar-block-label,.calendar-gear-card span,.calendar-technique span,.calendar-destination>span,.calendar-regulation strong{display:block;font-size:10px;font-weight:800;letter-spacing:.08em}
.calendar-block-label{color:#8bdcff}
.calendar-fish-block h3{margin:3px 0 2px;color:#fff;font-size:26px;line-height:1.05}
.calendar-fish-block p{margin:0!important;color:#d9edfb;font-size:12px;line-height:1.45}
.calendar-gear-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:10px}
.calendar-gear-card{min-width:0;padding:12px;background:#f4f8fb;border:1px solid #dce7f0;border-radius:12px}
.calendar-gear-card span{margin-bottom:4px;color:#61758c}
.calendar-gear-card strong{display:block;color:#0c355c;font-size:13px;line-height:1.35}
.calendar-technique,.calendar-destination,.calendar-regulation{margin-top:10px;padding:11px 13px;border-radius:12px}
.calendar-technique{background:#fff;border:1px solid #dce7f0}
.calendar-technique span{color:#61758c}
.calendar-technique p{margin:3px 0 0!important;color:#274767;font-size:12px;line-height:1.45}
.calendar-destination{display:block;background:#ecf7fc;border:1px solid #cce8f6}
.calendar-destination>span{color:#53718d}
.calendar-destination strong{display:block;margin-top:2px;color:#006ba6;font-size:15px;line-height:1.25}
.calendar-destination small{display:block;margin-top:2px;color:#52677c;font-size:11px;line-height:1.35}
.calendar-regulation{background:#fff8e9;border:1px solid #f2dfad}
.calendar-regulation strong{color:#8a6414}
.calendar-regulation p{margin:3px 0 0!important;color:#65542f;font-size:11px;line-height:1.4}
.calendar-v2 .calendar-cta{grid-template-columns:1fr 20px;min-height:48px;margin-top:11px;padding:11px 16px;border-radius:11px;font-size:14px}
.calendar-v2 .calendar-cta svg{width:20px;height:20px}
.calendar-v2 .calendar-source{margin:9px 0 0!important;color:#7b8b9c!important;font-size:9px!important;line-height:1.4!important}
.editorial-destination-media img,.editorial-media img,.editorial-hero-photo>img{image-rendering:auto;object-fit:cover;object-position:center}
@media(max-width:479px){
#calendario.editorial-section{min-height:calc(100svh - 52px);display:grid;align-items:center;padding-block:22px 26px}
#calendario .editorial-wrap{padding-inline:12px}
#calendario .calendar-heading{margin-bottom:12px}
#calendario .calendar-heading .section-kicker{margin-bottom:4px;font-size:10px}
#calendario .calendar-heading h2{margin:4px 0 6px;font-size:25px;line-height:1.12}
#calendario .calendar-heading-copy{display:none}
.calendar-v2{width:100%;padding:14px;border-radius:16px}
.calendar-nav{grid-template-columns:36px minmax(0,1fr) 36px}
.calendar-arrow{width:36px;height:36px;font-size:25px}
.calendar-v2 .calendar-month{min-height:38px!important}
.calendar-v2 .calendar-month[aria-selected="true"]{font-size:20px!important}
.calendar-progress{margin-top:4px}
.calendar-swipe-hint{margin-top:4px!important}
.calendar-v2 .calendar-panel{margin-top:9px;padding-top:11px}
.calendar-fish-block{margin-top:10px;padding:12px 13px}
.calendar-fish-block h3{font-size:23px}
.calendar-gear-grid{gap:7px;margin-top:7px}
.calendar-gear-card{padding:9px 10px}
.calendar-gear-card strong{font-size:12px}
.calendar-technique,.calendar-destination,.calendar-regulation{margin-top:7px;padding:9px 10px}
.calendar-technique p{font-size:11px}
.calendar-destination strong{font-size:14px}
.calendar-destination small,.calendar-regulation p{font-size:10px}
.calendar-v2 .calendar-cta{min-height:44px;margin-top:8px;padding:9px 13px;font-size:13px}
.calendar-v2 .calendar-source{margin-top:7px!important;font-size:8px!important}
}
@media(min-width:480px){.calendar-v2 .calendar-panel{min-height:500px}}



/* CALENDARIO V4 — seletor recolhível, fotos e cards com ícones */
#calendario .calendar-v4{
  position:relative;
  overflow:visible;
  max-width:760px;
  border:1px solid rgb(255 255 255 / .12);
  border-radius:24px;
}
.calendar-v4 .calendar-nav{
  display:grid;
  grid-template-columns:48px minmax(0,1fr) 48px;
  align-items:center;
  gap:0;
  padding:3px;
  background:linear-gradient(180deg,#fff,#f1f8fe);
  border:1px solid #d4e5f3;
  border-radius:999px;
  box-shadow:0 12px 26px -20px rgb(3 27 61 / .85);
}
.calendar-v4 .calendar-arrow{
  display:grid;
  width:46px;
  height:46px;
  place-items:center;
  padding:0;
  color:#0877c9;
  background:transparent;
  border:0;
  border-radius:999px;
  box-shadow:none;
  transition:transform .18s ease,background .18s ease,color .18s ease;
}
.calendar-v4 .calendar-arrow svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.calendar-v4 .calendar-arrow:hover{
  color:#005f9f;
  background:transparent;
}
.calendar-v4 .calendar-arrow:active{transform:scale(.94)}
.calendar-month-toggle{
  display:flex;
  width:100%;
  min-height:46px;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 16px;
  color:#082f59;
  background:transparent;
  border:0;
  border-radius:999px;
  box-shadow:none;
  cursor:pointer;
  font:inherit;
  font-size:21px;
  font-weight:800;
  line-height:1;
  transition:background .18s ease,transform .18s ease;
}
.calendar-month-toggle:hover{
  background:transparent;
}
.calendar-month-toggle:active{transform:scale(.985)}
.calendar-month-chevron{
  width:16px;
  height:16px;
  margin-left:1px;
  fill:none;
  color:#0b78b8;
  opacity:.82;
  stroke:currentColor;
  stroke-width:2.15;
  stroke-linecap:round;
  stroke-linejoin:round;
  transform:translateY(1px);
  transform-origin:center;
  transition:
    color .18s ease,
    opacity .18s ease,
    transform .24s cubic-bezier(.2,.8,.2,1);
}
.calendar-month-toggle:hover .calendar-month-chevron{
  color:#0085ca;
  opacity:1;
}
.calendar-v4.is-month-picker-open .calendar-month-chevron{
  color:#0085ca;
  opacity:1;
  transform:translateY(-1px) rotate(180deg);
}
.calendar-v4 .calendar-progress{margin-top:8px}
.calendar-month-picker{
  position:relative;
  z-index:8;
  margin-top:10px;
  padding:10px;
  background:rgb(255 255 255 / .98);
  border:1px solid #d9e7f2;
  border-radius:17px;
  box-shadow:0 18px 38px -24px rgb(3 27 61 / .75);
  animation:calendarPickerIn .2s ease both;
}
.calendar-month-picker[hidden]{display:none!important}
@keyframes calendarPickerIn{
  from{opacity:0;transform:translateY(-6px)}
  to{opacity:1;transform:translateY(0)}
}
.calendar-v4 .calendar-months{
  display:grid!important;
  width:auto!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:7px!important;
  padding:0!important;
  overflow:visible!important;
  transform:none!important;
  transition:none!important;
}
.calendar-v4 .calendar-month{
  min-width:0!important;
  min-height:44px!important;
  flex:none!important;
  padding:8px 6px!important;
  color:#173b61!important;
  background:#f4f9fd!important;
  border:1px solid #d4e4f0!important;
  border-radius:11px!important;
  box-shadow:none!important;
  font-size:13px!important;
  font-weight:800!important;
  letter-spacing:.01em!important;
  text-transform:none!important;
  transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease;
}
.calendar-v4 .calendar-month:hover{
  border-color:#98cdef!important;
  background:#eef8ff!important;
}
.calendar-v4 .calendar-month:active{transform:scale(.97)}
.calendar-v4 .calendar-month[aria-selected="true"]{
  color:#fff!important;
  background:linear-gradient(135deg,#008bd8,#0574d1)!important;
  border-color:#087fd4!important;
  box-shadow:0 8px 18px -11px rgb(0 111 169 / .95)!important;
  font-size:13px!important;
}
.calendar-v4 .calendar-swipe-hint{margin-top:7px!important}
.calendar-v4 .calendar-panel{
  margin-top:10px!important;
  padding-top:0!important;
  border-top:0!important;
  touch-action:pan-y;
  user-select:none;
}
.calendar-v4 .calendar-panel.is-dragging{cursor:grabbing}
.calendar-v4 .calendar-topline{margin-bottom:10px}
.calendar-v4 .calendar-fish-block{
  position:relative;
  min-height:220px;
  overflow:hidden;
  margin-top:0;
  padding:22px 24px;
  isolation:isolate;
  background:#062c55;
  border:1px solid rgb(125 211 252 / .2);
  border-radius:18px;
  box-shadow:0 18px 34px -28px rgb(3 27 61 / .85);
}
.calendar-v4 .calendar-fish-photo{
  position:absolute;
  inset:0;
  z-index:-3;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:none;
}
.calendar-v4 .calendar-fish-block::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background:
    linear-gradient(180deg,rgba(3,27,61,.34) 0%,rgba(3,27,61,.08) 27%,rgba(3,27,61,0) 48%,rgba(3,27,61,0) 66%,rgba(3,27,61,.42) 100%),
    linear-gradient(90deg,rgba(3,27,61,.26) 0%,rgba(3,27,61,.08) 30%,rgba(3,27,61,0) 58%);
}
.calendar-v4 .calendar-fish-copy{
  position:absolute;
  inset:0;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:22px 24px;
  max-width:none;
  pointer-events:none;
}
.calendar-v4 .calendar-block-label{
  color:#42c5ff;
  font-size:11px;
  letter-spacing:.09em;
}
.calendar-v4 .calendar-fish-block h3{
  margin:5px 0 8px;
  color:#fff;
  font-size:clamp(28px,4vw,36px);
  line-height:1;
  text-shadow:0 2px 12px rgb(0 0 0 / .25);
}
.calendar-v4 .calendar-fish-block p{
  max-width:620px;
  margin:auto 0 0!important;
  color:#f1f7fb;
  font-size:13px;
  line-height:1.5;
  text-shadow:0 1px 10px rgb(0 0 0 / .5);
}
.calendar-v4 .calendar-gear-grid{
  gap:10px;
  margin-top:10px;
}
.calendar-v4 .calendar-info-card,
.calendar-v4 .calendar-info-row{
  display:grid;
  align-items:center;
  gap:11px;
}
.calendar-v4 .calendar-info-card{
  grid-template-columns:44px minmax(0,1fr);
  min-height:88px;
  padding:12px 13px;
  background:linear-gradient(180deg,#fff,#f6fbff);
  border:1px solid #d9e7f2;
  border-radius:15px;
  box-shadow:0 10px 26px -24px rgb(3 27 61 / .7);
}
.calendar-v4 .calendar-card-icon{
  display:grid;
  width:44px;
  height:44px;
  place-items:center;
  color:#0574d1;
  background:#e3f3ff;
  border-radius:999px;
}
.calendar-v4 .calendar-card-icon svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.calendar-v4 .calendar-gear-card span:not(.calendar-card-icon),
.calendar-v4 .calendar-technique>div>span,
.calendar-v4 .calendar-destination>div>span,
.calendar-v4 .calendar-regulation>div>strong{
  display:block;
  margin:0 0 4px;
  color:#0d6caf;
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
}
.calendar-v4 .calendar-gear-card strong{
  color:#163e64;
  font-size:12px;
  line-height:1.35;
}
.calendar-v4 .calendar-info-row{
  grid-template-columns:44px minmax(0,1fr);
  min-height:78px;
  padding:12px 13px;
  border-radius:15px;
}
.calendar-v4 .calendar-technique{
  background:#fff;
  border:1px solid #d9e7f2;
}
.calendar-v4 .calendar-technique p{
  margin:0!important;
  color:#31516f;
  font-size:11.5px;
  line-height:1.45;
}
.calendar-v4 .calendar-destination{
  background:linear-gradient(100deg,#eaf7ff,#f4fbff);
  border:1px solid #cce7f6;
}
.calendar-v4 .calendar-destination strong{
  display:block;
  margin:0;
  color:#056ab6;
  font-size:15px;
  line-height:1.25;
}
.calendar-v4 .calendar-destination small{
  display:block;
  margin-top:3px;
  color:#526b82;
  font-size:10.5px;
  line-height:1.4;
}
.calendar-v4 .calendar-regulation{
  background:linear-gradient(100deg,#fff8ea,#fffdf7);
  border:1px solid #f1d99c;
}
.calendar-v4 .calendar-regulation .calendar-card-icon-warm{
  color:#b5790a;
  background:#fff0cc;
}
.calendar-v4 .calendar-regulation>div>strong{color:#9a690e}
.calendar-v4 .calendar-regulation p{
  margin:0!important;
  color:#6b5833;
  font-size:10.5px;
  line-height:1.42;
}
.calendar-v4 .calendar-cta{
  display:flex;
  min-height:52px;
  align-items:center;
  justify-content:center;
  gap:0;
  margin-top:10px;
  padding:11px 18px;
  background:linear-gradient(135deg,#0085ca,#00a8e8);
  border-radius:999px;
  box-shadow:0 13px 28px -18px rgb(0 105 182 / .9);
  font-size:14px;
}
.calendar-v4 .calendar-cta:hover{
  background:#031b3d;
}
.calendar-v4 .calendar-fish-credits{
  margin-top:7px;
  color:#8291a3;
  font-size:8px;
  line-height:1.35;
}
.calendar-v4 .calendar-fish-credits summary{
  width:fit-content;
  cursor:pointer;
  color:#8291a3;
  font-weight:700;
}
.calendar-v4 .calendar-fish-credits-list{
  margin-top:6px;
  padding:8px 10px;
  background:#f7fafc;
  border:1px solid #e5edf3;
  border-radius:10px;
}
.calendar-v4 .calendar-fish-credits-list p{margin:0!important}
.calendar-v4 .calendar-fish-credits-list p+p{margin-top:3px!important}
@media(max-width:479px){
  #calendario .calendar-v4{
    padding:12px;
    border-radius:18px;
  }
  .calendar-v4 .calendar-nav{
    grid-template-columns:42px minmax(0,1fr) 42px;
    gap:0;
  }
  .calendar-v4 .calendar-arrow{
    width:42px;
    height:42px;
  }
  .calendar-month-toggle{
    min-height:46px;
    padding:8px 14px;
    font-size:20px;
  }
  .calendar-month-picker{
    padding:8px;
    border-radius:14px;
  }
  .calendar-v4 .calendar-months{gap:6px!important}
  .calendar-v4 .calendar-month{
    min-height:40px!important;
    font-size:12px!important;
  }
  .calendar-v4 .calendar-month[aria-selected="true"]{font-size:12px!important}
  .calendar-v4 .calendar-fish-block{
    min-height:185px;
    padding:15px 14px;
    border-radius:15px;
  }
  .calendar-v4 .calendar-fish-copy{
    padding:15px 14px;
    max-width:none;
  }
  .calendar-v4 .calendar-fish-block h3{
    margin:4px 0 6px;
    font-size:25px;
  }
  .calendar-v4 .calendar-fish-block p{
    width:100%;
    max-width:none;
    font-size:11.75px;
    line-height:1.34;
    letter-spacing:-.012em;
  }
  .calendar-v4 .calendar-block-label{font-size:9px}
  .calendar-v4 .calendar-info-card{
    grid-template-columns:36px minmax(0,1fr);
    gap:8px;
    min-height:82px;
    padding:9px;
  }
  .calendar-v4 .calendar-info-row{
    grid-template-columns:38px minmax(0,1fr);
    gap:9px;
    min-height:70px;
    padding:9px 10px;
  }
  .calendar-v4 .calendar-card-icon{
    width:36px;
    height:36px;
  }
  .calendar-v4 .calendar-card-icon svg{
    width:20px;
    height:20px;
  }
  .calendar-v4 .calendar-gear-card strong{font-size:10.5px}
  .calendar-v4 .calendar-technique p{font-size:10.5px}
  .calendar-v4 .calendar-destination strong{font-size:13px}
  .calendar-v4 .calendar-destination small,
  .calendar-v4 .calendar-regulation p{font-size:9.5px}
  .calendar-v4 .calendar-cta{
    min-height:46px;
    padding:9px 14px;
    font-size:13px;
  }
  .calendar-v4 .calendar-source{font-size:7.5px!important}
}
@media(min-width:480px){
  .calendar-v4 .calendar-month-picker{
    max-width:620px;
    margin-inline:auto;
  }
}

/* SEQUENCIA DE DOBRAS — escuro / claro / escuro / claro */
#regiao{
  background:#f6f8fb;
}

#calendario.editorial-section{
  padding-block:clamp(48px,7vw,88px);
  color:#fff;
  background:#031b3d;
}

#calendario .calendar-heading .section-kicker{
  color:#7dd3fc;
}

#calendario .calendar-heading h2{
  color:#fff;
}

#calendario .calendar-heading-copy{
  color:#c9d8e8;
}

#calendario .calendar-v2{
  color:#031b3d;
  background:#fff;
  border-color:rgb(255 255 255 / .14);
  box-shadow:0 24px 60px -34px rgb(0 0 0 / .65);
}

#javae-camp.editorial-section{
  padding-block:clamp(48px,7vw,88px);
  color:#031b3d;
  background:#fff;
}

#javae-camp .editorial-copy p:not(.section-kicker){
  color:#46556b;
}

.editorial-closing{
  background:#031b3d;
}

@media(max-width:479px){
  #calendario.editorial-section{
    min-height:calc(100svh - 52px);
    padding-block:22px 26px;
  }

  #javae-camp.editorial-section{
    padding-block:34px;
  }
}



/* REGIAO V2 — carrossel fotografico premium */
#region.region-carousel-section{
  overflow:hidden;
  padding-block:clamp(42px,6vw,76px);
  background:#f6f8fb;
}

#region .region-heading{
  max-width:900px;
  margin:0 auto 26px;
  text-align:center;
}

#region .region-heading .section-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:10px;
  color:#0085ca;
  text-align:center;
}

#region .region-heading .section-kicker::before,
#region .region-heading .section-kicker::after{
  width:46px;
  height:2px;
  content:"";
  background:#0085ca;
  border-radius:999px;
}

#region .region-heading h2{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

.region-carousel{
  position:relative;
  width:100%;
  max-width:1060px;
  margin-inline:auto;
}

.region-carousel-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:0 5% 4px;
  scroll-behavior:smooth;
  scroll-padding-inline:5%;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}

.region-carousel-track::-webkit-scrollbar{
  display:none;
}

.region-slide{
  min-width:0;
  flex:0 0 88%;
  scroll-snap-align:center;
  scroll-snap-stop:always;
}

.region-slide-media{
  position:relative;
  width:100%;
  aspect-ratio:4 / 3;
  margin:0;
  overflow:hidden;
  background:#dce7f0;
  border-radius:18px;
  box-shadow:0 24px 50px -34px rgb(3 27 61 / .65);
  isolation:isolate;
}

.region-slide-media::after{
  position:absolute;
  inset:38% 0 0;
  z-index:1;
  content:"";
  pointer-events:none;
  background:linear-gradient(180deg,transparent,rgb(2 15 33 / .84) 82%);
}

.region-slide-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  image-rendering:auto;
  transform:translateZ(0);
}

.region-photo{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
}

.region-image-credits{
  width:fit-content;
  max-width:min(92%,760px);
  margin:8px auto 0;
  color:#7c8da0;
  font-size:10px;
  line-height:1.45;
  text-align:left;
}

.region-image-credits summary{
  width:fit-content;
  margin-inline:auto;
  color:#7c8da0;
  cursor:pointer;
  font-weight:600;
  list-style-position:inside;
}

.region-image-credits-list{
  margin-top:8px;
  padding:10px 12px;
  background:#f7fafc;
  border:1px solid rgb(3 27 61 / .08);
  border-radius:12px;
}

.region-image-credits-list p{
  margin:0;
}

.region-image-credits-list p + p{
  margin-top:5px;
}

.region-image-credits a{
  color:inherit;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:2px;
}

.region-illustrative{
  position:absolute;
  top:47%;
  left:50%;
  z-index:2;
  width:max-content;
  max-width:88%;
  padding:5px 9px;
  color:rgb(255 255 255 / .82);
  background:rgb(3 27 61 / .22);
  border:1px solid rgb(255 255 255 / .16);
  border-radius:999px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.04em;
  text-align:center;
  transform:translate(-50%,-50%);
  backdrop-filter:blur(3px);
}

.region-slide-overlay{
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  z-index:3;
  padding:22px;
  color:#fff;
}


.region-slide-overlay h3{
  max-width:760px;
  margin:0;
  color:#fff;
  font-size:clamp(24px,3.4vw,38px);
  line-height:1.08;
  letter-spacing:-.035em;
}

.region-slide-overlay p{
  margin:8px 0 0;
  color:#e4edf6;
  font-size:14px;
  line-height:1.45;
}

.region-carousel-controls{
  display:grid;
  grid-template-columns:44px minmax(0,1fr) 44px;
  align-items:center;
  justify-content:center;
  gap:7px;
  width:240px;
  margin:10px auto 0;
  padding:4px 6px;
  background:#f7fafc;
  border:1px solid rgb(3 27 61 / .08);
  border-radius:999px;
  box-shadow:0 6px 16px rgb(3 27 61 / .055);
}

.region-carousel-arrow{
  position:static;
  display:grid;
  width:44px;
  height:44px;
  place-items:center;
  padding:0;
  color:#0085ca;
  background:transparent;
  border:0;
  border-radius:50%;
  box-shadow:none;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease,color .18s ease;
}

.region-carousel-arrow svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.region-carousel-arrow:active{
  color:#fff;
  background:#0085ca;
  transform:scale(.94);
}

@media(hover:hover) and (pointer:fine){
  .region-carousel-arrow:hover,
  .region-carousel-arrow:focus-visible{
    color:#fff;
    background:#0085ca;
    transform:translateY(-1px);
  }
}

.region-carousel-dots{
  display:flex;
  min-width:70px;
  min-height:0;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin:0;
}

.region-dot{
  width:7px;
  height:7px;
  padding:0;
  background:#d5dee7;
  border:0;
  border-radius:999px;
  cursor:pointer;
  transition:width .22s ease,background .22s ease;
}

.region-dot.is-active{
  width:22px;
  background:#0085ca;
}

.region-whatsapp-cta{
  display:flex;
  width:fit-content;
  min-height:48px;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:14px auto 0;
  padding:12px 20px;
  color:#fff;
  background:#0085ca;
  border:1px solid rgb(0 133 202 / .14);
  border-radius:999px;
  box-shadow:0 8px 20px rgb(3 27 61 / .12);
  font-size:13.5px;
  font-weight:700;
  line-height:1.15;
  text-decoration:none;
  transition:transform .18s ease,background .18s ease,box-shadow .18s ease;
}

.region-whatsapp-cta svg{
  width:17px;
  height:17px;
  flex:0 0 17px;
}

.region-whatsapp-cta:active{
  transform:scale(.97);
}

@media(hover:hover) and (pointer:fine){
  .region-whatsapp-cta:hover,
  .region-whatsapp-cta:focus-visible{
    background:#031b3d;
    box-shadow:0 10px 24px rgb(3 27 61 / .16);
    transform:translateY(-1px);
  }
}

.region-swipe-hint{
  margin:1px 0 0;
  color:#7c8da0;
  font-size:12px;
  text-align:center;
}

@media(max-width:767px){
  #region.region-carousel-section{
    padding-block:30px 34px;
  }

  #region .editorial-wrap{
    padding-inline:0;
  }

  #region .region-heading{
    width:100%;
    margin-bottom:18px;
    padding-inline:18px;
  }

  #region .region-heading .section-kicker{
    gap:10px;
    font-size:11px;
  }

  #region .region-heading .section-kicker::before,
  #region .region-heading .section-kicker::after{
    width:30px;
  }

  #region .region-heading h2{
    max-width:355px;
    font-size:clamp(27px,7.4vw,34px);
    line-height:1.1;
  }

  .region-carousel-track{
    gap:12px;
    padding-inline:6%;
    scroll-padding-inline:6%;
  }

  .region-slide{
    flex-basis:88%;
  }

  .region-slide-media{
    aspect-ratio:4 / 5;
    max-height:58svh;
    min-height:390px;
    border-radius:18px;
  }

  .region-slide-overlay{
    padding:20px;
  }

  .region-slide-overlay h3{
    max-width:94%;
    font-size:clamp(23px,6.5vw,30px);
  }

  .region-slide-overlay p{
    max-width:90%;
    font-size:13px;
  }
  .region-carousel-controls{
    width:228px;
    margin-top:10px;
  }

  .region-carousel-arrow{
    width:42px;
    height:42px;
  }

.region-swipe-hint{
    font-size:11px;
  }
}

@media(max-width:390px){
  .region-slide-media{
    min-height:360px;
  }

  .region-slide-overlay{
    padding:16px;
  }

  .region-slide-overlay h3{
    font-size:22px;
  }
}



/* HERO V2 — imagem responsiva + primeira dobra mobile */
.editorial-hero-photo{
  min-height:clamp(520px,72vh,760px);
}
.editorial-hero-picture{
  position:absolute;
  inset:0;
  z-index:-2;
  display:block;
}
.editorial-hero-picture img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 52%;
}
.editorial-hero-photo::before{
  background:linear-gradient(180deg,rgb(3 27 61 / .18) 0%,rgb(3 27 61 / .36) 42%,rgb(3 27 61 / .86) 100%);
}
@media(max-width:767px){
  .editorial-hero-photo{
    min-height:calc(100svh - 52px);
    padding-block:36px;
    align-items:end;
  }
  .editorial-hero-picture img{
    object-position:center center;
  }
  .editorial-hero-photo>.editorial-wrap{
    padding-bottom:clamp(18px,5svh,44px);
  }
  .editorial-hero-photo h1{
    max-width:340px;
    margin-inline:auto;
    font-size:clamp(32px,8.4vw,42px);
    line-height:1.06;
    text-align:center;
  }
  .editorial-hero-photo>.editorial-wrap>.section-kicker,
  .editorial-hero-caption{
    text-align:center;
  }
}



/* HERO V3 — corrige camada da imagem */
.editorial-hero-photo{
  isolation:isolate;
}
.editorial-hero-picture{
  z-index:0;
}
.editorial-hero-photo::before{
  z-index:1;
}
.editorial-hero-photo>.editorial-wrap{
  position:relative;
  z-index:2;
}

/* HERO V5 ? foto aprovada pelo cliente no mobile/tablet */
@media (min-width:768px) and (max-width:1024px){
  .editorial-hero-picture img{
    object-position:center 56%;
  }
}


/* HERO V6 ? texto editorial e legenda discreta */
.editorial-hero-lead{
  max-width:620px;
  margin:0 auto;
  color:#eef7ff;
  font-size:clamp(15px,1.35vw,18px);
  line-height:1.55;
  text-align:center;
  text-shadow:0 2px 14px rgb(0 0 0 / .28);
}
.editorial-hero-caption{
  position:absolute;
  z-index:2;
  right:16px;
  bottom:10px;
  left:16px;
  margin:0;
  color:rgb(232 243 255 / .76);
  font-size:10px;
  line-height:1.25;
  text-align:center;
  letter-spacing:.01em;
}
.editorial-hero-photo>.editorial-wrap>.section-kicker{
  margin-bottom:10px;
}
.editorial-hero-photo h1{
  margin:0 auto 14px;
}
@media(max-width:767px){
  .editorial-hero-photo>.editorial-wrap{
    width:min(100%,390px);
    padding-bottom:clamp(40px,5svh,52px);
  }
  .editorial-hero-photo>.editorial-wrap>.section-kicker{
    margin-bottom:10px;
    font-size:11px;
    line-height:1.25;
    letter-spacing:.12em;
  }
  .editorial-hero-photo h1{
    max-width:370px;
    margin:0 auto 12px;
    font-size:clamp(29px,7.45vw,37px);
    line-height:1.08;
    letter-spacing:-.035em;
  }
  .editorial-hero-lead{
    max-width:330px;
    font-size:14px;
    line-height:1.5;
  }
  .editorial-hero-caption{
    bottom:8px;
    font-size:9px;
    opacity:.82;
  }
}


/* HERO V7 — headline no ceu e CTA na base mobile */
.editorial-hero-cta{
  position:absolute;
  z-index:3;
  left:50%;
  bottom:42px;
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 15px;
  color:#fff;
  background:#0085ca;
  border:1px solid rgb(125 211 252 / .55);
  border-radius:999px;
  box-shadow:0 10px 28px rgb(0 0 0 / .28);
  font-size:12.5px;
  font-weight:700;
  line-height:1.15;
  text-decoration:none;
  white-space:nowrap;
  transform:translateX(-50%);
  transition:transform .18s ease,background .18s ease,box-shadow .18s ease;
}
.editorial-hero-cta-icon{
  width:17px;
  height:17px;
  flex:0 0 17px;
}
.editorial-hero-cta:hover,
.editorial-hero-cta:focus-visible{
  background:#031b3d;
  box-shadow:0 12px 32px rgb(0 0 0 / .34);
  transform:translateX(-50%) translateY(-1px);
}

@media(max-width:767px){
  .editorial-hero-photo{
    align-items:stretch;
    padding-block:0;
  }
  .editorial-hero-photo::before{
    background:none;
  }
  .editorial-hero-photo>.editorial-wrap{
    position:absolute;
    z-index:2;
    top:16%;
    left:50%;
    width:min(calc(100% - 30px),390px);
    padding:0;
    transform:translateX(-50%);
  }
  .editorial-hero-photo>.editorial-wrap>.section-kicker{
    color:#62d4ff;
    font-weight:700;
    text-shadow:
      0 2px 3px rgb(3 27 61 / .95),
      0 0 8px rgb(3 27 61 / .90);
  }
  .editorial-hero-photo h1{
    color:#fff;
    text-shadow:
      0 2px 2px #031b3d,
      0 4px 8px rgb(3 27 61 / .95),
      0 0 14px rgb(3 27 61 / .88);
  }
  .editorial-hero-lead{
    color:#fff;
    font-weight:500;
    text-shadow:
      0 2px 2px #031b3d,
      0 3px 7px rgb(3 27 61 / .92),
      0 0 12px rgb(3 27 61 / .82);
  }
  .editorial-hero-cta{
    bottom:38px;
    min-height:44px;
    padding:9px 16px;
    font-size:13.5px;
  }
  .editorial-hero-caption{
    bottom:8px;
  }
}

@media(max-width:360px){
  .editorial-hero-photo>.editorial-wrap{
    top:14%;
    width:calc(100% - 24px);
  }
  .editorial-hero-photo h1{
    font-size:clamp(27px,8.4vw,31px);
  }
  .editorial-hero-lead{
    max-width:290px;
    font-size:13px;
  }
  .editorial-hero-cta{
    bottom:38px;
    padding-inline:13px;
    font-size:13.5px;
  }
}


/* SCROLL_MOTION_LAYER_V1 */
/* Movimento editorial discreto. N?o altera geometria/layout dos blocos. */
/* Entrada editorial do carrossel: centro -> direita -> esquerda. */
.region-card-intro{
  opacity:0;
  transform:translate3d(0,24px,0);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.8,.2,1);
  transition-delay:var(--region-card-delay,0ms);
  will-change:opacity,transform;
}

.region-card-intro.is-region-card-visible{
  opacity:1;
  transform:translate3d(0,0,0);
  will-change:auto;
}

.scroll-reveal{
  opacity:0;
  transform:translate3d(0,22px,0);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2,.8,.2,1);
  transition-delay:var(--reveal-delay,0ms);
  will-change:opacity,transform;
}

.scroll-reveal.is-visible{
  opacity:1;
  transform:none;
  will-change:auto;
}

@media(prefers-reduced-motion:reduce){
  .scroll-reveal,
  .region-card-intro{
    opacity:1;
    transform:none;
    transition:none;
  }

  .floating-whatsapp{
    transform:none;
    transition:none;
  }
}

/* CTAs comerciais compactos no mobile */
@media(max-width:479px){
  #javae-camp .editorial-cta,
  .editorial-closing .editorial-cta{
    width:260px;
    max-width:calc(100% - 32px);
    min-height:44px;
    margin:10px auto 0;
    padding:10px 16px;
    font-size:inherit;
    line-height:1.15;
    white-space:nowrap;
  }
}
