/* Base + acessibilidade + ajustes globais da landing */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

/* SEO/AEO prerender — oculto até React montar; HTML permanece para crawlers e IA */
#root:not(.ecox-app-ready) {
  min-height: 100vh;
  background: var(--white);
}

#root:not(.ecox-app-ready) > .landing-seo-prerender,
#root:not(.ecox-app-ready) > .ecox-root-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

noscript .landing-seo-prerender {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  max-width: 720px;
  padding: 2rem 5%;
  margin-left: auto;
  margin-right: auto;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .ecox-hide-mobile { display: none !important; }
}

@media (min-width: 901px) {
  .ecox-hide-desktop { display: none !important; }
}

@media (max-width: 640px) {
  .btn-full-mobile {
    display: flex !important;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }
}

/* ── Nav sticky ── */
.landing-nav {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 14px rgba(0, 0, 0, 0.03);
}

/* ── Clientes marquee ── */
.clientes-sec {
  background: var(--white);
  padding: 72px 0;
  border-top: 1px solid var(--rule);
}

.clientes-head {
  margin-bottom: 40px;
}

.clientes-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.clientes-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: cli-scroll 50s linear infinite;
}

.clientes-marquee:hover .clientes-track {
  animation-play-state: paused;
}

.clientes-track img {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
  flex: none;
}

.clientes-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes cli-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Modalidades (locação / venda) ── */
#modalidades header h2 {
  max-width: none;
}

.modalidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

@media (max-width: 900px) {
  .modalidades-grid { grid-template-columns: 1fr; }
}

.modal-card {
  background: var(--white);
  padding: 52px 44px;
}

@media (max-width: 640px) {
  .modal-card { padding: 36px 24px; }
}

.modal-label {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--red);
}

.modal-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.modal-card-lead {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.modal-rule {
  height: 1px;
  background: var(--rule);
  margin: 24px 0;
}

.modal-info-box {
  background: var(--bg-2);
  border-left: 2px solid var(--red);
  padding: 16px 18px;
  margin-bottom: 14px;
}

.modal-info-box:last-of-type {
  margin-bottom: 24px;
}

.modal-info-label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 10px;
}

.modal-info-text {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-list li {
  font-size: 0.85rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.modal-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.modal-list--incluso > li {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.modal-list--incluso > li::before {
  display: none;
}

.modal-list--incluso > li > strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-list--nested {
  margin: 0;
  padding-left: 2px;
  gap: 8px;
}

.modal-venda-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 24px;
  cursor: pointer;
  background: #000;
}

.modal-venda-video img,
.modal-venda-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-venda-video img {
  object-fit: cover;
  opacity: 0.82;
}

.modal-venda-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.modal-venda-play span {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.modal-venda-play span::after {
  content: "";
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-dark:hover {
  background: var(--dark);
}

.dif-card {
  transition: background 0.2s;
}

.dif-card:hover {
  background: var(--bg) !important;
}

/* ── Por que Eco X (vídeo + benefícios) ── */
.porque-eco-x__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.porque-eco-x__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-mega);
}

.porque-eco-x__video img,
.porque-eco-x__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.porque-eco-x__video img {
  object-fit: cover;
  opacity: 0.88;
  transition: opacity var(--dur-slow);
}

.porque-eco-x__video:hover img {
  opacity: 0.75;
}

.porque-eco-x__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.porque-eco-x__play span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: transform var(--dur), background var(--dur);
}

.porque-eco-x__video:hover .porque-eco-x__play span {
  transform: scale(1.06);
  background: var(--red-dark);
}

.porque-eco-x__play span::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

.porque-eco-x__list.beneficioscastramovel,
.beneficioscastramovel {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.porque-eco-x__list.beneficioscastramovel li,
.beneficioscastramovel li {
  position: relative;
  padding: 12px 14px 12px 36px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--mid);
  background: var(--bg);
  border-left: none;
}

.porque-eco-x__list.beneficioscastramovel li::before,
.beneficioscastramovel li::before {
  content: "✔";
  position: absolute;
  left: 14px;
  top: 13px;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-top: 0;
}

@media (min-width: 768px) {
  .porque-eco-x__list.beneficioscastramovel,
  .beneficioscastramovel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .porque-eco-x__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .porque-eco-x__list.beneficioscastramovel li,
  .beneficioscastramovel li {
    font-size: 0.88rem;
    padding: 11px 12px 11px 34px;
  }

  .porque-eco-x__play span {
    width: 58px;
    height: 58px;
  }

  .porque-eco-x__play span::after {
    border-width: 10px 0 10px 16px;
  }
}

#diferenciais header h2 {
  white-space: nowrap;
  max-width: none !important;
  font-size: clamp(0.78rem, 2.6vw, 2.3rem) !important;
}

.product-card__status-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: var(--reserved);
  color: var(--white);
  font-family: var(--font-text);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  padding: 5px 8px;
  max-width: calc(100% - 20px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.btn-dark[style*="background: var(--white)"]:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}

/* Top bar — contato rápido acima do header */
.top-bar {
  background: var(--footer-grey);
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 5%;
}

.top-bar__tagline {
  font-size: 0.68rem;
  color: #3a3a3a;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.top-bar__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.top-bar__link {
  color: #3a3a3a;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.top-bar__link--tel {
  color: var(--black);
  font-weight: 600;
}

.top-bar__link:hover {
  color: var(--black);
}

@media (max-width: 640px) {
  .top-bar--mobile {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    min-height: 0;
    padding: 7px 0 1px;
    gap: 8px;
  }

  .top-bar--mobile .top-bar__tagline {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    line-height: 1.45;
    padding: 0 5%;
  }

  .top-bar--mobile .top-bar__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    background: #e4e4e4;
    padding: 7px 0;
  }

  .top-bar--mobile .top-bar__link {
    font-size: 0.65rem;
    padding: 4px 6px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    justify-self: center;
  }

  .top-bar--mobile .top-bar__link--tel {
    font-size: 0.64rem;
  }
}

/* Disponíveis — cabeçalho */
.disponiveis-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.disponiveis-head__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.disponiveis-head__rule {
  flex-shrink: 0;
  width: 3px;
  height: 22px;
  background: var(--red);
}

.disponiveis-head__tagline {
  font-size: 0.6rem;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
  max-width: 220px;
}

.disponiveis-head__count {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
}

.disponiveis-head__count strong {
  color: var(--red);
  font-weight: 900;
}

.disponiveis-head__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
}

@media (max-width: 640px) {
  .disponiveis-head {
    margin-bottom: 22px;
    padding-bottom: 20px;
  }

  .disponiveis-head__brand {
    margin-bottom: 14px;
  }
}

/* Disponíveis — abas responsivas */
@media (max-width: 640px) {
  .tab-bar {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tab-bar__tab {
    padding: 10px 6px !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.04em !important;
    white-space: normal !important;
    line-height: 1.25;
    text-align: center;
    hyphens: auto;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
  .tab-bar__tab {
    padding: 12px 14px !important;
    font-size: 0.68rem !important;
    white-space: normal !important;
    line-height: 1.25;
    text-align: center;
  }
}

/* Form wizard modal — compacto, cabe na viewport */
.form-modal-shell {
  max-height: calc(100dvh - 24px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.form-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.form-modal-body::-webkit-scrollbar {
  width: 6px;
}

.form-modal-body::-webkit-scrollbar-thumb {
  background: var(--rule);
  border-radius: 3px;
}

.form-step-error {
  margin: 0;
  font-family: var(--font-text);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1.45;
  text-align: right;
}

.form-modal-body label > span {
  font-size: 0.68rem !important;
}

.form-modal-body label input,
.form-modal-body label select,
.form-modal-body label textarea {
  font-size: 1rem !important;
  line-height: 1.45;
}

.form-modal-body label input,
.form-modal-body label select {
  padding: 12px 0 !important;
}

.form-modal-body label textarea {
  min-height: 96px !important;
}

.form-modal-body label:focus-within span {
  color: var(--red);
}

@media (max-width: 640px) {
  .form-step-error {
    text-align: center;
  }

  .form-modal-body .btn-full-mobile[disabled] {
    opacity: 0.45 !important;
  }
}

/* ── Buscador de Cases (nav) ─────────────────────────────────────────── */
.cases-search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: 17px;
  margin-right: 4px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: border-color var(--dur), background var(--dur);
}

.cases-search-trigger:hover,
.cases-search-trigger--active {
  border-color: var(--rule);
  background: var(--bg);
}

.cases-search-trigger__icon {
  display: block;
  transform-origin: center;
  animation: cases-search-pulse 10s ease-in-out infinite;
}

.cases-search-trigger__icon--active {
  animation: none;
  transform: scale(1.08);
}

@keyframes cases-search-pulse {
  0%, 88%, 100% {
    transform: scale(1);
  }

  90% {
    transform: scale(1.32);
  }

  92% {
    transform: scale(1);
  }

  94% {
    transform: scale(1.18);
  }

  96%, 100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cases-search-trigger__icon {
    animation: none;
  }
}

.cases-search-overlay {
  position: fixed;
  top: 102px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 48;
  background: var(--overlay-hero);
  animation: casesSearchFadeIn 0.25s ease;
}

.cases-search-panel {
  position: fixed;
  top: 102px;
  right: 0;
  left: 0;
  z-index: 49;
  max-height: calc(100vh - 102px);
  overflow-y: auto;
  padding: 24px 5% 40px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 2px solid var(--red);
  box-shadow: var(--shadow-mega);
  animation: casesSearchSlideDown 0.25s ease;
}

.cases-search-panel__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.cases-search-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.cases-search-input-wrap {
  display: flex;
  flex: 1 1 320px;
  align-items: center;
  gap: 12px;
  min-width: 0;
  height: 35px;
  padding: 0 16px;
  border: 1px solid var(--rule);
  background: var(--white);
  box-sizing: border-box;
}

.cases-search-input-wrap:focus-within {
  border-color: var(--red);
}

.cases-search-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font-text);
  font-size: 0.92rem;
  color: var(--black);
  outline: none;
}

.cases-search-input::placeholder {
  color: var(--muted);
}

.cases-search-clear,
.cases-search-close {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-text);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
}

.cases-search-close {
  padding: 10px 0 10px 12px;
  border-left: 1px solid var(--rule);
}

.cases-search-clear {
  padding: 4px 8px;
  color: #aaa;
}

.cases-search-panel__body {
  min-height: 120px;
}

.cases-search-message {
  margin: 0;
  padding: 24px 0;
  min-height: 72px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.cases-search-message--error {
  color: var(--mid);
}

.cases-search-carousel {
  position: relative;
}

.cases-search-carousel__viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 1.5%, #000 98.5%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 1.5%, #000 98.5%, transparent);
}

.cases-search-carousel__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cases-search-carousel__track::-webkit-scrollbar {
  display: none;
}

.cases-search-carousel__track .cases-search-card {
  flex: 0 0 calc(20% - 10px);
  min-width: 220px;
  scroll-snap-align: start;
}

.cases-search-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.cases-search-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--rule);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
  transition: border-color var(--dur), color var(--dur), background var(--dur);
}

.cases-search-carousel__arrow:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--bg);
}

@media (max-width: 900px) {
  .cases-search-carousel__track .cases-search-card {
    flex: 0 0 calc(50% - 6px);
    min-width: 200px;
  }
}

@media (max-width: 640px) {
  .cases-search-carousel__track .cases-search-card {
    flex: 0 0 82%;
    min-width: 0;
  }
}

.cases-search-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule);
  background: var(--white);
  transition: border-color var(--dur), transform var(--dur-fast);
}

.cases-search-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.cases-search-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.cases-search-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases-search-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #333);
}

.cases-search-card__logo {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: 72px;
  max-height: 36px;
  padding: 6px 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
}

.cases-search-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
}

.cases-search-card__client {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}

.cases-search-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--black);
}

.cases-search-card__task {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

.cases-search-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.cases-search-card__tag {
  padding: 4px 8px;
  border: 1px solid var(--rule);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid);
}

.cases-search-card__tag--tag {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 640px) {
  .cases-search-overlay {
    top: 132px;
  }
}

.cases-search-panel--mobile {
  top: 132px;
  max-height: calc(100vh - 132px);
  padding: 16px 5% 28px;
}

.cases-search-panel--mobile .cases-search-panel__head {
  flex-direction: column;
  align-items: stretch;
}

.cases-search-panel--mobile .cases-search-close {
  align-self: flex-end;
  padding-left: 0;
  border-left: none;
}

@keyframes casesSearchFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes casesSearchSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Carrossel de soluções (pilares) ── */
.pillars-carousel {
  margin-top: 8px;
  border: 1px solid var(--rule);
  background: var(--rule);
}

.pillars-carousel__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--rule);
}

.pillars-carousel__tab {
  flex: 1 1 140px;
  min-width: 0;
  padding: 14px 16px;
  border: none;
  background: #ebebeb;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.pillars-carousel__tab:hover {
  background: #e0e0e0;
  color: var(--black);
}

.pillars-carousel__tab.is-active {
  background: var(--white);
  color: var(--red);
  box-shadow: inset 0 3px 0 var(--red);
}

.pillars-carousel__panel {
  background: var(--white);
}

.pillars-carousel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 420px;
}

.pillars-carousel__grid--stack {
  grid-template-columns: 1fr;
  min-height: 0;
}

.pillars-carousel__story {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rule);
}

.pillars-carousel__grid--stack .pillars-carousel__story {
  border-right: none;
  border-bottom: 1px solid var(--rule);
}

.pillars-carousel__media {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.pillars-carousel__grid--stack .pillars-carousel__media {
  height: 220px;
}

.pillars-carousel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.pillars-carousel__panel:hover .pillars-carousel__media img {
  transform: scale(1.03);
  filter: grayscale(0);
}

.pillars-carousel__icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.pillars-carousel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 32px 32px;
}

.pillars-carousel__quote {
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #666;
  font-style: italic;
}

.pillars-carousel__quote em {
  color: var(--black);
  font-style: normal;
  font-weight: 700;
}

.pillars-carousel__rule {
  width: 28px;
  height: 3px;
  background: var(--red);
  margin-bottom: 14px;
}

.pillars-carousel__title {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pillars-carousel__desc {
  margin: 0;
  flex: 1;
  font-size: 0.94rem;
  line-height: 1.75;
  color: #3a3a3a;
}

.pillars-carousel__side {
  display: flex;
  flex-direction: column;
  padding: 32px 36px 36px;
  background: #f7f7f7;
}

.pillars-carousel__side-eyebrow {
  margin: 0 0 20px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}

.pillars-carousel__difs {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillars-carousel__dif {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}

.pillars-carousel__dif:last-child {
  border-bottom: 1px solid var(--rule);
}

.pillars-carousel__dif-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.04em;
}

.pillars-carousel__dif-text {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
  padding-top: 6px;
}

.pillars-carousel__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillars-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  background: #ebebeb;
  border-top: 1px solid var(--rule);
}

.pillars-carousel__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  background: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.pillars-carousel__arrow:hover {
  border-color: var(--red);
  color: var(--red);
}

.pillars-carousel__dots {
  display: flex;
  gap: 8px;
}

.pillars-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.pillars-carousel__dot.is-active {
  background: var(--red);
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .pillars-carousel__body {
    padding: 22px 20px 24px;
  }

  .pillars-carousel__side {
    padding: 24px 20px 28px;
  }

  .pillars-carousel__quote {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .pillars-carousel__tab {
    flex: 1 1 calc(50% - 1px);
    font-size: 0.7rem;
    padding: 12px 10px;
  }
}

/* ── Hero consultant hook (floating lead widget) ── */
.hero-consultant {
  position: absolute;
  right: 5%;
  bottom: 76px;
  z-index: 3;
  max-width: 248px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}

.hero-consultant--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-consultant--mini {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  max-width: none;
  bottom: 68px;
}

.hero-consultant__card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border-top: 2px solid var(--red);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 12px 12px 10px;
}

.hero-consultant__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--dur-fast);
}

.hero-consultant__close:hover {
  color: var(--black);
}

.hero-consultant__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding-right: 18px;
}

.hero-consultant__avatar-wrap,
.hero-consultant__mini {
  position: relative;
  flex-shrink: 0;
}

.hero-consultant__avatar-wrap {
  width: 40px;
  height: 40px;
}

.hero-consultant__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  display: block;
}

.hero-consultant__initials {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
}

.hero-consultant__avatar-wrap--fallback .hero-consultant__initials,
.hero-consultant__mini--fallback .hero-consultant__initials {
  display: flex;
}

.hero-consultant__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.hero-consultant__name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}

.hero-consultant__role {
  font-size: 0.64rem;
  color: var(--mid);
  line-height: 1.3;
}

.hero-consultant__bubble {
  min-height: 2.4em;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.hero-consultant__bubble--visible {
  opacity: 1;
}

.hero-consultant__bubble p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--black);
}

.hero-consultant__typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 1em;
}

.hero-consultant__typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: hero-consultant-typing 1.2s infinite ease-in-out;
}

.hero-consultant__typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-consultant__typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-consultant__cta {
  width: 100%;
  padding: 8px 14px !important;
  font-size: 0.68rem !important;
}

.hero-consultant__preview {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 0;
  width: min(220px, 42vw);
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  pointer-events: none;
  z-index: 2;
  scrollbar-width: thin;
}

.hero-consultant__preview-item {
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  border: 2px solid transparent;
}

.hero-consultant__preview-item--active {
  border-color: var(--red);
}

.hero-consultant__preview-item img {
  display: block;
  width: 100%;
  height: 88px;
  object-fit: cover;
}

.hero-consultant__preview-item figcaption {
  padding: 6px 8px;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mid);
  line-height: 1.3;
}

@media (hover: hover) and (pointer: fine) {
  .hero-consultant--visible.hero-consultant--has-preview:hover {
    z-index: 6;
  }

  .hero-consultant--visible.hero-consultant--has-preview:hover .hero-consultant__preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .hero-consultant--mobile-dock .hero-consultant__preview {
    right: auto;
    left: 0;
    bottom: calc(100% + 12px);
    transform: translateY(10px);
  }

  .hero-consultant--mobile-dock.hero-consultant--visible.hero-consultant--has-preview:hover .hero-consultant__preview {
    transform: translateY(0);
  }
}

.hero-consultant__mini {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-consultant__mini .hero-consultant__avatar {
  width: 32px;
  height: 32px;
  border-width: 2px;
}

.hero-consultant__mini .hero-consultant__initials {
  width: 32px;
  height: 32px;
  font-size: 0.62rem;
}

.hero-consultant__mini--pulse {
  animation: hero-consultant-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-consultant-typing {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

@keyframes hero-consultant-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14); }
  50% { box-shadow: 0 4px 22px rgba(200, 16, 46, 0.3); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-consultant,
  .hero-consultant__bubble,
  .hero-consultant__mini--pulse,
  .hero-consultant__typing span {
    animation: none !important;
    transition: none !important;
  }

  .hero-consultant {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .hero-consultant.hero-consultant--mobile-dock,
  .hero-consultant--mini.hero-consultant--mobile-dock {
    position: fixed;
    left: 12px;
    right: auto;
    bottom: 86px;
    z-index: 90;
    max-width: min(248px, calc(100vw - 88px));
  }

  .hero-consultant--mini.hero-consultant--mobile-dock {
    max-width: none;
  }

  .hero-consultant__card {
    padding: 11px 11px 9px;
  }

  .hero-consultant__name {
    font-size: 0.7rem;
  }

  .hero-consultant__role {
    font-size: 0.62rem;
  }

  .hero-consultant__bubble p {
    font-size: 0.72rem;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .hero-consultant {
    max-width: 228px;
  }
}

/* ── Blomerize WhatsApp / .formulariomautic (widget flutuante) ── */
#ecox-blomerize-leads .whatsappmautic .formulariomautic,
#ecox-blomerize-leads .formulariomautic {
  position: fixed;
  bottom: 90px;
  z-index: 1000;
  right: 15px;
  padding: 10px;
  background-color: #fff;
  width: min(304px, calc(100vw - 30px));
  display: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

#ecox-blomerize-leads #whatsappfoco {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.83);
  position: fixed;
  z-index: 550;
  left: 0;
  top: 0;
  display: none;
}

#ecox-blomerize-leads #whatsappfocofechar {
  position: absolute;
  top: -32px;
  right: 0;
  padding: 5px 10px;
  background-color: #898989;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

#ecox-blomerize-leads .enviarbtn {
  width: 94% !important;
  color: #fff;
  background-color: var(--red);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  border: none;
}

#ecox-blomerize-leads .alert-msg-recaptcha {
  padding: 0 10px;
  font-size: 12px;
  background-color: var(--red);
  display: table;
  width: 100%;
  text-transform: uppercase;
  color: #fff;
  text-align: center !important;
}

#ecox-blomerize-leads .botaowhatsplugin {
  position: fixed;
  bottom: 24px;
  right: 15px;
  z-index: 1000 !important;
  background-color: var(--whatsapp);
  height: 56px;
  width: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow-fab);
  cursor: pointer;
}

#ecox-blomerize-leads .botaowhatsplugin svg {
  color: #fff;
  padding: 8px 9px 7px 10px;
}

#ecox-blomerize-leads .whatsappmautic .formulariomautic input,
#ecox-blomerize-leads .formulariomautic input {
  width: 100% !important;
  box-sizing: border-box;
  font-family: var(--font-text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
}

#ecox-blomerize-leads .whatsappmautic .formulariomautic button,
#ecox-blomerize-leads .formulariomautic button {
  width: 100% !important;
  color: #fff;
  background-color: var(--red);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
}

#ecox-blomerize-leads .whatsappmautic .formulariomautic .bemvindomsg,
#ecox-blomerize-leads .formulariomautic .bemvindomsg {
  font-family: var(--font-display);
  font-size: 0.95rem !important;
  padding: 10px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

#ecox-blomerize-leads .whatsappmautic .formulariomautic .bemvindomsg span,
#ecox-blomerize-leads .formulariomautic .bemvindomsg span {
  font-family: var(--font-text);
  font-size: 0.84rem;
  color: var(--black);
  line-height: 1.5;
  display: table;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 6px;
}

#ecox-blomerize-leads .videoapresentacao {
  position: relative;
  width: 100%;
  min-height: 480px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

#ecox-blomerize-leads .videoapresentacao iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

#ecox-blomerize-leads .videoapresentacao .setaseguir {
  text-align: center;
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 0;
  background-color: var(--red);
  color: #fff;
}

#ecox-blomerize-leads .escolhacanalwhatsapp {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
}

#ecox-blomerize-leads .escolhacanalwhatsapp li {
  width: 92%;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px dotted var(--rule);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#ecox-blomerize-leads .escolhacanalwhatsapp.principal li {
  font-size: 0.82rem;
  color: var(--red);
}

#ecox-blomerize-leads .escolhacanalwhatsapp.principal li.outrosassuntos {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

#ecox-blomerize-leads .escolhacanalwhatsapp li:hover {
  font-weight: 700;
}

#ecox-blomerize-leads .escolhacanalwhatsapp .voltarprincipal,
#ecox-blomerize-leads .escolhacanalwhatsapp .outrosassuntos {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--black);
  border-bottom: none;
}

#ecox-blomerize-leads .escolhacanalwhatsapp.submenu li {
  padding: 7px;
  width: 96%;
  font-size: 0.78rem;
}

#ecox-blomerize-leads .escolhacanalwhatsapp.submenu li.label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
}

#ecox-blomerize-leads .escolhacanalwhatsapp.submenu li.submenu {
  color: var(--red);
}

/* ── Formulário WhatsApp (#whatsappautomacao) ── */
#ecox-blomerize-leads #whatsappautomacao {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

#ecox-blomerize-leads #whatsappautomacao .row,
#ecox-blomerize-leads #whatsappautomacao .col-lg-12 {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

#ecox-blomerize-leads #whatsappautomacao input.common-input,
#ecox-blomerize-leads #whatsappautomacao input.form-control {
  display: block;
  width: 100% !important;
  box-sizing: border-box;
  margin: 0 0 10px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--white);
  font-family: var(--font-text);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
  -webkit-appearance: none;
  appearance: none;
}

#ecox-blomerize-leads #whatsappautomacao input.common-input:focus,
#ecox-blomerize-leads #whatsappautomacao input.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

#ecox-blomerize-leads #whatsappautomacao input.common-input::placeholder {
  color: var(--muted);
  opacity: 1;
}

#ecox-blomerize-leads #whatsappautomacao .mb-10 {
  margin-bottom: 10px;
}

#ecox-blomerize-leads #whatsappautomacao .descer {
  margin: 6px 0 12px;
  overflow: hidden;
}

#ecox-blomerize-leads #whatsappautomacao #enviarmensagem,
#ecox-blomerize-leads #whatsappautomacao .enviarbtn {
  float: none !important;
  display: block;
  width: 100% !important;
  margin-top: 4px;
  border-radius: 0;
  text-transform: uppercase;
  transition: background var(--dur), transform var(--dur-fast);
}

#ecox-blomerize-leads #whatsappautomacao #enviarmensagem:hover,
#ecox-blomerize-leads #whatsappautomacao .enviarbtn:hover {
  background-color: var(--red-dark);
}

#ecox-blomerize-leads #whatsappautomacao .alert-msg {
  margin-top: 8px;
  font-family: var(--font-text);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1.45;
}

#ecox-blomerize-leads #whatsappautomacao iframe {
  height: 77px !important;
}

#ecox-blomerize-leads #whatsappautomacao .selecionado {
  padding: 10px;
  background-color: var(--bg);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

#ecox-blomerize-leads #whatsappautomacao .selecionado span {
  font-weight: 700;
}

#ecox-blomerize-leads #whatsappautomacao .selecionado .voltarmenu {
  background-color: #fff;
  width: fit-content;
  padding: 4px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  float: right;
  margin-top: -4px;
}

#ecox-blomerize-leads #whatsappautomacao .selecionado .voltarmenu:hover {
  background-color: var(--red);
  color: #fff;
}

@media (max-width: 700px) {
  #ecox-blomerize-leads .formulariomautic {
    margin-right: 0;
    right: 10px;
    bottom: 86px;
  }

  #ecox-blomerize-leads .botaowhatsplugin {
    bottom: 20px;
    right: 10px;
  }

  #ecox-blomerize-leads #whatsappautomacao .g-recaptcha {
    transform: scale(0.92);
    transform-origin: 0 0;
    margin-bottom: -6px;
  }
}

/* ── AEO: FAQ na página (antes do footer) ── */
.landing-aeo {
  background: var(--white);
  border-top: 3px solid var(--red);
  padding: 72px 5% 80px;
}

.landing-aeo__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.landing-aeo__header {
  max-width: 760px;
  margin-bottom: 40px;
}

.landing-aeo__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.landing-aeo__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--black);
}

.landing-aeo__summary {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mid);
  font-weight: 400;
}

.landing-aeo__faq {
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.landing-aeo__item {
  border: 1px solid var(--rule);
  background: var(--bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
}

.landing-aeo__item:hover {
  border-color: rgba(200, 16, 46, 0.25);
}

.landing-aeo__item[open] {
  background: var(--white);
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.landing-aeo__question {
  list-style: none;
  margin: 0;
  padding: 16px 44px 16px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
  cursor: pointer;
  position: relative;
  user-select: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.landing-aeo__q-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.85;
  line-height: 1.45;
  min-width: 1.4rem;
}

.landing-aeo__q-text {
  flex: 1;
  min-width: 0;
}

.landing-aeo__question::-webkit-details-marker {
  display: none;
}

.landing-aeo__question::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 16px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: var(--white);
}

.landing-aeo__item[open] .landing-aeo__question {
  color: var(--red);
}

.landing-aeo__item[open] .landing-aeo__question::after {
  content: "−";
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.landing-aeo__answer {
  margin: 0;
  padding: 0 16px 18px 44px;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--mid);
}

.landing-aeo__bottom {
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}

.landing-aeo__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--black);
}

.landing-aeo__process {
  margin-bottom: 28px;
}

.landing-aeo__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
}

.landing-aeo__step {
  background: var(--bg);
  padding: 22px 18px;
  border-top: 2px solid var(--red);
  margin: 0;
}

.landing-aeo__step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.9;
}

.landing-aeo__step-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 8px;
}

.landing-aeo__step-text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--mid);
}

.landing-aeo__contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--rule);
}

.landing-aeo__contact {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--mid);
}

.landing-aeo__contact strong {
  color: var(--black);
}

.landing-aeo__contact a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.landing-aeo__contact a:hover {
  text-decoration: underline;
}

.landing-aeo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  border: none;
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.landing-aeo__cta:hover {
  background: var(--red-dark);
  color: #fff;
  text-decoration: none;
}

@media (min-width: 901px) {
  .landing-aeo__faq {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .landing-aeo__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .landing-aeo {
    padding: 48px 5% 56px;
  }

  .landing-aeo__header {
    margin-bottom: 28px;
  }

  .landing-aeo__answer {
    padding-left: 16px;
  }

  .landing-aeo__steps,
  .landing-aeo__steps--stack {
    grid-template-columns: 1fr;
  }

  .landing-aeo__contact-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .landing-aeo__cta {
    width: 100%;
  }
}
