@font-face {
  font-family: "Roboto Condensed";
  src: url("fonts/roboto-condensed-extrabold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --orange: #ff8800;
  --whatsapp: #25d366;
  --white: #ffffff;
  --dark: #080808;
  --dropdown-text: #252b31;
  --dropdown-border: #e5e7e9;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  background: var(--dark);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(700px, 72svh, 760px);
  overflow: hidden;
  background-color: var(--dark);
  background-image: url("imagens/banner-alternativo-chave-bmw-2025-v2.png");
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-bar {
  position: absolute;
  z-index: 21;
  top: calc(clamp(28px, 4.4vw, 70px) - 43px);
  left: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(100% - 10vw, 1540px);
  min-height: 0;
  padding: 0;
  transform: translateX(-50%);
}

.contact-bar-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-bar-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  color: #e9edf2;
  font-size: 24px;
  line-height: 1.1;
  transition: color 140ms ease;
}

.contact-bar-item[hidden] {
  display: none;
}

.contact-bar-item:hover,
.contact-bar-item:focus-visible {
  color: var(--orange);
}

.contact-bar-item:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.contact-bar-item svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-bar-phone-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-bar-phone-copy small {
  color: rgba(233, 237, 242, 0.64);
  font-size: 14px;
  line-height: 1;
}

.contact-bar-email {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(100% - 10vw, 1540px);
  margin: 0 auto;
  padding-top: clamp(28px, 4.4vw, 70px);
}

.brand {
  display: block;
  width: clamp(240px, 25vw, 420px);
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.main-nav {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding-top: 10px;
  font-size: clamp(17px, 1.25vw, 22px);
  white-space: nowrap;
}

.main-nav::before {
  position: absolute;
  z-index: -1;
  inset: -8px -14px 6px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 7, 11, 0.82), rgba(8, 13, 20, 0.56), rgba(3, 7, 11, 0.78));
  border-radius: 6px;
  backdrop-filter: blur(3px);
}

.menu-toggle {
  display: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 1px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  color: var(--white);
  transition: color 140ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--orange);
}

.social-links a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.social-links svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-links svg rect,
.social-links svg circle:not(.social-fill) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links .social-fill {
  fill: currentColor;
  stroke: none;
}

.nav-link {
  position: relative;
  display: block;
  padding: 0 0 18px;
  transition: color 140ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--orange);
}

.nav-link:focus-visible,
.services-dropdown a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.services-menu {
  position: relative;
}

.services-dropdown {
  position: absolute;
  z-index: 50;
  top: calc(100% + 2px);
  left: 0;
  width: max-content;
  margin: 0;
  padding: 0;
  visibility: hidden;
  list-style: none;
  color: #e9edf2;
  background: #080d14;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 0s linear 150ms;
}

.services-dropdown li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  transition: color 140ms ease;
}

.services-dropdown a:hover,
.services-dropdown a:focus-visible {
  color: var(--orange);
}

.services-menu:hover .services-dropdown,
.services-menu:focus-within .services-dropdown,
.services-menu.is-open .services-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 10vw, 1540px);
  margin: calc(clamp(105px, 13vh, 180px) - 35px) auto 0;
  padding-bottom: clamp(48px, 8vh, 100px);
}

.eyebrow {
  margin: 0 0 10px;
  transform: translateY(4px);
  font-size: clamp(15px, 1.2vw, 21px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1 {
  width: 50%;
  max-width: 820px;
  margin: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(55px, 5vw, 88px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 .accent {
  color: var(--orange);
}

.hero-title-selling {
  width: 70%;
  max-width: 1200px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(18px, 3.2vw, 54px);
  font-stretch: normal;
  font-weight: 800;
  line-height: 0.97;
}

.hero-description {
  max-width: 660px;
  margin: 4px 0 0;
  font-size: clamp(15px, 1.25vw, 21px);
  font-weight: 600;
  line-height: 1.3;
}

.hero-description-link {
  display: inline-block;
  margin-left: 5px;
  padding: 3px 8px;
  color: #090909;
  background: var(--orange);
  border-radius: 3px;
  font-weight: 900;
  white-space: nowrap;
}

.hero-description-link:hover,
.hero-description-link:focus-visible {
  color: var(--white);
}

.hero-description-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: clamp(24.2px, 2.662vw, 36.3px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 64px;
  padding: 16px 28px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.button-primary {
  color: #090909;
  background: var(--orange);
}

.button-secondary {
  color: var(--whatsapp);
  background: rgba(0, 0, 0, 0.34);
  border-color: var(--whatsapp);
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  color: var(--white);
}

@media (min-width: 981px) {
  .hero-content {
    transform: translateY(20%);
  }

  .hero-title-selling {
    line-height: 1.067;
  }

  .hero-copy {
    transform: translateY(-5%);
  }

  .main-nav {
    transform: translateY(12px);
  }

  .contact-bar-item {
    font-weight: 700;
  }

  .contact-bar-phone-copy small {
    font-weight: 400;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: min(100svh, 600px);
    background-position: 62% center;
  }

  .hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.22) 100%);
  }

  .site-header {
    align-items: center;
    width: calc(100% - 48px);
  }

  .contact-bar {
    width: calc(100% - 48px);
  }

  .brand {
    width: 220px;
  }

  .main-nav {
    gap: 24px;
    padding-top: 0;
    font-size: 16px;
  }

  .services-dropdown {
    right: 0;
    left: auto;
  }

  .hero-content {
    width: calc(100% - 48px);
    margin-top: 82px;
  }

  h1 {
    width: 65%;
  }

  .hero-title-selling {
    line-height: 0.95;
  }

  .hero-actions {
    margin-top: clamp(20px, 2.2vw, 30px);
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .site-header {
    padding-top: calc(clamp(28px, 4.4vw, 70px) + 28px);
  }

  .contact-bar {
    top: 20px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 864px;
    background-position: 90% center;
  }

  .hero::before {
    background: rgba(0, 0, 0, 0.42);
  }

  .site-header {
    display: flex;
    align-items: flex-start;
    width: calc(100% - 32px);
    padding-top: 189px;
    padding-bottom: 8px;
  }

  .contact-bar {
    top: 124px;
    left: 16px;
    width: calc(100% - 80px);
    min-height: 0;
    padding: 0;
    transform: none;
  }

  .contact-bar-group {
    width: 100%;
    gap: 10px;
  }

  .contact-bar-item {
    gap: 4px;
    font-size: 14px;
  }

  .contact-bar-item svg {
    width: 16px;
    height: 16px;
  }

  .contact-bar-phone-copy small {
    font-size: 9px;
  }

  .contact-bar-email {
    padding-left: 8px;
  }

  .brand {
    width: min(330px, 88vw);
  }

  .menu-toggle {
    position: absolute;
    top: 124px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin: 0 0 0 auto;
    padding: 0;
    color: var(--white);
    background: #080d14;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 150ms ease, opacity 150ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    color: var(--orange);
  }

  .menu-toggle:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    z-index: 60;
    top: calc(100% + 4px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(300px, calc(100vw - 32px));
    gap: 0;
    margin: 0;
    padding: 8px 0;
    color: var(--white);
    background: #080d14;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
    font-size: 15px;
    white-space: normal;
  }

  .main-nav::before {
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > .nav-link,
  .services-trigger {
    width: 100%;
    padding: 13px 18px;
  }

  .main-nav > * + * {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link::after {
    display: none;
  }

  .services-menu {
    width: 100%;
  }

  .services-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .main-nav .services-menu:not(.is-open) .services-dropdown {
    display: none;
    visibility: hidden;
    opacity: 0;
  }

  .main-nav .services-menu.is-open .services-dropdown {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .services-dropdown a {
    padding: 10px 18px 10px 30px;
    font-size: 14px;
  }

  .social-links {
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 18px 8px;
  }

  .social-links a {
    width: 22px;
    height: 22px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-top: 50px;
    padding-bottom: 34px;
  }

  h1 {
    width: 100%;
    font-size: clamp(40px, 12vw, 58px);
  }

  h1 span {
    white-space: normal;
  }

  .hero-title-selling {
    width: 100%;
    font-size: clamp(21px, 6vw, 25px);
    line-height: 0.94;
    transform: translateY(-42px);
  }

  .hero-title-selling span {
    white-space: nowrap;
  }

  .hero-description {
    max-width: 560px;
    margin-top: 10px;
    font-size: 14px;
    transform: translateY(-42px);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 75px;
  }

  .button {
    min-width: 0;
    min-height: 46px;
    flex: 1 1 135px;
    padding: 11px 8px;
    font-size: 12px;
  }
}

@media (max-height: 750px) and (min-width: 701px) {
  .contact-bar {
    top: 0;
  }

  .site-header {
    padding-top: 26px;
  }

  .hero-content {
    margin-top: 20px;
  }

  h1 {
    font-size: clamp(54px, 5vw, 76px);
  }

  .button {
    min-height: 54px;
  }
}

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

/* ======================== */
/* BLOCO 2 - EMPRESA */
/* ======================== */

.empresa-section {
  position: relative;
  width: 100%;
  padding: clamp(46px, 3.62vw, 52px) 0;
  overflow: hidden;
  color: var(--dark);
  background: #fdfdfc;
}

.empresa-section::before {
  position: absolute;
  bottom: -78px;
  left: -76px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 92, 0, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    22px 0 0 -21px rgba(255, 92, 0, 0.15),
    44px 0 0 -43px rgba(255, 92, 0, 0.12);
  pointer-events: none;
}

.empresa-section::after {
  position: absolute;
  bottom: clamp(38px, 5vw, 72px);
  left: 34%;
  width: 58px;
  height: 58px;
  content: "";
  background-image: radial-gradient(circle, rgba(255, 92, 0, 0.45) 1.2px, transparent 1.4px);
  background-size: 12px 12px;
  pointer-events: none;
}

.empresa-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  align-items: center;
  width: min(92%, 1500px);
  margin: 0 auto;
  gap: clamp(28px, 3vw, 52px);
}

.empresa-media {
  min-width: 0;
}

.empresa-image {
  display: block;
  width: 100%;
  height: auto;
}

.empresa-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 38px) 0;
  color: var(--dark);
}

.empresa-title {
  margin: clamp(24px, 2.2vw, 34px) 0 0;
  color: var(--dark);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 900;
  line-height: 1;
}

.empresa-highlight {
  position: relative;
  margin: 0;
  padding-bottom: 22px;
  color: var(--orange);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.empresa-highlight::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 4px;
  content: "";
  background: var(--orange);
}

.empresa-description {
  max-width: 560px;
  margin: clamp(24px, 2vw, 32px) 0 0;
  color: #17202d;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.65;
}

.empresa-description + .empresa-description {
  margin-top: clamp(18px, 1.6vw, 26px);
}

.empresa-section.empresa-animate-ready:not(.empresa-in-view) .empresa-media,
.empresa-section.empresa-animate-ready:not(.empresa-in-view) .empresa-content {
  opacity: 0;
}

.empresa-section.empresa-in-view .empresa-media {
  animation: empresaMediaFade 850ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.empresa-section.empresa-in-view .empresa-content {
  animation: empresaTextReveal 520ms cubic-bezier(0.22, 0.72, 0.2, 1) 180ms both;
}

@supports (clip-path: inset(0 round 0)) {
  .empresa-section.empresa-animate-ready:not(.empresa-in-view) .empresa-media {
    clip-path: inset(44% 42% 43% 45% round 48% 52% 46% 54%);
  }

  .empresa-section.empresa-in-view .empresa-media {
    animation-name: empresaBlobReveal;
  }
}

@keyframes empresaBlobReveal {
  0% {
    opacity: 0;
    clip-path: inset(44% 42% 43% 45% round 48% 52% 46% 54%);
  }
  52% {
    opacity: 1;
    clip-path: inset(10% 8% 12% 9% round 24% 31% 22% 29%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 round 0);
  }
}

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

@keyframes empresaTextReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) and (min-width: 821px) {
  .empresa-container {
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
    gap: 26px;
  }

  .empresa-content {
    padding: 18px 0;
  }

  .empresa-title {
    margin-top: 22px;
    font-size: clamp(38px, 4.5vw, 48px);
  }

  .empresa-description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .empresa-section.empresa-in-view .empresa-media {
    animation-duration: 760ms;
  }

  .empresa-section.empresa-in-view .empresa-content {
    animation-duration: 460ms;
    animation-delay: 150ms;
  }
}

@media (max-width: 820px) {
  .empresa-container {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    gap: 24px;
  }

  .empresa-content {
    padding: 18px 0 0;
  }

  .empresa-section::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .empresa-section {
    padding: 38px 0 32px;
  }

  .empresa-container {
    width: calc(100% - 32px);
  }

  .empresa-content {
    padding: 0;
  }

  .empresa-title {
    margin-top: 24px;
    font-size: 42px;
  }

  .empresa-highlight {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .empresa-description {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.6;
  }

  .empresa-section.empresa-in-view .empresa-media {
    animation-duration: 650ms;
  }

  .empresa-section.empresa-in-view .empresa-content {
    animation-duration: 400ms;
    animation-delay: 120ms;
  }

  @supports (clip-path: inset(0 round 0)) {
    .empresa-section.empresa-animate-ready:not(.empresa-in-view) .empresa-media {
      clip-path: inset(47% 45% 46% 45% round 50%);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .empresa-section.empresa-animate-ready .empresa-media,
  .empresa-section.empresa-animate-ready .empresa-content {
    opacity: 1;
    clip-path: none;
    transform: none;
    animation: none;
  }
}

/* FIM BLOCO 2 - EMPRESA */

/* ====================================== */
/* BLOCO 3 - COMO FUNCIONA */
/* ====================================== */

.credito-section {
  width: 100%;
  padding: clamp(46px, 3.62vw, 52px) 0;
  color: var(--white);
  background: var(--dark);
}

.credito-container {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  align-items: center;
  width: min(88%, 1440px);
  margin: 0 auto;
  gap: clamp(34px, 4.5vw, 68px);
}

.credito-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark);
  border-radius: 10px;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.credito-video iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.external-content-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(24px, 4vw, 48px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  color: #e7e9ec;
  background: #0d1117;
  text-align: center;
}

.external-content-message {
  max-width: 440px;
  margin: 0;
  color: #d0d4d9;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.55;
}

.external-content-accept {
  padding: 11px 16px;
  color: #111;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  font: 800 11px Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.external-content-accept:hover,
.external-content-accept:focus-visible {
  color: var(--white);
  background: transparent;
}

.external-content-accept:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.credito-content {
  min-width: 0;
  max-width: 650px;
}

.credito-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--orange);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.credito-label::before {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: var(--orange);
}

.credito-title {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--white);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.credito-description {
  max-width: 600px;
  margin-top: 20px;
  color: var(--dropdown-text);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.65;
}

.credito-description:empty {
  margin-top: 0;
}

@media (max-width: 900px) {
  .credito-container {
    width: calc(100% - 48px);
    gap: 34px;
  }

  .credito-title {
    font-size: clamp(32px, 4.4vw, 42px);
  }
}

@media (max-width: 760px) {
  .credito-section {
    padding: 44px 0;
  }

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

@media (max-width: 700px) {
  .credito-container {
    width: calc(100% - 32px);
    gap: 28px;
  }

  .credito-title {
    margin-top: 12px;
    font-size: 34px;
  }

  .credito-label::before {
    width: 22px;
  }
}

/* FIM BLOCO 3 - COMO FUNCIONA */

/* ======================== */
/* BLOCO 4 - SERVIÇOS */
/* ======================== */

.servicos-section {
  width: 100%;
  padding: clamp(46px, 4.15vw, 60px) 0 clamp(40px, 3.6vw, 52px);
  overflow-x: clip;
  color: var(--dark);
  background: #f7f7f5;
}

.servicos-container {
  width: min(88%, 1440px);
  margin: 0 auto;
}

.servicos-header {
  text-align: center;
}

.servicos-eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: clamp(11px, 0.8vw, 14px);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.servicos-heading {
  margin: 10px 0 0;
  color: var(--dark);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.servicos-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(max-content, 1fr));
  margin-top: clamp(32px, 3.5vw, 48px);
  overflow-x: auto;
  background: #fff;
  border: 1px solid rgba(10, 20, 32, 0.09);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 8px 24px rgba(8, 8, 8, 0.06);
  cursor: grab;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  touch-action: pan-x;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.servicos-tabs.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.servicos-tab {
  position: relative;
  min-height: 64px;
  padding: 16px clamp(18px, 1.8vw, 28px);
  color: #4d535b;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 700;
  white-space: nowrap;
  cursor: default;
}

.servicos-tab + .servicos-tab {
  border-left: 1px solid rgba(10, 20, 32, 0.07);
}

.servicos-tab.is-active {
  color: var(--orange);
}

.servicos-tab.is-active::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  content: "";
  background: var(--orange);
}

.servicos-panels {
  display: grid;
  width: 100%;
  min-width: 0;
}

.servicos-panel {
  grid-area: 1 / 1;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  align-items: stretch;
  min-height: 360px;
  padding: clamp(20px, 2vw, 30px);
  gap: clamp(34px, 4vw, 64px);
  background: #fff;
  border: 1px solid rgba(10, 20, 32, 0.09);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 42px rgba(8, 8, 8, 0.09);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.servicos-panel.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.servicos-panel.is-swiping {
  cursor: grabbing;
  transition: none;
}

.servicos-panel.is-settling {
  transition: transform 180ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.servicos-panel.servicos-enter-from-right {
  animation: servicosImageFromRight 360ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.servicos-panel.servicos-enter-from-left {
  animation: servicosImageFromLeft 360ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.servicos-media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 7px;
}

.servicos-media.servicos-blob-reveal {
  animation: servicosMediaFade 800ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

@supports (clip-path: inset(0 round 0)) {
  .servicos-media.servicos-blob-reveal {
    animation-name: servicosBlobReveal;
  }
}

@keyframes servicosBlobReveal {
  0% {
    opacity: 0;
    clip-path: inset(44% 42% 43% 45% round 48% 52% 46% 54%);
  }
  52% {
    opacity: 1;
    clip-path: inset(10% 8% 12% 9% round 24% 31% 22% 29%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 round 0);
  }
}

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

@keyframes servicosImageFromRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes servicosImageFromLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.servicos-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.servicos-image-contain {
  object-fit: contain;
}

.servicos-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(14px, 2vw, 30px) 0;
}

.servicos-label {
  margin: 0;
  color: var(--orange);
  font-size: clamp(11px, 0.8vw, 14px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.servicos-title {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--dark);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.04;
}

.servicos-title span {
  display: block;
}

.servicos-description {
  margin-top: 18px;
  color: #4d535b;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}

.servicos-description p {
  margin: 0;
}

.servicos-description p + p {
  margin-top: 12px;
}

.servicos-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 50px;
  margin-top: 22px;
  padding: 0 24px;
  color: var(--whatsapp);
  background: transparent;
  border: 1px solid var(--whatsapp);
  border-radius: 5px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.servicos-panel-vender {
  display: block;
  padding: clamp(24px, 3vw, 44px);
}

.servicos-panel-processo {
  display: block;
  padding: clamp(24px, 3vw, 44px);
}

.servicos-panel-processo .servicos-processo {
  margin-top: 0;
}

.servicos-vender-intro {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
}

.servicos-vender-media {
  aspect-ratio: 16 / 10;
}

.servicos-vender-heading {
  min-width: 0;
}

.servicos-vender-title {
  margin: 0;
  color: var(--dark);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 900;
  line-height: 1.04;
}

.servicos-vender-highlight {
  margin: 16px 0 0;
  color: var(--orange);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.servicos-vantagens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 4vw, 56px);
  padding: clamp(22px, 2.4vw, 32px) 0;
  border-top: 1px solid rgba(10, 20, 32, 0.1);
  border-bottom: 1px solid rgba(10, 20, 32, 0.1);
}

.servicos-vantagem {
  min-width: 0;
  padding: 0 clamp(20px, 2.5vw, 36px);
}

.servicos-vantagem:first-child {
  padding-left: 0;
}

.servicos-vantagem + .servicos-vantagem {
  border-left: 1px solid rgba(10, 20, 32, 0.1);
}

.servicos-vantagem h4,
.servicos-vantagem p {
  margin: 0;
}

.servicos-vantagem h4 {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.servicos-vantagem p {
  margin-top: 10px;
  color: #4d535b;
  font-size: 15px;
  line-height: 1.5;
}

.servicos-processo {
  margin-top: clamp(40px, 4.5vw, 64px);
}

.servicos-processo-label {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.servicos-processo-title {
  margin: 10px 0 0;
  color: var(--dark);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.servicos-processo-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.servicos-processo-heading .servicos-action {
  flex: 0 0 auto;
  margin-left: auto;
  margin-top: 10px;
}

.servicos-processo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 42px);
  margin-top: clamp(28px, 3vw, 42px);
}

.servicos-passo {
  position: relative;
  min-width: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(10, 20, 32, 0.16);
}

.servicos-passo-numero {
  color: rgba(255, 92, 0, 0.42);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.servicos-passo h5,
.servicos-passo p {
  margin: 0;
}

.servicos-passo h5 {
  margin-top: 12px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.servicos-passo p {
  margin-top: 9px;
  color: #4d535b;
  font-size: 14px;
  line-height: 1.5;
}

.servicos-modal {
  width: min(calc(100% - 32px), 500px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  color: var(--dark);
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.servicos-modal::backdrop {
  background: rgba(3, 8, 15, 0.76);
  backdrop-filter: blur(4px);
}

.servicos-modal-box {
  position: relative;
  padding: clamp(30px, 4vw, 44px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.servicos-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: #59606a;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.servicos-modal-close:hover,
.servicos-modal-close:focus-visible {
  color: var(--orange);
}

.servicos-modal-title {
  max-width: calc(100% - 42px);
  margin: 0;
  color: var(--dark);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.05;
}

.servicos-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.servicos-field {
  display: grid;
  gap: 7px;
}

.servicos-field label {
  color: #303741;
  font-size: 13px;
  font-weight: 800;
}

.servicos-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--dark);
  background: #fff;
  border: 1px solid rgba(10, 20, 32, 0.2);
  border-radius: 5px;
  font: inherit;
  font-size: 16px;
}

.servicos-field input:focus {
  border-color: var(--orange);
  outline: 2px solid rgba(255, 92, 0, 0.18);
  outline-offset: 1px;
}

.servicos-form-submit {
  min-height: 52px;
  margin-top: 4px;
  padding: 0 20px;
  color: #fff;
  background: var(--whatsapp);
  border: 1px solid var(--whatsapp);
  border-radius: 5px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.servicos-form-submit:hover,
.servicos-form-submit:focus-visible {
  color: var(--whatsapp);
  background: transparent;
}

@media (max-width: 980px) {
  .servicos-section {
    padding-top: 54px;
  }

  .servicos-container {
    width: calc(100% - 48px);
  }

  .servicos-panel {
    grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
    min-height: 310px;
    gap: 30px;
  }

  .servicos-title {
    font-size: clamp(32px, 4vw, 42px);
  }

  .servicos-processo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .servicos-section {
    padding: 36px 0 34px;
  }

  .servicos-container {
    width: calc(100% - 32px);
  }

  .servicos-heading {
    font-size: 40px;
  }

  .servicos-tabs {
    display: flex;
    margin-top: 30px;
    border-radius: 7px 7px 0 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .servicos-tab {
    flex: 0 0 auto;
    min-height: 58px;
    scroll-snap-align: start;
  }

  .servicos-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px;
    gap: 0;
  }

  .servicos-media {
    aspect-ratio: 16 / 9;
  }

  .servicos-media.servicos-blob-reveal {
    animation-duration: 650ms;
  }

  .servicos-content {
    padding: 28px 8px 12px;
  }

  .servicos-title {
    font-size: 36px;
  }

  .servicos-description {
    font-size: 15px;
  }

  .servicos-panel-vender {
    padding: 16px;
  }

  .servicos-vender-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .servicos-vender-media {
    aspect-ratio: 16 / 10;
  }

  .servicos-vender-title {
    font-size: 32px;
  }

  .servicos-vender-highlight {
    margin-top: 14px;
    font-size: 34px;
  }

  .servicos-vantagens {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 32px;
    padding: 0;
  }

  .servicos-vantagem,
  .servicos-vantagem:first-child {
    padding: 20px 0;
  }

  .servicos-vantagem + .servicos-vantagem {
    border-top: 1px solid rgba(10, 20, 32, 0.1);
    border-left: 0;
  }

  .servicos-processo {
    margin-top: 38px;
  }

  .servicos-processo-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .servicos-processo-heading .servicos-action {
    margin-left: 0;
  }

  .servicos-processo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .servicos-passo {
    padding: 0 0 0 62px;
    border-top: 0;
  }

  .servicos-passo::before {
    position: absolute;
    top: 38px;
    bottom: -24px;
    left: 20px;
    width: 1px;
    content: "";
    background: rgba(255, 92, 0, 0.24);
  }

  .servicos-passo:last-child::before {
    display: none;
  }

  .servicos-passo-numero {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
  }

  .servicos-passo h5 {
    margin-top: 0;
  }

  .servicos-modal-box {
    padding: 32px 24px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .servicos-panel.servicos-enter-from-right,
  .servicos-panel.servicos-enter-from-left {
    animation: none;
  }

  .servicos-media.servicos-blob-reveal {
    opacity: 1;
    clip-path: none;
    animation: none;
  }
}

/* FIM BLOCO 4 - SERVIÇOS */

/* ==================== */
/* BLOCO 5 - FAQS */
/* ==================== */
.faqs-section {
  padding: clamp(36px, 3vw, 44px) 0 clamp(56px, 6vw, 88px);
  color: #111923;
  background: #f7f7f5;
}

.faqs-container {
  display: grid;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  align-items: stretch;
  gap: clamp(44px, 5vw, 76px);
}

.faqs-list {
  min-width: 0;
}

.faqs-title {
  margin: 0 0 clamp(26px, 3vw, 40px);
  color: #111923;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.faqs-item {
  border-bottom: 1px solid rgba(17, 25, 35, 0.14);
}

.faqs-item:first-of-type {
  border-top: 1px solid rgba(17, 25, 35, 0.14);
}

.faqs-question {
  display: flex;
  width: 100%;
  min-height: 68px;
  padding: 18px 2px;
  color: #111923;
  background: transparent;
  border: 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font: inherit;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faqs-question:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.faqs-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  transition: transform 260ms ease;
}

.faqs-question[aria-expanded="true"] .faqs-icon {
  transform: rotate(180deg);
}

.faqs-answer {
  max-height: 0;
  overflow: hidden;
  color: #4d535b;
  font-size: 15px;
  line-height: 1.6;
  transition: max-height 280ms ease;
}

.faqs-answer > div {
  padding: 0 2px 18px;
  white-space: pre-line;
}

.faqs-image {
  min-width: 0;
  min-height: 390px;
  background-image: url("imagens/atendimento.png");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .faqs-container {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faqs-image {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .faqs-section {
    padding: 30px 0 46px;
  }

  .faqs-container {
    width: calc(100% - 32px);
    gap: 30px;
  }

  .faqs-title {
    margin-bottom: 26px;
    font-size: 40px;
  }

  .faqs-question {
    min-height: 64px;
    padding: 16px 0;
    gap: 18px;
  }

  .faqs-image {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faqs-icon,
  .faqs-answer {
    transition: none;
  }
}

/* FIM BLOCO 5 - FAQS */

/* ==================== */
/* BLOCO 6 - LOCALIZACAO / CONTACTOS */
/* ==================== */
.localizacao-section {
  padding: clamp(58px, 6vw, 88px) 0;
  color: #f3f4f5;
  background: #0b0d10;
}

.localizacao-container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.localizacao-title {
  margin: 0 0 clamp(34px, 4vw, 52px);
  color: var(--white);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.localizacao-layout {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(320px, 45fr);
  overflow: hidden;
  background: #11151a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.localizacao-map {
  min-width: 0;
  min-height: 470px;
}

.localizacao-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.localizacao-info {
  display: flex;
  min-width: 0;
  padding: clamp(38px, 4vw, 58px);
  flex-direction: column;
  justify-content: center;
}

.localizacao-company {
  margin: 0 0 30px;
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.localizacao-group {
  margin-bottom: 24px;
}

.localizacao-group p {
  margin: 0;
  color: #c8cdd2;
  font-size: 15px;
  line-height: 1.65;
}

.localizacao-label {
  display: block;
  margin: 0 0 5px;
  color: var(--orange) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.localizacao-contact-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.localizacao-contact-group a {
  color: #e8eaed;
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.localizacao-contact-group a:hover,
.localizacao-contact-group a:focus-visible {
  color: var(--orange);
}

.localizacao-directions {
  align-self: flex-start;
  margin-top: 4px;
  padding: 13px 22px;
  color: var(--white);
  border: 1px solid var(--orange);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.localizacao-directions:hover,
.localizacao-directions:focus-visible {
  color: #111;
  background: var(--orange);
}

.localizacao-contact-group a:focus-visible,
.localizacao-directions:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .localizacao-container {
    width: calc(100% - 48px);
  }

  .localizacao-layout {
    grid-template-columns: minmax(0, 52fr) minmax(280px, 48fr);
  }

  .localizacao-map,
  .localizacao-map iframe {
    min-height: 440px;
  }

  .localizacao-info {
    padding: 34px;
  }
}

@media (max-width: 700px) {
  .localizacao-section {
    padding: 48px 0;
  }

  .localizacao-container {
    width: calc(100% - 32px);
  }

  .localizacao-title {
    margin-bottom: 30px;
    font-size: 40px;
  }

  .localizacao-layout {
    grid-template-columns: 1fr;
  }

  .localizacao-info {
    padding: 30px 24px 34px;
    order: 1;
  }

  .localizacao-map {
    min-height: 320px;
    order: 2;
  }

  .localizacao-map iframe {
    min-height: 320px;
  }

  .localizacao-company {
    margin-bottom: 26px;
  }

  .localizacao-contact-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* FIM BLOCO 6 - LOCALIZACAO / CONTACTOS */

/* ==================== */
/* BARRA LEGAL INFERIOR */
/* ==================== */
.legal-footer {
  padding: 18px 0;
  color: #aeb5bd;
  background: #05070a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  line-height: 1.45;
}

.legal-container {
  display: grid;
  width: min(100% - 48px, 1540px);
  margin: 0 auto;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 22px;
}

.legal-company-data,
.legal-authorship {
  margin: 0;
}

.legal-company-data > span:not([hidden]) + span:not([hidden])::before {
  content: " | ";
  color: rgba(255, 255, 255, 0.24);
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

.legal-links a,
.legal-author-link {
  color: #c6cbd1;
  transition: color 140ms ease;
}

.legal-links a + a::before {
  content: " | ";
  margin: 0 7px;
  color: rgba(255, 255, 255, 0.22);
}

.legal-links a[href]:hover,
.legal-links a[href]:focus-visible,
.legal-author-link[href]:hover,
.legal-author-link[href]:focus-visible {
  color: var(--orange);
}

.legal-links a:not([href]),
.legal-author-link:not([href]) {
  cursor: default;
}

.legal-authorship {
  text-align: right;
  white-space: nowrap;
}

.legal-links a:focus-visible,
.legal-author-link:focus-visible {
  outline: 1px solid var(--orange);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .legal-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 8px;
  }

  .legal-links {
    justify-content: flex-end;
  }

  .legal-authorship {
    grid-column: 1 / -1;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .legal-footer {
    padding: 20px 0;
  }

  .legal-container {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legal-company-data,
  .legal-authorship {
    text-align: center;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    row-gap: 5px;
  }

  .legal-authorship {
    grid-column: auto;
  }
}

/* FIM BARRA LEGAL INFERIOR */

/* ==================== */
/* AVISO DE COOKIES */
/* ==================== */
.cookie-notice {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: min(620px, calc(100% - 48px));
  padding: 18px 20px;
  color: #e7e9ec;
  background: #0b1018;
  border: 1px solid rgba(255, 136, 0, 0.42);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  align-items: center;
  gap: 20px;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-text {
  margin: 0;
  color: #d0d4d9;
  font-size: 12px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.cookie-policy-link {
  color: #f1f2f4;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.cookie-accept,
.cookie-reject {
  padding: 10px 15px;
  border-radius: 4px;
  font: 800 11px Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.cookie-accept {
  color: #111;
  background: var(--orange);
  border: 1px solid var(--orange);
}

.cookie-reject {
  color: #f1f2f4;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-policy-link:hover,
.cookie-policy-link:focus-visible {
  color: var(--orange);
}

.cookie-accept:hover,
.cookie-accept:focus-visible {
  color: var(--white);
  background: transparent;
}

.cookie-reject:hover,
.cookie-reject:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
}

.cookie-policy-link:focus-visible,
.cookie-accept:focus-visible,
.cookie-reject:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .cookie-notice {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-actions {
    justify-content: space-between;
  }
}

/* FIM AVISO DE COOKIES */

/* ==================== */
/* CONTACTO RAPIDO WHATSAPP */
/* ==================== */
.quick-actions {
  position: fixed;
  z-index: 99;
  right: 22px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}

.quick-action {
  display: flex;
  flex-direction: column;
  width: 76px;
  height: 76px;
  padding: 9px;
  border: 0;
  clip-path: polygon(25% 0, 75% 0, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0 75%, 0 25%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  align-items: center;
  justify-content: center;
  font: 900 12px/1.08 Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.quick-action-stock {
  color: #080808;
  background: var(--orange);
}

.quick-action-sell {
  color: #080808;
  background: var(--whatsapp);
}

.quick-action:hover,
.quick-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.3);
  filter: brightness(1.06);
}

.quick-action:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.whatsapp-quick {
  display: grid;
  width: 76px;
  height: 76px;
  color: var(--white);
  background: var(--whatsapp);
  border: 0;
  clip-path: polygon(25% 0, 75% 0, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0 75%, 0 25%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  place-items: center;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.whatsapp-quick svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.whatsapp-quick[href]:hover,
.whatsapp-quick[href]:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.whatsapp-quick:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.whatsapp-quick[aria-disabled="true"] {
  opacity: 0.48;
  cursor: default;
}

.cookie-notice:not([hidden]) + .quick-actions {
  bottom: 150px;
}

@media (max-width: 700px) {
  .quick-actions {
    right: 16px;
    bottom: 16px;
    gap: 7px;
  }

  .quick-action {
    width: 68px;
    height: 68px;
    padding: 8px;
    font-size: 11px;
  }

  .whatsapp-quick {
    width: 68px;
    height: 68px;
  }

  .whatsapp-quick svg {
    width: 33px;
    height: 33px;
  }

  .cookie-notice:not([hidden]) + .quick-actions {
    bottom: 210px;
  }
}

/* FIM CONTACTO RAPIDO WHATSAPP */
