/* =========================================================
   IMAGINEI.ART - STYLE.CSS ÚNICO
   Index + Create + Página Para Crianças
========================================================= */

:root {
  --blue: #062b66;
  --blue-dark: #031b40;
  --blue-soft: #eaf2ff;
  --yellow: #ffb703;
  --yellow-dark: #f2a600;
  --white: #ffffff;
  --text: #16213e;
  --muted: #667085;
  --border: #e5eaf3;
  --success: #18b957;
  --danger: #d92d20;
  --shadow: 0 16px 40px rgba(6, 43, 102, 0.10);
  --shadow-soft: 0 8px 24px rgba(6, 43, 102, 0.08);
  --shadow-strong: 0 28px 80px rgba(3, 27, 64, 0.25);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --header-height: 82px;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 40%, #f7faff 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

section {
  scroll-margin-top: 110px;
}

/* BOTÕES GERAIS */

.btn {
  min-height: 50px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(255, 183, 3, 0.35);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  color: var(--yellow-dark);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 234, 243, 0.95);
  box-shadow: 0 8px 28px rgba(6, 43, 102, 0.05);
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 32px rgba(6, 43, 102, 0.10);
}

.header-container {
  width: min(var(--max-width), calc(100% - 44px));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.logo-area {
  width: 108px;
  height: 108px;
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
  margin-bottom: -38px;
  margin-right: 36px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(6, 43, 102, 0.14));
}

.main-nav {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-link {
  min-height: var(--header-height);
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.cart-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--blue);
  border-radius: 12px;
  font-size: 1.3rem;
  transition: 0.25s ease;
}

.cart-button:hover {
  background: var(--blue-soft);
  color: var(--yellow-dark);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: -1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--blue);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.login-button {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.login-button:hover {
  color: var(--yellow-dark);
  border-color: var(--yellow);
}

.create-now-button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 183, 3, 0.30);
  transition: 0.25s ease;
}

.create-now-button:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.create-hero-button {
  color: var(--blue-dark);
}

.create-hero-button small {
  display: block;
  margin-left: 4px;
  font-size: 0.72rem;
  font-weight: 900;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--blue);
  border-radius: 12px;
  font-size: 1.55rem;
  transition: 0.25s ease;
}

.menu-toggle:hover {
  background: var(--blue-soft);
}

.mobile-menu {
  display: none;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  padding: 10px;
}

.mobile-menu a {
  padding: 14px 16px;
  color: var(--blue);
  border-radius: 12px;
  font-weight: 900;
  transition: 0.25s ease;
}

.mobile-menu a:hover {
  background: var(--blue-soft);
  color: var(--yellow-dark);
}

.mobile-create-link {
  margin-top: 6px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue-dark) !important;
  background: var(--yellow) !important;
  font-weight: 900;
}

/* CONTAINER PRINCIPAL */

.page-wrapper {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.82);
  border-left: 1px solid rgba(229, 234, 243, 0.7);
  border-right: 1px solid rgba(229, 234, 243, 0.7);
  box-shadow: 0 18px 60px rgba(6, 43, 102, 0.06);
}

/* HERO INDEX E BASE */

.hero-section {
  padding: 72px 48px 42px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 36px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.hero-content h1 span {
  color: var(--yellow);
  white-space: nowrap;
}

.hero-content p {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.6;
  font-weight: 500;
}

.hero-buttons {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-visual {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-main-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 40px rgba(6, 43, 102, 0.14));
  transform: translateX(8px);
}

.hero-character,
.hero-comic,
.hero-badge {
  display: none;
}

/* TRUST */

.trust-row {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  gap: 22px;
}

.trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.18rem;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.trust-item small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 600;
}

/* CARDS PÚBLICO */

.audience-section {
  padding: 8px 48px 28px;
}

.audience-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  min-height: 126px;
  padding: 22px;
  display: grid;
  grid-template-columns: 82px 1fr 28px;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 3, 0.45);
  box-shadow: var(--shadow);
}

.audience-icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.audience-text h2 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 900;
}

.audience-text p {
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 600;
}

.audience-link {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 1rem;
  transition: 0.25s ease;
}

/* TÍTULOS */

.section-title,
.section-heading-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title {
  justify-content: center;
  margin-bottom: 24px;
}

.section-title h2,
.section-heading-inline h2 {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-title h2 {
  font-size: 1.55rem;
  text-align: center;
}

.section-heading-inline h2 {
  font-size: 1.35rem;
}

.decor-star,
.section-heading-inline span {
  color: var(--yellow);
  font-weight: 900;
}

.section-center-text {
  max-width: 860px;
  margin: -10px auto 26px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
  text-align: center;
}

/* COMO FUNCIONA */

.how-section {
  padding: 12px 48px 28px;
}

.how-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.how-step {
  display: grid;
  grid-template-columns: 34px 58px 1fr;
  align-items: center;
  gap: 14px;
}

.step-number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 900;
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.45rem;
  box-shadow: var(--shadow-soft);
}

.step-text h3 {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 900;
}

.step-text p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
  font-weight: 600;
}

/* MODELOS */

.models-section {
  padding: 18px 48px 34px;
}

.models-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.models-content {
  min-width: 0;
}

.models-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.model-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.model-card img {
  width: 100%;
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
}

.favorite-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.favorite-button:hover,
.favorite-button.active {
  color: var(--white);
  background: var(--yellow);
}

.model-info {
  padding: 12px 13px 14px;
}

.model-info h3 {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.28;
}

.model-info p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
}

.model-info strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
}

.add-cart-button {
  width: 100%;
  min-height: 36px;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.add-cart-button:hover,
.add-cart-button.added {
  color: var(--blue-dark);
  background: var(--yellow);
}

/* DEPOIMENTOS */

.testimonials-section {
  min-width: 0;
}

.testimonial-card {
  margin-top: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.testimonial-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content h3 {
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 900;
}

.stars {
  margin-bottom: 6px;
  color: var(--yellow);
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.testimonial-content p {
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 600;
}

/* FAQ */

.faq-section {
  padding: 8px 48px 34px;
}

.faq-list {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: left;
}

.faq-question i {
  transition: 0.25s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  font-weight: 600;
}

/* =========================================================
   PÁGINA PARA CRIANÇAS
========================================================= */

.children-hero {
  padding-top: 62px;
  padding-bottom: 32px;
  background:
    radial-gradient(circle at 87% 22%, rgba(255, 183, 3, 0.10), transparent 18%),
    radial-gradient(circle at 72% 55%, rgba(6, 43, 102, 0.06), transparent 20%);
}

.children-hero .hero-container {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.children-hero .hero-content h1 {
  font-size: clamp(2.7rem, 4.2vw, 4.7rem);
}

.section-kicker {
  width: fit-content;
  margin-bottom: 12px !important;
  color: var(--blue) !important;
  font-size: 0.92rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-visual-transparent {
  min-height: 430px;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.hero-transparent-image {
  max-width: 760px;
  background: transparent !important;
  mix-blend-mode: normal;
  filter: drop-shadow(0 24px 40px rgba(6, 43, 102, 0.14));
}

.children-hero .hero-visual::before,
.children-hero .hero-visual::after {
  display: none !important;
}

.inclusion-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.inclusion-card {
  min-height: 270px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  border-radius: 22px;
  overflow: hidden;
}

.inclusion-card:nth-child(1) {
  background: linear-gradient(180deg, #fff3cc, #fffaf0);
  border-color: rgba(255, 183, 3, 0.35);
}

.inclusion-card:nth-child(2) {
  background: linear-gradient(180deg, #e7f8ef, #f8fffb);
  border-color: rgba(24, 185, 87, 0.28);
}

.inclusion-card:nth-child(3) {
  background: linear-gradient(180deg, #f1e9ff, #fbf8ff);
  border-color: rgba(90, 48, 160, 0.20);
}

.inclusion-card:nth-child(4) {
  background: linear-gradient(180deg, #e6f5ff, #f8fcff);
  border-color: rgba(6, 43, 102, 0.14);
}

.inclusion-card .audience-icon {
  width: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.inclusion-card .audience-icon img {
  width: 140px;
  height: 120px;
  object-fit: contain;
}

.inclusion-card .audience-text h2 {
  min-height: 48px;
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.1;
}

.inclusion-card .audience-text p {
  max-width: 220px;
  margin: 0 auto;
  color: var(--blue-dark);
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 800;
}

.children-adventure-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.children-feature-card {
  border-radius: 18px;
  overflow: hidden;
}

.children-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
}

.children-feature-card .model-info {
  padding: 14px 18px 18px;
}

.children-feature-card .model-info h3 {
  font-size: 1.05rem;
}

.children-link-button {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  text-align: center;
}

.social-proof {
  padding: 10px 48px 34px;
}

.children-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.children-testimonial {
  margin-top: 0;
  padding: 20px;
  grid-template-columns: 82px 1fr;
  background: linear-gradient(135deg, #f4f8ff, #ffffff);
}

.children-testimonial img {
  width: 82px;
  height: 82px;
}

.children-testimonial .testimonial-content h3 {
  font-size: 1.1rem;
}

.children-testimonial .testimonial-content strong {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.children-trust {
  max-width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.children-final-cta {
  padding: 10px 48px 34px;
}

.children-final-content {
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 183, 3, 0.22), transparent 18%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.children-final-content h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  line-height: 1.12;
  font-weight: 900;
}

/* =========================================================
   CREATE PAGE
========================================================= */

.create-page {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto;
}

.create-section {
  min-height: calc(100vh - var(--header-height));
  padding: 52px 0 38px;
  position: relative;
}

.create-container {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.85fr);
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.create-form-card,
.order-summary-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.create-form-card {
  padding: 28px 30px;
}

.create-title {
  margin-bottom: 22px;
}

.create-title h1 {
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-bottom: 8px;
}

.create-title p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.create-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.full-width,
.form-group.full-width,
.print-choice-box.full-width,
.print-quantity-box.full-width,
.form-actions.full-width {
  grid-column: 1 / -1;
}

.form-group label,
.print-choice-box p,
.print-quantity-box p {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid #cfd9ea;
  border-radius: 10px;
  outline: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: 0.22s ease;
}

.form-group textarea {
  min-height: 78px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.45;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6, 43, 102, 0.08);
}

.character-counter {
  align-self: flex-end;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.character-counter.limit {
  color: var(--danger);
}

.print-choice-box {
  padding: 16px;
  background: #f8fbff;
  border: 1px solid #bdd2f2;
  border-radius: 16px;
}

.print-choice-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.print-quantity-box {
  padding: 16px;
  background: #fffaf0;
  border: 1px solid rgba(255, 183, 3, 0.55);
  border-radius: 16px;
  display: none;
}

.print-quantity-box.active {
  display: block;
}

.print-options-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}

.radio-card {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.radio-card input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.radio-card span {
  line-height: 1.3;
}

.custom-print-group {
  margin-top: 14px;
  display: none;
}

.custom-print-group.active {
  display: flex;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 4px;
}

.payment-button,
.add-to-cart-main-button,
.create-another-button,
.checkout-cart-button {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.payment-button,
.add-to-cart-main-button,
.checkout-cart-button {
  color: var(--blue-dark);
  background: var(--yellow);
}

.payment-button:hover,
.add-to-cart-main-button:hover,
.checkout-cart-button:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.create-another-button {
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
}

.create-another-button:hover {
  color: var(--blue-dark);
  border-color: var(--yellow);
  background: #fff8e6;
  transform: translateY(-2px);
}

.create-decoration-left {
  position: absolute;
  left: -82px;
  bottom: 0;
  width: 260px;
  z-index: 1;
  pointer-events: none;
}

.create-decoration-left img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(6, 43, 102, 0.16));
}

.order-summary-card {
  padding: 28px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.summary-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.summary-title h2 {
  color: var(--blue);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.summary-title span {
  color: var(--yellow);
  font-size: 1.2rem;
}

.order-number {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 18px;
}

.summary-cover {
  width: 178px;
  margin: 0 auto 20px;
}

.summary-cover img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(3, 27, 64, 0.16);
}

.summary-list {
  display: grid;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.summary-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--blue);
  font-size: 0.86rem;
}

.summary-line span {
  font-weight: 700;
}

.summary-line strong {
  max-width: 160px;
  text-align: right;
  font-weight: 900;
}

.summary-total {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
}

.summary-total span {
  font-size: 1.35rem;
  font-weight: 900;
}

.summary-total strong {
  font-size: 1.75rem;
  font-weight: 900;
}

.delivery-box {
  margin-bottom: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--blue);
  background: #fff8e6;
  border: 1px solid rgba(255, 183, 3, 0.50);
  border-radius: 16px;
}

.delivery-box i {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  font-size: 1.25rem;
}

.delivery-box strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 900;
}

.delivery-box p {
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 600;
}

.whatsapp-box {
  margin-bottom: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.whatsapp-box > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  font-size: 1.45rem;
}

.whatsapp-box strong {
  display: inline-block;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.whatsapp-box small {
  float: right;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.whatsapp-box p {
  clear: both;
  margin-top: 4px;
  color: var(--text);
  font-size: 0.75rem;
  line-height: 1.35;
  font-weight: 600;
}

.check-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  font-size: 0.7rem;
}

.secure-info {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
}

/* CARRINHO RESPONSIVO */

.cart-drawer {
  width: min(420px, 100vw);
  height: 100dvh;
  max-height: 100dvh;
  position: fixed;
  top: 0;
  right: -110vw;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: -18px 0 48px rgba(3, 27, 64, 0.18);
  transition: right 0.35s ease, transform 0.35s ease;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  min-height: 76px;
  padding: 0 22px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.cart-header h2 {
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 900;
}

.cart-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: transparent;
  border-radius: 12px;
  font-size: 1.25rem;
}

.cart-close:hover {
  background: var(--blue-soft);
}

.cart-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 18px;
  -webkit-overflow-scrolling: touch;
}

.cart-empty {
  min-height: 260px;
  padding: 28px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.cart-empty p {
  margin-bottom: 8px;
}

.cart-empty small {
  max-width: 240px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.cart-item {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.cart-item h3 {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.cart-item p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item strong {
  color: var(--yellow-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.cart-remove {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border-radius: 8px;
}

.cart-remove:hover {
  color: var(--danger);
  background: #fff1f0;
}

.cart-footer {
  flex: 0 0 auto;
  padding: 18px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--white);
}

.cart-total {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 22px;
  color: var(--blue);
  font-weight: 900;
  padding-right: 18px;
}

.cart-total strong {
  white-space: nowrap;
  text-align: right;
  padding-right: 10px;
  margin-right: 8px;
}

.checkout-button {
  width: calc(100% - 18px);
  margin: 0 auto;
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.checkout-button:hover {
  background: var(--yellow-dark);
}

/* MODAL */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  pointer-events: none;
}

.video-modal.open {
  display: flex;
  pointer-events: all;
}

.video-modal-content {
  width: min(920px, 100%);
  max-height: calc(100vh - 56px);
  position: relative;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid rgba(229, 234, 243, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.video-modal-close {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.video-modal-close:hover {
  color: var(--white);
  background: var(--blue);
}

.video-modal-header {
  padding: 30px 32px 18px;
  padding-right: 86px;
}

.video-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--yellow-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-modal-header h2 {
  color: var(--blue);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 8px;
}

.video-modal-header p {
  max-width: 660px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 600;
}

.video-frame {
  width: calc(100% - 64px);
  margin: 0 32px;
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 46px rgba(3, 27, 64, 0.16);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-modal-footer {
  padding: 18px 32px 30px;
  display: flex;
  justify-content: flex-end;
}

.video-modal-link {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.video-modal-link:hover {
  color: var(--blue-dark);
  background: var(--yellow);
}

/* OVERLAY */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(3, 27, 64, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* FOOTER */

.site-footer {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto 44px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 85%, rgba(255, 183, 3, 0.22), transparent 16%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 0 0 22px 22px;
}

.footer-container {
  padding: 34px 48px 26px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr 1.45fr;
  gap: 28px;
}

.footer-brand img {
  width: 104px;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-column a,
.footer-newsletter small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.55;
  font-weight: 600;
}

.footer-column h3,
.footer-newsletter h3 {
  margin-bottom: 12px;
  font-size: 0.96rem;
  font-weight: 900;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column a {
  margin-bottom: 7px;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: var(--yellow);
}

.social-links {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.social-links a:hover {
  background: rgba(255, 183, 3, 0.12);
  border-color: var(--yellow);
}

.newsletter-form {
  height: 48px;
  margin-bottom: 9px;
  display: grid;
  grid-template-columns: 1fr 52px;
}

.newsletter-form input {
  min-width: 0;
  padding: 0 16px;
  color: var(--blue);
  border: none;
  outline: none;
  border-radius: 12px 0 0 12px;
  font-weight: 700;
}

.newsletter-form button {
  color: var(--white);
  background: var(--yellow);
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  transition: 0.25s ease;
}

.newsletter-form button:hover {
  background: var(--yellow-dark);
}

.footer-bottom {
  padding: 14px 24px 22px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
}

/* TOAST */

.toast-message {
  max-width: calc(100% - 32px);
  padding: 14px 18px;
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 4000;
  color: var(--white);
  background: var(--blue);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(3, 27, 64, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(30px);
  transition: 0.3s ease;
}

.toast-message.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* RESPONSIVO */

@media (min-width: 1440px) {
  :root {
    --max-width: 1220px;
  }

  .hero-section {
    padding-top: 72px;
  }

  .logo-area {
    margin-right: 42px;
  }

  .nav-list {
    gap: 38px;
  }
}

@media (max-width: 1280px) {
  :root {
    --max-width: 1120px;
  }

  .hero-section,
  .audience-section,
  .how-section,
  .models-section,
  .faq-section,
  .social-proof,
  .children-final-cta {
    padding-left: 38px;
    padding-right: 38px;
  }

  .hero-section {
    padding-top: 62px;
    padding-bottom: 36px;
  }

  .logo-area {
    margin-right: 30px;
  }

  .nav-list {
    gap: 30px;
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, 4.6vw, 4.4rem);
  }

  .hero-container {
    gap: 28px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-main-image {
    max-width: 650px;
  }

  .models-wrapper {
    grid-template-columns: 1.55fr 0.95fr;
  }

  .inclusion-grid {
    gap: 18px;
  }
}

@media (max-width: 1180px) {
  .create-decoration-left {
    left: -120px;
    width: 230px;
  }

  .create-container {
    grid-template-columns: 1fr 360px;
  }

  .inclusion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inclusion-card {
    min-height: 240px;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

  .header-container {
    width: min(100% - 32px, 980px);
  }

  .page-wrapper,
  .site-footer,
  .create-page {
    width: min(100% - 32px, 980px);
  }

  .logo-area {
    width: 96px;
    height: 96px;
    margin-right: 24px;
    margin-bottom: -34px;
  }

  .nav-list {
    gap: 24px;
  }

  .nav-link {
    min-height: var(--header-height);
    font-size: 0.86rem;
  }

  .login-button span {
    display: none;
  }

  .login-button {
    width: 44px;
    padding: 0;
  }

  .hero-container,
  .children-hero .hero-container {
    grid-template-columns: 1fr 0.95fr;
    gap: 22px;
  }

  .hero-content h1,
  .children-hero .hero-content h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  }

  .hero-content p {
    max-width: 540px;
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-main-image {
    max-width: 560px;
    transform: translateX(0);
  }

  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .audience-card {
    grid-template-columns: 62px 1fr 20px;
    padding: 18px;
  }

  .audience-icon img {
    width: 62px;
    height: 62px;
  }

  .models-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .testimonials-section .section-heading-inline {
    grid-column: 1 / -1;
  }

  .children-proof {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .create-container {
    grid-template-columns: 1fr;
  }

  .order-summary-card {
    position: relative;
    top: 0;
  }

  .create-decoration-left {
    display: none;
  }

  .children-adventure-grid {
    grid-template-columns: 1fr;
  }

  .children-feature-card img {
    aspect-ratio: 16 / 8.5;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions {
    gap: 8px;
  }

  .login-button span {
    display: inline;
  }

  .hero-section {
    padding: 58px 32px 34px;
  }

  .hero-container,
  .children-hero .hero-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-visual,
  .hero-visual-transparent {
    min-height: auto;
    padding-top: 8px;
  }

  .hero-main-image,
  .hero-transparent-image {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .trust-row {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-container {
    grid-template-columns: 1fr;
  }

  .how-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-step {
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .children-final-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .children-final-content .btn {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .cart-drawer {
    width: min(430px, 92vw);
  }

  .inclusion-grid {
    grid-template-columns: 1fr 1fr;
  }

  .inclusion-card {
    min-height: 230px;
  }
}

@media (max-width: 760px) {
  .create-page {
    width: 100%;
  }

  .create-section {
    padding: 40px 16px 28px;
  }

  .create-form-card,
  .order-summary-card {
    border-radius: 20px;
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .print-choice-grid,
  .print-options-grid {
    grid-template-columns: 1fr;
  }

  .summary-line strong {
    max-width: 150px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

  body {
    background: var(--white);
  }

  .header-container {
    width: calc(100% - 24px);
  }

  .page-wrapper,
  .site-footer {
    width: 100%;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }

  .site-footer {
    margin-bottom: 0;
    border-radius: 0;
  }

  .logo-area {
    width: 88px;
    height: 88px;
    margin-right: 0;
    margin-bottom: -32px;
  }

  .login-button,
  .create-now-button {
    display: none;
  }

  .cart-button {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    margin-right: 4px;
  }

  .mobile-menu {
    width: calc(100% - 24px);
  }

  .hero-section,
  .audience-section,
  .how-section,
  .models-section,
  .faq-section,
  .social-proof,
  .children-final-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-section {
    padding-top: 52px;
    padding-bottom: 30px;
  }

  .hero-content h1,
  .children-hero .hero-content h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-main-image,
  .hero-transparent-image {
    max-width: 100%;
    margin-top: 4px;
  }

  .trust-row,
  .children-trust {
    margin-top: 18px;
    padding: 16px;
    grid-template-columns: 1fr;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .audience-card {
    grid-template-columns: 64px 1fr 24px;
    padding: 18px;
  }

  .inclusion-grid {
    grid-template-columns: 1fr;
  }

  .inclusion-card {
    min-height: 0;
    padding: 22px;
  }

  .inclusion-card .audience-icon img {
    width: 132px;
    height: 112px;
  }

  .models-grid {
    padding-bottom: 10px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .model-card {
    min-width: 76%;
    scroll-snap-align: start;
  }

  .children-adventure-grid .model-card {
    min-width: 0;
  }

  .children-feature-card img {
    aspect-ratio: 16 / 10;
  }

  .children-testimonial {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .children-testimonial img {
    margin: 0 auto;
  }

  .footer-container {
    padding: 32px 24px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-column {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .newsletter-form {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .header-container {
    height: 68px;
  }

  .logo-area {
    width: 78px;
    height: 78px;
    margin-bottom: -28px;
  }

  .hero-section {
    padding: 46px 18px 26px;
  }

  .hero-content h1,
  .children-hero .hero-content h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-main-image {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }

  .hero-transparent-image {
    width: 108%;
    max-width: none;
    margin-left: -4%;
  }

  .audience-card {
    grid-template-columns: 58px 1fr 20px;
    gap: 12px;
  }

  .model-card {
    min-width: 82%;
  }

  .children-feature-card {
    min-width: 0;
  }

  .children-final-content {
    padding: 24px 18px;
  }

  .cart-drawer {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    top: 0 !important;
    bottom: 0 !important;
    height: 100dvh;
    max-height: 100dvh;
    transform: translateX(calc(100% + 24px));
    border-left: none;
    box-shadow: -10px 0 28px rgba(3, 27, 64, 0.18);
  }

  .cart-drawer.open {
    transform: translateX(0);
  }

  .cart-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .cart-header h2 {
    font-size: 1.15rem;
  }

  .cart-items {
    padding: 16px;
  }

  .cart-footer {
    padding: 14px 16px 16px !important;
    padding-bottom: calc(16px + env(safe-area-inset-bottom)) !important;
  }

  .cart-total {
    margin-bottom: 12px;
    padding: 0 18px 0 2px !important;
    grid-template-columns: 1fr auto;
    column-gap: 22px;
  }

  .cart-total strong {
    padding-left: 0 !important;
    padding-right: 10px !important;
    margin-right: 8px !important;
    font-size: 1rem;
  }

  .checkout-button {
    width: calc(100% - 18px) !important;
    margin: 0 auto;
    min-height: 48px;
    border-radius: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .create-title h1 {
    font-size: 2rem;
  }

  .summary-cover {
    width: 150px;
  }

  .summary-total strong {
    font-size: 1.55rem;
  }

  .whatsapp-box {
    grid-template-columns: 38px 1fr;
  }

  .check-icon {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-section,
  .audience-section,
  .how-section,
  .models-section,
  .faq-section,
  .social-proof,
  .children-final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content h1,
  .children-hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero-main-image {
    width: 118%;
    max-width: none;
    margin-left: -9%;
  }

  .hero-transparent-image {
    width: 112%;
    margin-left: -6%;
  }

  .model-card {
    min-width: 88%;
  }

  .children-feature-card {
    min-width: 0;
  }

  .cart-drawer {
    left: 8px !important;
    right: 8px !important;
  }

  .cart-header {
    padding: 0 14px;
  }

  .cart-items {
    padding: 14px;
  }

  .cart-footer {
    padding: 14px !important;
    padding-bottom: calc(14px + env(safe-area-inset-bottom)) !important;
  }

  .cart-total {
    column-gap: 26px;
    padding-right: 22px !important;
  }

  .cart-total strong {
    margin-right: 10px !important;
    font-size: 0.95rem;
  }

  .checkout-button {
    width: calc(100% - 24px) !important;
    min-height: 46px;
  }
}

/* ACESSIBILIDADE */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 183, 3, 0.75);
  outline-offset: 3px;
}


/* =========================================================
   AJUSTE FINAL - IMAGENS PNG TRANSPARENTES NA ÁREA DE INCLUSÃO
   Use imagens PNG reais com canal alfa em:
   icon-crianca-feliz.png
   icon-autismo.png
   icon-down.png
   icon-todas-criancas.png
========================================================= */

.inclusion-card {
  position: relative;
  overflow: hidden;
}

.inclusion-card .audience-icon {
  width: 100%;
  height: 150px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.inclusion-card .audience-icon img {
  width: auto !important;
  max-width: 185px !important;
  height: 145px !important;
  max-height: 145px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: drop-shadow(0 10px 16px rgba(6, 43, 102, 0.10));
}

.inclusion-card:nth-child(4) .audience-icon img {
  max-width: 220px !important;
}

.inclusion-card .audience-text {
  width: 100%;
}

.inclusion-card .audience-text h2 {
  min-height: auto;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.08;
  text-align: center;
  font-weight: 900;
}

.inclusion-card .audience-text p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--blue-dark);
  font-size: clamp(0.94rem, 1vw, 1.05rem);
  line-height: 1.42;
  text-align: center;
  font-weight: 900;
}

/* Evita que imagens transparentes apareçam com caixa branca no navegador */
.inclusion-card img[src$=".png"],
.hero-transparent-image,
.children-feature-card img {
  background-color: transparent !important;
}

/* Layout refinado da seção de inclusão no desktop */
@media (min-width: 901px) {
  .inclusion-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }

  .inclusion-card {
    min-height: 360px;
    padding: 26px 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .inclusion-card .audience-icon {
    height: 135px;
  }

  .inclusion-card .audience-icon img {
    height: 130px !important;
    max-height: 130px !important;
    max-width: 170px !important;
  }

  .inclusion-card:nth-child(4) .audience-icon img {
    max-width: 205px !important;
  }
}

/* Smartphone */
@media (max-width: 700px) {
  .inclusion-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .inclusion-card .audience-icon {
    height: 125px;
    margin-bottom: 14px;
  }

  .inclusion-card .audience-icon img {
    height: 120px !important;
    max-height: 120px !important;
    max-width: 170px !important;
  }

  .inclusion-card:nth-child(4) .audience-icon img {
    max-width: 210px !important;
  }

  .inclusion-card .audience-text h2 {
    font-size: 1.45rem;
  }

  .inclusion-card .audience-text p {
    max-width: 300px;
    font-size: 1rem;
  }
}

/* =========================================================
   PÁGINA EXPLORE O UNIVERSO IMAGINEI
   Arquivo: explore-universo.html
   Ajustes adicionados ao CSS único existente
========================================================= */

/* Botões do novo header HUB/Universe */
.search-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: 0.25s ease;
}

.search-button:hover {
  background: var(--blue-soft);
  color: var(--yellow-dark);
}

.subscribe-button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 183, 3, 0.30);
  transition: 0.25s ease;
}

.subscribe-button:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.connect-button {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.connect-button:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

/* Estrutura geral da página Universe */
.universe-page-wrapper {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border-left: 1px solid rgba(229, 234, 243, 0.7);
  border-right: 1px solid rgba(229, 234, 243, 0.7);
  box-shadow: 0 18px 60px rgba(6, 43, 102, 0.06);
}

.universe-page-wrapper section {
  position: relative;
}

/* Hero */
.universe-hero-section {
  min-height: 470px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 28%, rgba(255, 183, 3, 0.26), transparent 18%),
    radial-gradient(circle at 60% 50%, rgba(88, 169, 255, 0.25), transparent 28%),
    linear-gradient(135deg, #031b40 0%, #062b66 44%, #0a54a7 100%);
}

.universe-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 64, 0.96) 0%, rgba(3, 27, 64, 0.78) 34%, rgba(3, 27, 64, 0.28) 62%, rgba(3, 27, 64, 0.04) 100%),
    url("../img/hero-explore-universo.png") right center / contain no-repeat;
  z-index: 1;
}

.universe-hero-section::after {
  content: "";
  width: 100%;
  height: 56px;
  position: absolute;
  left: 0;
  bottom: -28px;
  z-index: 3;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.universe-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 183, 3, 0.08), transparent 20%),
    radial-gradient(circle at 45% 78%, rgba(255, 255, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.universe-hero-container {
  width: 100%;
  min-height: inherit;
  padding: 64px 48px 70px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 34px;
}

.universe-hero-content {
  max-width: 640px;
}

.universe-kicker {
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.universe-hero-content h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.universe-hero-content h1 strong {
  display: block;
  color: var(--yellow);
}

.universe-hero-content p {
  max-width: 590px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  line-height: 1.55;
  font-weight: 650;
}

.universe-hero-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.universe-hero-visual {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.universe-hero-visual img {
  width: min(100%, 650px);
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.18));
}

/* Títulos */
.universe-section-title {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.universe-section-title-left {
  justify-content: flex-start;
}

.universe-section-title span {
  width: 44px;
  height: 2px;
  display: inline-block;
  background: var(--yellow);
  border-radius: 999px;
}

.universe-section-title i {
  color: var(--yellow);
}

.universe-section-title h2 {
  color: var(--blue);
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* Hubs */
.universe-hubs-section {
  padding: 42px 48px 24px;
  background: var(--white);
}

.universe-hubs-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.universe-hub-card {
  min-height: 248px;
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.universe-hub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 3, 0.46);
  box-shadow: var(--shadow);
}

.universe-hub-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.35rem;
  box-shadow: 0 12px 24px rgba(6, 43, 102, 0.13);
}

.universe-icon-blue { background: #1769e0; }
.universe-icon-red { background: #df1936; }
.universe-icon-purple { background: #8146f6; }
.universe-icon-green { background: #23a049; }
.universe-icon-orange { background: #ff7b00; }
.universe-icon-cyan { background: #15a8d6; }

.universe-hub-card h3 {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.universe-hub-card p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 650;
}

.universe-hub-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.universe-hub-card a:hover {
  color: var(--yellow-dark);
  gap: 12px;
}

/* Franquias */
.universe-franchises-section {
  padding: 20px 48px 24px;
  background: var(--white);
}

.universe-franchises-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.universe-franchise-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.universe-franchise-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: 1;
  transition: 0.35s ease;
}

.universe-franchise-card:hover img {
  transform: scale(1.04);
}

.universe-franchise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.universe-tecnomagia-card::after {
  background: linear-gradient(90deg, rgba(2, 8, 26, 0.94) 0%, rgba(2, 8, 26, 0.58) 48%, rgba(2, 8, 26, 0.12) 100%);
}

.universe-clara-card::after {
  background: linear-gradient(90deg, rgba(255, 235, 246, 0.96) 0%, rgba(255, 235, 246, 0.65) 48%, rgba(255, 235, 246, 0.10) 100%);
}

.universe-franchise-content {
  width: min(58%, 430px);
  min-height: 300px;
  padding: 30px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.universe-franchise-content span {
  width: fit-content;
  margin-bottom: 9px;
  padding: 6px 10px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.universe-franchise-content h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.universe-franchise-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.5;
  font-weight: 650;
}

.universe-clara-card .universe-franchise-content h3 {
  color: #df3c87;
}

.universe-clara-card .universe-franchise-content p {
  color: #4d2440;
}

.universe-franchise-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.universe-franchise-links a {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.universe-franchise-links a:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

/* Processo + missão */
.universe-process-mission-section {
  padding: 18px 48px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 24px;
  background: var(--white);
}

.universe-process-card,
.universe-mission-card,
.universe-video-card,
.universe-newsletter-band {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.universe-process-card {
  padding: 26px;
}

.universe-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.universe-process-step {
  position: relative;
  min-height: 185px;
  padding: 18px 14px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.universe-step-number {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -10px;
  left: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.universe-process-step i:not(.fa-arrow-right) {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 1.5rem;
}

.universe-process-step h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.universe-process-step p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
  font-weight: 650;
}

.universe-mission-card {
  padding: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 22%, rgba(255, 183, 3, 0.22), transparent 18%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.universe-mission-card > span {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.universe-mission-card h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.18;
  font-weight: 900;
}

.universe-mission-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.universe-mission-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.universe-mission-card li > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1rem;
}

.universe-mission-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.universe-mission-card p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.76rem;
  line-height: 1.42;
  font-weight: 600;
}

/* O que encontra */
.universe-found-section {
  padding: 18px 48px 24px;
  background: var(--white);
}

.universe-found-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.universe-found-grid article {
  min-height: 170px;
  padding: 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.universe-found-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.universe-found-grid i {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 1.25rem;
}

.universe-found-grid article:nth-child(2) i { background: #7b44e8; }
.universe-found-grid article:nth-child(3) i { background: var(--yellow-dark); }
.universe-found-grid article:nth-child(4) i { background: var(--success); }
.universe-found-grid article:nth-child(5) i { background: #df3c87; }

.universe-found-grid h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
}

.universe-found-grid p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.42;
  font-weight: 650;
}

/* Vídeo */
.universe-video-section {
  padding: 18px 48px 24px;
  background: var(--white);
}

.universe-video-card {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 183, 3, 0.18), transparent 20%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.universe-video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.universe-video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.92;
}

.universe-play-button {
  width: 76px;
  height: 76px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 1.55rem;
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.universe-play-button:hover {
  color: var(--blue-dark);
  background: var(--yellow);
  border-color: var(--yellow);
}

.universe-video-content span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.universe-video-content h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
  font-weight: 900;
}

.universe-video-content p {
  max-width: 560px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 650;
}

/* Newsletter */
.universe-newsletter-band {
  margin: 18px 48px 28px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #0058e6, #053eaa);
  box-shadow: var(--shadow-soft);
}

.universe-newsletter-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.universe-newsletter-title > i {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 18px;
  font-size: 1.9rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.universe-newsletter-title h2 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
}

.universe-newsletter-title p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.4;
  font-weight: 650;
}

.universe-newsletter-form {
  height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
}

.universe-newsletter-form input[type="email"] {
  width: 100%;
  height: 52px;
  min-width: 0;
  padding: 0 18px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  outline: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.universe-newsletter-form input[type="email"]:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.18);
}

.universe-newsletter-form button {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.universe-newsletter-form button:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.universe-newsletter-form input[type="hidden"] {
  display: none !important;
}

/* Footer Universe respeitando o footer existente */
.universe-footer {
  margin-top: 0;
}

/* Animação simples para JS futuro */
.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVO - PÁGINA EXPLORE O UNIVERSO
========================================================= */

@media (max-width: 1280px) {
  .universe-hubs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .universe-hub-card {
    min-height: 220px;
  }

  .universe-found-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .universe-page-wrapper {
    width: min(100% - 32px, 980px);
  }

  .universe-hero-container {
    padding: 56px 32px 66px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .universe-hero-section::before {
    background:
      linear-gradient(180deg, rgba(3, 27, 64, 0.96) 0%, rgba(3, 27, 64, 0.72) 45%, rgba(3, 27, 64, 0.22) 100%),
      url("../img/hero-explore-universo.png") center bottom / 92% auto no-repeat;
  }

  .universe-hero-content,
  .universe-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .universe-kicker,
  .universe-hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .universe-hero-visual {
    display: none;
  }

  .universe-hubs-section,
  .universe-franchises-section,
  .universe-process-mission-section,
  .universe-found-section,
  .universe-video-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .universe-process-mission-section,
  .universe-video-card,
  .universe-newsletter-band {
    grid-template-columns: 1fr;
  }

  .universe-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .universe-newsletter-band {
    margin-left: 32px;
    margin-right: 32px;
  }
}

@media (max-width: 900px) {
  .subscribe-button {
    display: none;
  }

  .connect-button span {
    display: none;
  }

  .connect-button {
    width: 44px;
    padding: 0;
  }

  .universe-franchises-grid {
    grid-template-columns: 1fr;
  }

  .universe-franchise-content {
    width: min(72%, 460px);
  }

  .universe-found-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .universe-page-wrapper {
    width: calc(100% - 22px);
  }

  .universe-hero-section {
    min-height: 560px;
  }

  .universe-hero-section::before {
    background:
      linear-gradient(180deg, rgba(3, 27, 64, 0.92) 0%, rgba(3, 27, 64, 0.72) 54%, rgba(3, 27, 64, 0.30) 100%),
      url("../img/hero-explore-universo.png") center bottom / 118% auto no-repeat;
  }

  .universe-hero-container {
    padding: 46px 20px 280px;
  }

  .universe-hero-content h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .universe-hero-content p {
    font-size: 0.94rem;
  }

  .universe-hubs-section,
  .universe-franchises-section,
  .universe-process-mission-section,
  .universe-found-section,
  .universe-video-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .universe-section-title {
    gap: 8px;
  }

  .universe-section-title span {
    width: 28px;
  }

  .universe-hubs-grid,
  .universe-process-steps,
  .universe-found-grid {
    grid-template-columns: 1fr;
  }

  .universe-hub-card {
    min-height: auto;
  }

  .universe-franchise-card {
    min-height: 330px;
  }

  .universe-franchise-content {
    width: 86%;
    min-height: 330px;
    padding: 24px 20px;
  }

  .universe-video-card {
    padding: 14px;
  }

  .universe-play-button {
    width: 62px;
    height: 62px;
    font-size: 1.25rem;
  }

  .universe-newsletter-band {
    margin-left: 18px;
    margin-right: 18px;
    padding: 18px;
  }

  .universe-newsletter-title {
    align-items: flex-start;
  }

  .universe-newsletter-title > i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.45rem;
  }

  .universe-newsletter-form {
    height: auto;
    grid-template-columns: 1fr;
  }

  .universe-newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .universe-hero-section {
    min-height: 610px;
  }

  .universe-hero-container {
    padding: 38px 16px 265px;
  }

  .universe-hero-actions .btn {
    width: 100%;
  }

  .universe-franchise-content {
    width: 94%;
  }

  .universe-franchise-links a {
    min-height: 34px;
    font-size: 0.68rem;
  }

  .universe-process-card,
  .universe-mission-card {
    padding: 20px;
  }
}

/* =========================================================
   AJUSTE FINAL - HERO EXPLORE O UNIVERSO
   Correção: remove duplicação da imagem e mantém uma única
   imagem visível em computador, notebook, tablet e celular.

   IMPORTANTE:
   A imagem principal deve ficar no HTML como:
   <img src="assets/img/hero-explore-universo.png" ...>
   O CSS abaixo NÃO usa mais essa imagem como background.
========================================================= */

.universe-hero-section {
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 183, 3, 0.22), transparent 20%),
    radial-gradient(circle at 58% 46%, rgba(88, 169, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #031b40 0%, #062b66 46%, #0a54a7 100%) !important;
}

.universe-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 27, 64, 0.96) 0%, rgba(3, 27, 64, 0.84) 33%, rgba(3, 27, 64, 0.42) 57%, rgba(3, 27, 64, 0.08) 100%) !important;
  pointer-events: none;
}

.universe-hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 183, 3, 0.10), transparent 20%),
    radial-gradient(circle at 82% 42%, rgba(255, 255, 255, 0.08), transparent 24%);
}

.universe-hero-container {
  min-height: inherit;
  position: relative;
  z-index: 4;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr) !important;
  align-items: center;
  gap: 26px;
}

.universe-hero-content {
  position: relative;
  z-index: 6;
}

.universe-hero-visual {
  min-height: 480px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  position: relative;
  z-index: 5;
  overflow: visible;
}

.universe-hero-visual img {
  width: min(100%, 760px) !important;
  max-height: 560px;
  display: block !important;
  object-fit: contain !important;
  object-position: center right !important;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.20));
  opacity: 1 !important;
}

/* Segurança contra imagens quebradas ou duplicadas por background antigo */
.universe-hero-section[style*="hero-explore-universo"],
.universe-hero-container[style*="hero-explore-universo"],
.universe-hero-visual[style*="hero-explore-universo"] {
  background-image: none !important;
}

@media (max-width: 1200px) {
  .universe-hero-section {
    min-height: 600px;
  }

  .universe-hero-container {
    grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.12fr) !important;
    padding-left: 38px;
    padding-right: 38px;
  }

  .universe-hero-visual img {
    width: min(100%, 690px) !important;
  }
}

@media (max-width: 1100px) {
  .universe-hero-section {
    min-height: auto !important;
  }

  .universe-hero-section::before {
    background:
      linear-gradient(180deg, rgba(3, 27, 64, 0.96) 0%, rgba(3, 27, 64, 0.82) 46%, rgba(3, 27, 64, 0.40) 100%) !important;
  }

  .universe-hero-container {
    grid-template-columns: 1fr !important;
    padding: 54px 32px 70px !important;
    text-align: center;
  }

  .universe-hero-content,
  .universe-hero-content p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .universe-kicker,
  .universe-hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .universe-hero-visual {
    min-height: auto !important;
    margin-top: 26px;
    justify-content: center !important;
  }

  .universe-hero-visual img {
    width: min(100%, 760px) !important;
    max-height: 420px;
    object-position: center !important;
  }
}

@media (max-width: 700px) {
  .universe-hero-section {
    min-height: auto !important;
  }

  .universe-hero-container {
    padding: 42px 20px 54px !important;
  }

  .universe-hero-content h1 {
    font-size: clamp(2.45rem, 12vw, 3.75rem) !important;
  }

  .universe-hero-content p {
    font-size: 0.94rem;
  }

  .universe-hero-visual {
    margin-top: 22px;
  }

  .universe-hero-visual img {
    width: min(100%, 520px) !important;
    max-height: 360px;
  }
}

@media (max-width: 460px) {
  .universe-hero-container {
    padding: 36px 16px 44px !important;
  }

  .universe-hero-actions .btn {
    width: 100%;
  }

  .universe-hero-visual img {
    width: min(108%, 440px) !important;
    max-height: 300px;
  }
}

/* =========================================================
   AJUSTE FINAL - HERO EXPLORE O UNIVERSO IMAGINEI
   Correções solicitadas:
   - remove duplicação da imagem no banner;
   - reduz a fonte do título;
   - remove os textos abaixo do título;
   - mantém apenas o botão principal;
   - aumenta a imagem no desktop/notebook;
   - mantém proporção em tablet e smartphone.
========================================================= */

/* Banner full-bleed em computador e notebook */
.universe-page-wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-left: none;
  border-right: none;
  box-shadow: none;
}

.universe-hero-section {
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 183, 3, 0.24), transparent 18%),
    radial-gradient(circle at 62% 54%, rgba(88, 169, 255, 0.25), transparent 30%),
    linear-gradient(135deg, #031b40 0%, #062b66 43%, #0a54a7 100%);
}

/* Remove a imagem do pseudo-elemento para não duplicar com o <img> do HTML */
.universe-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 27, 64, 0.98) 0%, rgba(3, 27, 64, 0.86) 30%, rgba(3, 27, 64, 0.46) 55%, rgba(3, 27, 64, 0.10) 78%, rgba(3, 27, 64, 0.02) 100%);
  pointer-events: none;
}

.universe-hero-container {
  width: min(100%, 1520px);
  min-height: inherit;
  margin: 0 auto;
  padding: 58px clamp(42px, 5vw, 84px) 72px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(360px, 0.66fr) minmax(620px, 1.34fr);
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
}

.universe-hero-content {
  max-width: 540px;
  position: relative;
  z-index: 5;
}

.universe-hero-content h1 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(2.85rem, 4.15vw, 4.45rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.universe-hero-content h1 strong {
  display: block;
  color: var(--yellow);
}

/* Remove os textos abaixo do título no hero */
.universe-hero-content p {
  display: none !important;
}

.universe-hero-actions {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Mantém somente o botão principal */
.universe-hero-actions .btn-secondary {
  display: none !important;
}

.universe-hero-actions .btn-primary {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 12px;
  font-size: 0.98rem;
  box-shadow: 0 14px 30px rgba(255, 183, 3, 0.32);
}

.universe-hero-visual {
  min-height: 430px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.universe-hero-visual img {
  width: clamp(720px, 60vw, 1040px);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: right center;
  transform: translateX(clamp(16px, 3vw, 48px));
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.20));
}

/* Conteúdo abaixo do hero volta a ter largura de leitura */
.universe-hubs-section,
.universe-franchises-section,
.universe-process-mission-section,
.universe-found-section,
.universe-video-section,
.universe-newsletter-band {
  width: min(var(--max-width), calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}

/* Notebook */
@media (max-width: 1280px) {
  .universe-hero-section {
    min-height: 505px;
  }

  .universe-hero-container {
    width: min(100%, 1280px);
    padding: 52px clamp(34px, 4.5vw, 64px) 66px;
    grid-template-columns: minmax(330px, 0.70fr) minmax(560px, 1.30fr);
    gap: 26px;
  }

  .universe-hero-content h1 {
    font-size: clamp(2.65rem, 4.25vw, 4.05rem);
  }

  .universe-hero-visual img {
    width: clamp(650px, 59vw, 900px);
    transform: translateX(30px);
  }
}

/* Tablet: mantém proporcionalidade, sem esticar para fora */
@media (max-width: 980px) {
  .universe-hero-section {
    min-height: auto;
  }

  .universe-hero-section::before {
    background: linear-gradient(180deg, rgba(3, 27, 64, 0.96) 0%, rgba(3, 27, 64, 0.72) 46%, rgba(3, 27, 64, 0.22) 100%);
  }

  .universe-hero-container {
    width: min(100%, 860px);
    padding: 48px 28px 58px;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .universe-hero-content {
    max-width: 680px;
    margin: 0 auto;
  }

  .universe-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .universe-hero-content h1 {
    margin-bottom: 22px;
    font-size: clamp(2.45rem, 7.5vw, 3.9rem);
  }

  .universe-hero-actions {
    justify-content: center;
  }

  .universe-hero-visual {
    min-height: auto;
    justify-content: center;
  }

  .universe-hero-visual img {
    width: min(100%, 760px);
    max-width: 100%;
    transform: none;
    object-position: center;
  }

  .universe-hubs-section,
  .universe-franchises-section,
  .universe-process-mission-section,
  .universe-found-section,
  .universe-video-section,
  .universe-newsletter-band {
    width: min(100% - 32px, 860px);
  }
}

/* Smartphone */
@media (max-width: 640px) {
  .universe-hero-container {
    padding: 38px 18px 48px;
    gap: 18px;
  }

  .universe-kicker {
    padding: 7px 12px;
    font-size: 0.76rem;
  }

  .universe-hero-content h1 {
    margin-bottom: 18px;
    font-size: clamp(2.05rem, 12vw, 3rem);
    line-height: 0.98;
  }

  .universe-hero-actions .btn-primary {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .universe-hero-visual img {
    width: 100%;
    max-width: 520px;
  }

  .universe-hubs-section,
  .universe-franchises-section,
  .universe-process-mission-section,
  .universe-found-section,
  .universe-video-section,
  .universe-newsletter-band {
    width: calc(100% - 24px);
  }
}

/* =========================================================
   AJUSTE FINAL - HERO EXPLORE O UNIVERSO IMAGINEI
   Objetivo:
   - Imagem cobrindo o banner com proporção correta
   - Texto proporcional ao título
   - Desktop/notebook com banner mais preenchido lateralmente
   - Tablet/smartphone preservando leitura e proporção
   - Remove textos extras do banner mantendo só título + botão
========================================================= */

.universe-hero-section {
  width: 100%;
  min-height: clamp(520px, 36vw, 650px);
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #061f49 0%, #082f6d 48%, #0c57ae 100%);
}

.universe-hero-section::before,
.universe-hero-section::after {
  pointer-events: none;
}

.universe-hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 52px;
  z-index: 5;
  background: #ffffff;
  clip-path: ellipse(62% 52% at 50% 100%);
}

.universe-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 15, 47, 0.98) 0%, rgba(2, 15, 47, 0.92) 26%, rgba(2, 15, 47, 0.50) 46%, rgba(2, 15, 47, 0.12) 70%, rgba(2, 15, 47, 0.04) 100%),
    radial-gradient(circle at 78% 30%, rgba(255, 191, 0, 0.18), transparent 18%);
}

.universe-hero-container {
  width: min(100%, 1920px);
  min-height: inherit;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(640px, 0.54fr);
  align-items: center;
  gap: clamp(22px, 4vw, 72px);
  padding: clamp(76px, 7vw, 126px) clamp(70px, 12vw, 260px) clamp(72px, 7vw, 118px);
}

.universe-hero-content {
  max-width: 520px;
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.universe-kicker {
  width: fit-content;
  min-height: 36px;
  margin-bottom: 20px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffbf00;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: clamp(0.82rem, 0.75vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.universe-kicker i {
  color: #ffbf00;
}

.universe-hero-content h1 {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(3.8rem, 5.1vw, 6.1rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
  font-weight: 900;
  text-transform: none;
}

.universe-hero-content h1 strong {
  display: block;
  color: #ffbf00;
  font-weight: 900;
}

.universe-hero-content p {
  display: none !important;
}

.universe-hero-actions {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.universe-hero-actions .btn-secondary,
.universe-hero-actions .btn:nth-child(2) {
  display: none !important;
}

.universe-hero-actions .btn-primary {
  min-height: 58px;
  padding: 0 34px;
  color: #031b40;
  background: #ffbf00;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(255, 191, 0, 0.28);
  font-size: clamp(0.94rem, 0.9vw, 1.05rem);
  font-weight: 900;
  text-transform: none;
}

.universe-hero-visual {
  width: 100%;
  height: min(430px, 27vw);
  min-height: 340px;
  max-height: 500px;
  position: relative;
  z-index: 4;
  display: block;
  overflow: visible;
  align-self: center;
}

.universe-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  mix-blend-mode: normal;
}

/* Remove fundo/duplicações antigas caso tenham sido declaradas antes */
.universe-hero-section .universe-hero-container::before,
.universe-hero-section .universe-hero-container::after,
.universe-hero-visual::before,
.universe-hero-visual::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   DESKTOP AMPLO
========================================================= */

@media (min-width: 1440px) {
  .universe-hero-section {
    min-height: 650px;
  }

  .universe-hero-container {
    grid-template-columns: minmax(390px, 0.44fr) minmax(760px, 0.56fr);
    padding-left: clamp(110px, 14.4vw, 276px);
    padding-right: clamp(110px, 12vw, 230px);
  }

  .universe-hero-content {
    max-width: 560px;
  }

  .universe-hero-content h1 {
    font-size: clamp(4.8rem, 5.15vw, 6.25rem);
  }

  .universe-hero-visual {
    height: clamp(400px, 25vw, 500px);
    min-height: 400px;
    transform: translateX(1.5vw);
  }

  .universe-hero-visual img {
    object-position: center right;
  }
}

/* =========================================================
   NOTEBOOK / DESKTOP MÉDIO
========================================================= */

@media (max-width: 1439px) and (min-width: 1025px) {
  .universe-hero-section {
    min-height: 600px;
  }

  .universe-hero-container {
    grid-template-columns: minmax(350px, 0.44fr) minmax(590px, 0.56fr);
    padding: 86px clamp(52px, 7vw, 116px) 92px;
    gap: clamp(28px, 3vw, 56px);
  }

  .universe-hero-content {
    max-width: 470px;
  }

  .universe-hero-content h1 {
    font-size: clamp(3.75rem, 5.2vw, 5.4rem);
  }

  .universe-hero-visual {
    height: clamp(350px, 28vw, 430px);
    min-height: 350px;
    transform: translateX(1vw);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .universe-hero-section {
    min-height: auto;
    display: block;
    background: linear-gradient(180deg, #061f49 0%, #082f6d 100%);
  }

  .universe-hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 15, 47, 0.82) 0%, rgba(2, 15, 47, 0.38) 52%, rgba(2, 15, 47, 0.72) 100%);
  }

  .universe-hero-container {
    width: 100%;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    padding: 70px 34px 86px;
  }

  .universe-hero-content {
    width: min(100%, 640px);
    max-width: 640px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    order: 1;
  }

  .universe-kicker {
    margin-bottom: 16px;
  }

  .universe-hero-content h1 {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: clamp(3.1rem, 8vw, 5rem);
    line-height: 0.94;
  }

  .universe-hero-actions {
    justify-content: center;
  }

  .universe-hero-visual {
    width: min(100%, 860px);
    height: auto;
    min-height: 0;
    margin: 0 auto;
    order: 2;
    transform: none;
  }

  .universe-hero-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: center right;
  }
}

/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 700px) {
  .universe-hero-section::before {
    height: 34px;
  }

  .universe-hero-container {
    min-height: auto;
    padding: 42px 18px 56px;
    gap: 20px;
  }

  .universe-kicker {
    min-height: 30px;
    margin-bottom: 13px;
    padding: 0 13px;
    font-size: 0.72rem;
  }

  .universe-hero-content h1 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 13vw, 3.65rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
  }

  .universe-hero-actions .btn-primary {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .universe-hero-visual {
    width: 100%;
  }

  .universe-hero-visual img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center right;
  }
}

@media (max-width: 420px) {
  .universe-hero-container {
    padding: 34px 14px 50px;
  }

  .universe-hero-content h1 {
    font-size: clamp(2.15rem, 13.5vw, 3.15rem);
  }

  .universe-hero-actions .btn-primary {
    width: 100%;
    max-width: 280px;
  }

  .universe-hero-visual img {
    aspect-ratio: 4 / 3;
    object-position: center right;
  }
}

/* =========================================================
   AJUSTE FINAL - IMAGEM HERO EXPLORE O UNIVERSO IMAGINEI
   Substituição final para:
   - Desktop e notebook: imagem expandida e preenchendo melhor o banner
   - Tablet e smartphone: imagem menor, proporcional e sem cortar elementos principais
   - Mantém somente: selo, título e botão no banner
   - Remove duplicação da imagem
========================================================= */

/* ---------- HERO BASE DA PÁGINA EXPLORE ---------- */

.universe-hero-section,
.explore-hero,
.universo-hero,
.explore-universo-hero {
  width: 100%;
  min-height: clamp(560px, 38vw, 690px);
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: linear-gradient(90deg, #061f49 0%, #082f6d 52%, #0b4fa3 100%);
}

/* Impede qualquer duplicação anterior por background ou pseudo-elemento */
.universe-hero-section .universe-hero-container::before,
.universe-hero-section .universe-hero-container::after,
.universe-hero-visual::before,
.universe-hero-visual::after,
.explore-hero-image::before,
.explore-hero-image::after,
.universo-hero-image::before,
.universo-hero-image::after,
.explore-universo-hero-image::before,
.explore-universo-hero-image::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* Camada escura para dar leitura ao texto */
.universe-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 15, 47, 0.98) 0%, rgba(2, 15, 47, 0.94) 28%, rgba(2, 15, 47, 0.58) 48%, rgba(2, 15, 47, 0.16) 72%, rgba(2, 15, 47, 0.02) 100%);
}

/* Curva inferior branca */
.universe-hero-section::before,
.explore-hero::after,
.universo-hero::after,
.explore-universo-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 60px;
  z-index: 8;
  pointer-events: none;
  background: #ffffff;
  clip-path: ellipse(58% 54% at 50% 100%);
}

/* ---------- ESTRUTURA INTERNA ---------- */

.universe-hero-container,
.explore-hero-content,
.universo-hero-content,
.explore-universo-hero-content {
  width: min(100%, 1920px);
  min-height: inherit;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(360px, 0.38fr) minmax(740px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 4vw, 80px);
  padding: clamp(78px, 7vw, 126px) clamp(58px, 10vw, 220px) clamp(86px, 7vw, 126px);
}

/* ---------- TEXTO ---------- */

.universe-hero-content,
.explore-hero-text,
.universo-hero-text,
.explore-universo-hero-text {
  max-width: 540px;
  position: relative;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.universe-kicker,
.explore-hero-badge,
.universo-hero-badge,
.explore-universo-badge {
  width: fit-content;
  min-height: 36px;
  margin-bottom: 22px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffbf00;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: clamp(0.80rem, 0.8vw, 0.96rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.universe-hero-content h1,
.explore-hero-title,
.universo-hero-title,
.explore-universo-title {
  max-width: 560px;
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(3.65rem, 5.45vw, 6.65rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.universe-hero-content h1 strong,
.explore-hero-title .highlight,
.universo-hero-title .highlight,
.explore-universo-title .highlight {
  display: block;
  color: #ffbf00;
  font-weight: 900;
}

.universe-hero-content p,
.explore-hero-text p,
.universo-hero-text p,
.explore-universo-hero-text p {
  display: none !important;
}

/* Botões: mantém só o principal */
.universe-hero-actions,
.explore-hero-actions,
.universo-hero-actions,
.explore-universo-actions {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.universe-hero-actions .btn-secondary,
.universe-hero-actions .btn:nth-child(2),
.explore-hero-actions .btn-secondary,
.universo-hero-actions .btn-secondary,
.explore-universo-actions .btn-secondary {
  display: none !important;
}

.universe-hero-actions .btn-primary,
.explore-hero .btn-primary,
.universo-hero .btn-primary,
.explore-universo-hero .btn-primary {
  min-height: 58px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #031b40;
  background: #ffbf00;
  border: none;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(255, 191, 0, 0.30);
  font-size: clamp(0.94rem, 0.9vw, 1.06rem);
  font-weight: 900;
  text-transform: none;
  transition: 0.25s ease;
}

.universe-hero-actions .btn-primary:hover,
.explore-hero .btn-primary:hover,
.universo-hero .btn-primary:hover,
.explore-universo-hero .btn-primary:hover {
  transform: translateY(-2px);
  background: #f2a600;
}

/* ---------- IMAGEM DO HERO ---------- */

.universe-hero-visual,
.explore-hero-image,
.universo-hero-image,
.explore-universo-hero-image {
  width: 100%;
  min-width: 0;
  height: clamp(430px, 31vw, 600px);
  min-height: 430px;
  max-height: 620px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  align-self: center;
}

.universe-hero-visual img,
.explore-hero-image img,
.universo-hero-image img,
.explore-universo-hero-image img {
  width: min(100%, 1120px);
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transform: scale(1.20);
  transform-origin: center right;
  mix-blend-mode: normal;
}

/* =========================================================
   DESKTOP GRANDE
========================================================= */

@media (min-width: 1440px) {
  .universe-hero-section,
  .explore-hero,
  .universo-hero,
  .explore-universo-hero {
    min-height: 690px;
  }

  .universe-hero-container,
  .explore-hero-content,
  .universo-hero-content,
  .explore-universo-hero-content {
    grid-template-columns: minmax(420px, 0.36fr) minmax(850px, 0.64fr);
    padding-left: clamp(100px, 14vw, 270px);
    padding-right: clamp(90px, 10vw, 210px);
  }

  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    font-size: clamp(4.9rem, 5.35vw, 6.7rem);
  }

  .universe-hero-visual,
  .explore-hero-image,
  .universo-hero-image,
  .explore-universo-hero-image {
    height: clamp(500px, 31vw, 620px);
  }

  .universe-hero-visual img,
  .explore-hero-image img,
  .universo-hero-image img,
  .explore-universo-hero-image img {
    width: min(108%, 1260px);
    transform: scale(1.24) translateX(2.5vw);
  }
}

/* =========================================================
   NOTEBOOK / DESKTOP MÉDIO
========================================================= */

@media (min-width: 1025px) and (max-width: 1439px) {
  .universe-hero-section,
  .explore-hero,
  .universo-hero,
  .explore-universo-hero {
    min-height: 620px;
  }

  .universe-hero-container,
  .explore-hero-content,
  .universo-hero-content,
  .explore-universo-hero-content {
    grid-template-columns: minmax(350px, 0.39fr) minmax(640px, 0.61fr);
    padding: 82px clamp(52px, 7vw, 118px) 94px;
    gap: clamp(28px, 3.6vw, 58px);
  }

  .universe-hero-content,
  .explore-hero-text,
  .universo-hero-text,
  .explore-universo-hero-text {
    max-width: 490px;
  }

  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    font-size: clamp(3.7rem, 5.2vw, 5.65rem);
  }

  .universe-hero-visual,
  .explore-hero-image,
  .universo-hero-image,
  .explore-universo-hero-image {
    height: clamp(430px, 33vw, 520px);
  }

  .universe-hero-visual img,
  .explore-hero-image img,
  .universo-hero-image img,
  .explore-universo-hero-image img {
    transform: scale(1.18) translateX(1.5vw);
  }
}

/* =========================================================
   TABLET
   A imagem diminui e mantém proporção.
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {
  .universe-hero-section,
  .explore-hero,
  .universo-hero,
  .explore-universo-hero {
    min-height: auto;
    display: block;
    background: linear-gradient(180deg, #061f49 0%, #082f6d 100%);
  }

  .universe-hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 15, 47, 0.84) 0%, rgba(2, 15, 47, 0.34) 48%, rgba(2, 15, 47, 0.72) 100%);
  }

  .universe-hero-container,
  .explore-hero-content,
  .universo-hero-content,
  .explore-universo-hero-content {
    width: 100%;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    padding: 66px 32px 88px;
  }

  .universe-hero-content,
  .explore-hero-text,
  .universo-hero-text,
  .explore-universo-hero-text {
    width: min(100%, 650px);
    max-width: 650px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    order: 1;
  }

  .universe-kicker,
  .explore-hero-badge,
  .universo-hero-badge,
  .explore-universo-badge {
    margin-bottom: 16px;
  }

  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    max-width: 640px;
    margin-bottom: 22px;
    font-size: clamp(3.05rem, 8vw, 5rem);
    line-height: 0.94;
  }

  .universe-hero-actions,
  .explore-hero-actions,
  .universo-hero-actions,
  .explore-universo-actions {
    justify-content: center;
  }

  .universe-hero-visual,
  .explore-hero-image,
  .universo-hero-image,
  .explore-universo-hero-image {
    width: min(100%, 860px);
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0 auto;
    order: 2;
    justify-content: center;
  }

  .universe-hero-visual img,
  .explore-hero-image img,
  .universo-hero-image img,
  .explore-universo-hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: center right;
    transform: scale(1);
  }
}

/* =========================================================
   SMARTPHONE
   A imagem fica menor e o banner empilha sem cortar.
========================================================= */

@media (max-width: 767px) {
  .universe-hero-section,
  .explore-hero,
  .universo-hero,
  .explore-universo-hero {
    min-height: auto;
    display: block;
    background: linear-gradient(180deg, #061f49 0%, #082f6d 100%);
  }

  .universe-hero-section::before,
  .explore-hero::after,
  .universo-hero::after,
  .explore-universo-hero::after {
    height: 34px;
  }

  .universe-hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 15, 47, 0.85) 0%, rgba(2, 15, 47, 0.28) 52%, rgba(2, 15, 47, 0.78) 100%);
  }

  .universe-hero-container,
  .explore-hero-content,
  .universo-hero-content,
  .explore-universo-hero-content {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 38px 16px 58px;
  }

  .universe-hero-content,
  .explore-hero-text,
  .universo-hero-text,
  .explore-universo-hero-text {
    width: 100%;
    max-width: 390px;
    align-items: center;
    text-align: center;
    order: 1;
  }

  .universe-kicker,
  .explore-hero-badge,
  .universo-hero-badge,
  .explore-universo-badge {
    min-height: 30px;
    margin-bottom: 12px;
    padding: 0 13px;
    font-size: 0.72rem;
  }

  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 12.7vw, 3.7rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
  }

  .universe-hero-actions,
  .explore-hero-actions,
  .universo-hero-actions,
  .explore-universo-actions {
    width: 100%;
    justify-content: center;
  }

  .universe-hero-actions .btn-primary,
  .explore-hero .btn-primary,
  .universo-hero .btn-primary,
  .explore-universo-hero .btn-primary {
    width: 100%;
    max-width: 300px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .universe-hero-visual,
  .explore-hero-image,
  .universo-hero-image,
  .explore-universo-hero-image {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    order: 2;
    justify-content: center;
  }

  .universe-hero-visual img,
  .explore-hero-image img,
  .universo-hero-image img,
  .explore-universo-hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center right;
    transform: scale(0.96);
    transform-origin: center;
  }
}

/* =========================================================
   SMARTPHONES MENORES
========================================================= */

@media (max-width: 420px) {
  .universe-hero-container,
  .explore-hero-content,
  .universo-hero-content,
  .explore-universo-hero-content {
    padding: 34px 14px 52px;
  }

  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    font-size: clamp(2.05rem, 13.2vw, 3.2rem);
  }

  .universe-hero-actions .btn-primary,
  .explore-hero .btn-primary,
  .universo-hero .btn-primary,
  .explore-universo-hero .btn-primary {
    max-width: 280px;
  }

  .universe-hero-visual img,
  .explore-hero-image img,
  .universo-hero-image img,
  .explore-universo-hero-image img {
    aspect-ratio: 4 / 3;
    transform: scale(0.92);
    object-position: center right;
  }
}

/* =========================================================
   AJUSTE FINAL - TEXTO DE MISSÃO NO HERO EXPLORE
   - Recoloca o texto curto abaixo do título
   - Reduz levemente a fonte do título
   - Mantém proporção no desktop, notebook, tablet e smartphone
========================================================= */

.universe-hero-content h1,
.explore-hero-title,
.universo-hero-title,
.explore-universo-title {
  font-size: clamp(3.35rem, 5.05vw, 6.05rem) !important;
  line-height: 0.92 !important;
  margin-bottom: 20px !important;
}

.universe-hero-content .universe-hero-mission {
  display: block !important;
  max-width: 610px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.08vw, 1.24rem);
  line-height: 1.48;
  font-weight: 700;
  letter-spacing: -0.012em;
}

.universe-hero-actions {
  margin-top: 0 !important;
}

/* Evita que regras antigas escondam o parágrafo com classe de missão */
.universe-hero-content p.universe-hero-mission,
.explore-hero-text p.universe-hero-mission,
.universo-hero-text p.universe-hero-mission,
.explore-universo-hero-text p.universe-hero-mission {
  display: block !important;
}

/* Desktop amplo */
@media (min-width: 1440px) {
  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    font-size: clamp(4.45rem, 4.85vw, 6.1rem) !important;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 620px;
    font-size: clamp(1.08rem, 1.02vw, 1.24rem);
  }
}

/* Notebook */
@media (min-width: 1025px) and (max-width: 1439px) {
  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    font-size: clamp(3.35rem, 4.9vw, 5.2rem) !important;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: clamp(0.98rem, 1.12vw, 1.12rem);
    line-height: 1.45;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    max-width: 640px;
    font-size: clamp(2.85rem, 7.2vw, 4.55rem) !important;
    margin-bottom: 18px !important;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    text-align: center;
    font-size: clamp(0.98rem, 2.2vw, 1.18rem);
    line-height: 1.5;
  }
}

/* Smartphone */
@media (max-width: 767px) {
  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    max-width: 370px;
    font-size: clamp(2.05rem, 11.4vw, 3.35rem) !important;
    line-height: 0.96 !important;
    margin-bottom: 16px !important;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 360px;
    margin: 0 auto 22px;
    text-align: center;
    font-size: clamp(0.88rem, 4.2vw, 1.02rem);
    line-height: 1.48;
    font-weight: 650;
  }

  .universe-hero-actions {
    width: 100%;
    justify-content: center;
  }
}

/* Smartphone pequeno */
@media (max-width: 420px) {
  .universe-hero-content h1,
  .explore-hero-title,
  .universo-hero-title,
  .explore-universo-title {
    font-size: clamp(1.95rem, 11vw, 2.85rem) !important;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 330px;
    font-size: 0.9rem;
    line-height: 1.46;
  }
}

/* =========================================================
   AJUSTE DEFINITIVO — EXPLORE O UNIVERSO IMAGINEI
   Versão com texto de missão no hero
   Arquivo: assets/css/style.css
   ========================================================= */

/* ---------------------------------------------------------
   HERO — ESTRUTURA GERAL
--------------------------------------------------------- */

.universe-hero-section {
  width: 100%;
  min-height: clamp(560px, 38vw, 700px);
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  background: linear-gradient(90deg, #061f49 0%, #082f6d 52%, #0b4fa3 100%);
}

/* Curva branca inferior */
.universe-hero-section::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -1px;
  height: 62px;
  z-index: 8;
  pointer-events: none;
  background: #ffffff;
  clip-path: ellipse(58% 54% at 50% 100%);
}

/* Overlay para leitura do texto */
.universe-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(2, 15, 47, 0.98) 0%,
      rgba(2, 15, 47, 0.95) 27%,
      rgba(2, 15, 47, 0.66) 44%,
      rgba(2, 15, 47, 0.20) 66%,
      rgba(2, 15, 47, 0.04) 100%
    );
}

/* Container do hero */
.universe-hero-container {
  width: min(100%, 1920px);
  min-height: inherit;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(360px, 0.40fr) minmax(720px, 0.60fr);
  align-items: center;
  gap: clamp(28px, 4vw, 80px);
  padding: clamp(78px, 7vw, 126px) clamp(58px, 10vw, 220px) clamp(86px, 7vw, 126px);
}

/* ---------------------------------------------------------
   HERO — TEXTO
--------------------------------------------------------- */

.universe-hero-content {
  max-width: 610px;
  position: relative;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.universe-kicker {
  width: fit-content;
  min-height: 36px;
  margin-bottom: 22px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffbf00;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: clamp(0.80rem, 0.8vw, 0.96rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.universe-kicker i {
  color: #ffbf00;
}

.universe-hero-content h1 {
  max-width: 610px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(3.35rem, 5.05vw, 6.05rem);
  line-height: 0.92;
  letter-spacing: -0.062em;
  font-weight: 900;
}

.universe-hero-content h1 strong {
  display: block;
  color: #ffbf00;
  font-weight: 900;
}

.universe-hero-content .universe-hero-mission {
  display: block !important;
  max-width: 610px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.08vw, 1.24rem);
  line-height: 1.48;
  font-weight: 700;
  letter-spacing: -0.012em;
}

/* Esconde parágrafos antigos, mas mantém o texto de missão */
.universe-hero-content p:not(.universe-hero-mission) {
  display: none !important;
}

/* ---------------------------------------------------------
   HERO — BOTÃO
--------------------------------------------------------- */

.universe-hero-actions {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.universe-hero-actions .btn-secondary,
.universe-hero-actions .btn:nth-child(2) {
  display: none !important;
}

.universe-hero-actions .btn-primary {
  min-height: 58px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #031b40;
  background: #ffbf00;
  border: none;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(255, 191, 0, 0.30);
  font-size: clamp(0.94rem, 0.9vw, 1.06rem);
  font-weight: 900;
  text-transform: none;
  transition: 0.25s ease;
}

.universe-hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  background: #f2a600;
}

/* ---------------------------------------------------------
   HERO — IMAGEM
--------------------------------------------------------- */

.universe-hero-visual {
  width: 100%;
  min-width: 0;
  height: clamp(430px, 31vw, 620px);
  min-height: 430px;
  max-height: 640px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  align-self: center;
}

/* Remove duplicações ou fundos antigos */
.universe-hero-section .universe-hero-container::before,
.universe-hero-section .universe-hero-container::after,
.universe-hero-visual::before,
.universe-hero-visual::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.universe-hero-visual img {
  width: min(108%, 1220px);
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transform: scale(1.14) translateX(1.8vw);
  transform-origin: center right;
  mix-blend-mode: normal;
}

/* ---------------------------------------------------------
   DESKTOP AMPLO
--------------------------------------------------------- */

@media (min-width: 1440px) {
  .universe-hero-section {
    min-height: 700px;
  }

  .universe-hero-container {
    grid-template-columns: minmax(430px, 0.38fr) minmax(860px, 0.62fr);
    padding-left: clamp(100px, 14vw, 270px);
    padding-right: clamp(90px, 10vw, 210px);
  }

  .universe-hero-content {
    max-width: 640px;
  }

  .universe-hero-content h1 {
    max-width: 640px;
    font-size: clamp(4.4rem, 4.75vw, 6.05rem);
    margin-bottom: 20px;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 620px;
    font-size: clamp(1.08rem, 1.02vw, 1.24rem);
    margin-bottom: 30px;
  }

  .universe-hero-visual {
    height: clamp(500px, 31vw, 640px);
  }

  .universe-hero-visual img {
    width: min(112%, 1320px);
    transform: scale(1.18) translateX(2.4vw);
  }
}

/* ---------------------------------------------------------
   NOTEBOOK / DESKTOP MÉDIO
--------------------------------------------------------- */

@media (min-width: 1025px) and (max-width: 1439px) {
  .universe-hero-section {
    min-height: 630px;
  }

  .universe-hero-container {
    grid-template-columns: minmax(350px, 0.40fr) minmax(640px, 0.60fr);
    padding: 82px clamp(52px, 7vw, 118px) 94px;
    gap: clamp(28px, 3.6vw, 58px);
  }

  .universe-hero-content {
    max-width: 530px;
  }

  .universe-hero-content h1 {
    max-width: 530px;
    font-size: clamp(3.35rem, 4.85vw, 5.15rem);
    margin-bottom: 18px;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: clamp(0.98rem, 1.12vw, 1.12rem);
    line-height: 1.45;
  }

  .universe-hero-visual {
    height: clamp(430px, 33vw, 540px);
  }

  .universe-hero-visual img {
    width: min(108%, 1120px);
    transform: scale(1.12) translateX(1.2vw);
  }
}

/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1024px) {
  .universe-hero-section {
    min-height: auto;
    display: block;
    background: linear-gradient(180deg, #061f49 0%, #082f6d 100%);
  }

  .universe-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 15, 47, 0.84) 0%,
        rgba(2, 15, 47, 0.42) 48%,
        rgba(2, 15, 47, 0.78) 100%
      );
  }

  .universe-hero-section::before {
    height: 44px;
  }

  .universe-hero-container {
    width: 100%;
    min-height: 770px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    padding: 66px 32px 88px;
  }

  .universe-hero-content {
    width: min(100%, 680px);
    max-width: 680px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    order: 1;
  }

  .universe-kicker {
    min-height: 34px;
    margin-bottom: 16px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .universe-hero-content h1 {
    max-width: 640px;
    margin-bottom: 18px;
    font-size: clamp(2.85rem, 7.2vw, 4.55rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 680px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: clamp(0.98rem, 2.2vw, 1.18rem);
    line-height: 1.5;
  }

  .universe-hero-actions {
    justify-content: center;
  }

  .universe-hero-visual {
    width: min(100%, 860px);
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0 auto;
    order: 2;
    justify-content: center;
  }

  .universe-hero-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: center right;
    transform: scale(1);
    transform-origin: center;
  }
}

/* ---------------------------------------------------------
   SMARTPHONE
--------------------------------------------------------- */

@media (max-width: 767px) {
  .universe-hero-section {
    min-height: auto;
    display: block;
    background: linear-gradient(180deg, #061f49 0%, #082f6d 100%);
  }

  .universe-hero-section::before {
    height: 34px;
  }

  .universe-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 15, 47, 0.86) 0%,
        rgba(2, 15, 47, 0.38) 52%,
        rgba(2, 15, 47, 0.82) 100%
      );
  }

  .universe-hero-container {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 38px 16px 58px;
  }

  .universe-hero-content {
    width: 100%;
    max-width: 390px;
    align-items: center;
    text-align: center;
    order: 1;
  }

  .universe-kicker {
    min-height: 30px;
    margin-bottom: 12px;
    padding: 0 13px;
    font-size: 0.72rem;
  }

  .universe-hero-content h1 {
    max-width: 370px;
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 11.4vw, 3.35rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 360px;
    margin: 0 auto 22px;
    text-align: center;
    font-size: clamp(0.88rem, 4.2vw, 1.02rem);
    line-height: 1.48;
    font-weight: 650;
  }

  .universe-hero-actions {
    width: 100%;
    justify-content: center;
  }

  .universe-hero-actions .btn-primary {
    width: 100%;
    max-width: 300px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .universe-hero-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    order: 2;
    justify-content: center;
  }

  .universe-hero-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center right;
    transform: scale(0.96);
    transform-origin: center;
  }
}

/* ---------------------------------------------------------
   SMARTPHONE PEQUENO
--------------------------------------------------------- */

@media (max-width: 420px) {
  .universe-hero-container {
    padding: 34px 14px 52px;
  }

  .universe-hero-content h1 {
    font-size: clamp(1.95rem, 11vw, 2.85rem);
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 330px;
    font-size: 0.9rem;
    line-height: 1.46;
  }

  .universe-hero-actions .btn-primary {
    max-width: 280px;
  }

  .universe-hero-visual img {
    aspect-ratio: 4 / 3;
    transform: scale(0.92);
    object-position: center right;
  }
}

/* ---------------------------------------------------------
   NEWSLETTER DA PÁGINA EXPLORE
--------------------------------------------------------- */

.universe-newsletter-form .newsletter-status-message,
.newsletter-status-message {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.newsletter-status-message.success {
  color: #b7ffcf;
}

.newsletter-status-message.error {
  color: #ffd1d1;
}

/* ---------------------------------------------------------
   REVEAL / TOAST USADOS PELO JS
--------------------------------------------------------- */

.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-message {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 6000;
  max-width: min(420px, calc(100% - 32px));
  padding: 13px 18px;
  color: #ffffff;
  background: #031b40;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(3, 27, 64, 0.30);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: 0.25s ease;
}

.toast-message.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =========================================================
   AJUSTE FINAL RESPONSIVO — EXPLORE O UNIVERSO IMAGINEI
   Foco: tablet e smartphone
   - Título encaixado na tela
   - Texto da missão justificado
   - Imagem abaixo do botão preenchendo melhor a área
   - Desktop/notebook preservados
========================================================= */

/* ---------- HERO BASE ---------- */

.universe-hero-section {
  width: 100%;
  min-height: clamp(560px, 38vw, 700px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, #061f49 0%, #082f6d 52%, #0b4fa3 100%);
}

.universe-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(2, 15, 47, 0.98) 0%,
      rgba(2, 15, 47, 0.94) 28%,
      rgba(2, 15, 47, 0.60) 48%,
      rgba(2, 15, 47, 0.18) 68%,
      rgba(2, 15, 47, 0.04) 100%
    );
}

.universe-hero-section::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -1px;
  height: 62px;
  z-index: 8;
  pointer-events: none;
  background: #ffffff;
  clip-path: ellipse(58% 54% at 50% 100%);
}

.universe-hero-container {
  width: min(100%, 1920px);
  min-height: inherit;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(360px, 0.40fr) minmax(720px, 0.60fr);
  align-items: center;
  gap: clamp(28px, 4vw, 80px);
  padding: clamp(78px, 7vw, 126px) clamp(58px, 10vw, 220px) clamp(86px, 7vw, 126px);
}

.universe-hero-content {
  max-width: 610px;
  position: relative;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.universe-kicker {
  width: fit-content;
  min-height: 36px;
  margin-bottom: 22px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffbf00;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: clamp(0.80rem, 0.8vw, 0.96rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.universe-hero-content h1 {
  max-width: 610px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(3.35rem, 5.05vw, 6.05rem);
  line-height: 0.92;
  letter-spacing: -0.062em;
  font-weight: 900;
}

.universe-hero-content h1 strong {
  display: block;
  color: #ffbf00;
}

.universe-hero-content .universe-hero-mission {
  display: block !important;
  max-width: 610px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.08vw, 1.24rem);
  line-height: 1.48;
  font-weight: 700;
  letter-spacing: -0.012em;
  text-align: left;
}

.universe-hero-content p:not(.universe-hero-mission) {
  display: none !important;
}

.universe-hero-actions {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.universe-hero-actions .btn-secondary,
.universe-hero-actions .btn:nth-child(2) {
  display: none !important;
}

.universe-hero-actions .btn-primary {
  min-height: 58px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #031b40;
  background: #ffbf00;
  border: none;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(255, 191, 0, 0.30);
  font-size: clamp(0.94rem, 0.9vw, 1.06rem);
  font-weight: 900;
  transition: 0.25s ease;
}

.universe-hero-visual {
  width: 100%;
  min-width: 0;
  height: clamp(430px, 31vw, 620px);
  min-height: 430px;
  max-height: 640px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  align-self: center;
}

/* Remove duplicações anteriores */
.universe-hero-section .universe-hero-container::before,
.universe-hero-section .universe-hero-container::after,
.universe-hero-visual::before,
.universe-hero-visual::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.universe-hero-visual img {
  width: min(108%, 1220px);
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transform: scale(1.14) translateX(1.8vw);
  transform-origin: center right;
  mix-blend-mode: normal;
}

/* =========================================================
   DESKTOP AMPLO
========================================================= */

@media (min-width: 1440px) {
  .universe-hero-section {
    min-height: 700px;
  }

  .universe-hero-container {
    grid-template-columns: minmax(430px, 0.38fr) minmax(860px, 0.62fr);
    padding-left: clamp(100px, 14vw, 270px);
    padding-right: clamp(90px, 10vw, 210px);
  }

  .universe-hero-content {
    max-width: 640px;
  }

  .universe-hero-content h1 {
    max-width: 640px;
    font-size: clamp(4.4rem, 4.75vw, 6.05rem);
    margin-bottom: 20px;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 620px;
    font-size: clamp(1.08rem, 1.02vw, 1.24rem);
    margin-bottom: 30px;
    text-align: left;
  }

  .universe-hero-visual {
    height: clamp(500px, 31vw, 640px);
  }

  .universe-hero-visual img {
    width: min(112%, 1320px);
    transform: scale(1.18) translateX(2.4vw);
  }
}

/* =========================================================
   NOTEBOOK / DESKTOP MÉDIO
========================================================= */

@media (min-width: 1025px) and (max-width: 1439px) {
  .universe-hero-section {
    min-height: 630px;
  }

  .universe-hero-container {
    grid-template-columns: minmax(350px, 0.40fr) minmax(640px, 0.60fr);
    padding: 82px clamp(52px, 7vw, 118px) 94px;
    gap: clamp(28px, 3.6vw, 58px);
  }

  .universe-hero-content {
    max-width: 530px;
  }

  .universe-hero-content h1 {
    max-width: 530px;
    font-size: clamp(3.35rem, 4.85vw, 5.15rem);
    margin-bottom: 18px;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: clamp(0.98rem, 1.12vw, 1.12rem);
    line-height: 1.45;
    text-align: left;
  }

  .universe-hero-visual {
    height: clamp(430px, 33vw, 540px);
  }

  .universe-hero-visual img {
    width: min(108%, 1120px);
    transform: scale(1.12) translateX(1.2vw);
  }
}

/* =========================================================
   TABLET — AJUSTE ESPECÍFICO
   Mantém o título centralizado, missão justificada e imagem
   preenchendo abaixo do botão.
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {
  .universe-hero-section {
    min-height: auto;
    display: block;
    background: linear-gradient(180deg, #061f49 0%, #082f6d 100%);
  }

  .universe-hero-section::before {
    height: 44px;
  }

  .universe-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 15, 47, 0.84) 0%,
        rgba(2, 15, 47, 0.50) 44%,
        rgba(2, 15, 47, 0.76) 100%
      );
  }

  .universe-hero-container {
    width: 100%;
    min-height: 860px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    padding: 58px 34px 82px;
  }

  .universe-hero-content {
    width: min(100%, 700px);
    max-width: 700px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    order: 1;
  }

  .universe-kicker {
    min-height: 34px;
    margin-bottom: 16px;
    padding: 0 16px;
    font-size: 0.80rem;
  }

  .universe-hero-content h1 {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 18px;
    font-size: clamp(3rem, 7vw, 4.5rem);
    line-height: 0.94;
    letter-spacing: -0.052em;
    text-align: center;
  }

  .universe-hero-content .universe-hero-mission {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.94);
    text-align: justify;
    text-align-last: center;
    font-size: clamp(1rem, 2.05vw, 1.16rem);
    line-height: 1.52;
    font-weight: 700;
  }

  .universe-hero-actions {
    width: 100%;
    justify-content: center;
  }

  .universe-hero-actions .btn-primary {
    width: min(100%, 380px);
    min-height: 56px;
  }

  .universe-hero-visual {
    width: min(100%, 820px);
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0 auto;
    order: 2;
    justify-content: center;
    overflow: visible;
  }

  .universe-hero-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.08);
    transform-origin: center;
  }
}

/* =========================================================
   SMARTPHONE — AJUSTE ESPECÍFICO
   Encaixa o título, justifica a missão e aumenta a imagem.
========================================================= */

@media (max-width: 767px) {
  .universe-hero-section {
    min-height: auto;
    display: block;
    background: linear-gradient(180deg, #061f49 0%, #082f6d 100%);
  }

  .universe-hero-section::before {
    height: 34px;
  }

  .universe-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 15, 47, 0.88) 0%,
        rgba(2, 15, 47, 0.54) 47%,
        rgba(2, 15, 47, 0.82) 100%
      );
  }

  .universe-hero-container {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 38px 18px 58px;
  }

  .universe-hero-content {
    width: 100%;
    max-width: 390px;
    align-items: center;
    text-align: center;
    order: 1;
  }

  .universe-kicker {
    min-height: 30px;
    margin-bottom: 14px;
    padding: 0 13px;
    font-size: 0.72rem;
  }

  .universe-hero-content h1 {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 18px;
    font-size: clamp(2rem, 10.8vw, 3.05rem);
    line-height: 0.98;
    letter-spacing: -0.048em;
    text-align: center;
  }

  .universe-hero-content .universe-hero-mission {
    width: 100%;
    max-width: 346px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.94);
    text-align: justify;
    text-align-last: center;
    font-size: clamp(0.88rem, 3.85vw, 0.98rem);
    line-height: 1.48;
    font-weight: 700;
  }

  .universe-hero-actions {
    width: 100%;
    justify-content: center;
  }

  .universe-hero-actions .btn-primary {
    width: 100%;
    max-width: 315px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 0.94rem;
  }

  .universe-hero-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    order: 2;
    justify-content: center;
    margin-top: 4px;
    overflow: visible;
  }

  .universe-hero-visual img {
    width: min(118%, 520px);
    height: auto;
    max-width: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.10);
    transform-origin: center;
  }
}

/* =========================================================
   SMARTPHONE PEQUENO — 360px / 390px
========================================================= */

@media (max-width: 420px) {
  .universe-hero-container {
    padding: 34px 15px 52px;
    gap: 24px;
  }

  .universe-hero-content {
    max-width: 360px;
  }

  .universe-hero-content h1 {
    max-width: 330px;
    font-size: clamp(1.9rem, 10.4vw, 2.75rem);
    line-height: 1;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 318px;
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .universe-hero-actions .btn-primary {
    max-width: 300px;
  }

  .universe-hero-visual img {
    width: min(126%, 480px);
    aspect-ratio: 4 / 3;
    transform: scale(1.12);
    object-position: center right;
  }
}

@media (max-width: 360px) {
  .universe-hero-content h1 {
    max-width: 305px;
    font-size: 2.42rem;
  }

  .universe-hero-content .universe-hero-mission {
    max-width: 296px;
    font-size: 0.84rem;
  }

  .universe-hero-actions .btn-primary {
    max-width: 286px;
  }
}
