:root {
  --deep--red: #1a0a0a;
  --dark-red: #db0007;
  --dark-red-hover: #b80000;
  --red-default: #ffbc0d;
  --red-default-hover: #e6a800;
  --light-red: #fff9e6;
  --black-defaul: #000000;
  --white-default: #FFF;
  --grey-default: #666666;
  --grey-border: #F2F2F2;
  --max-width: 1920px;
  --padding-lateral: 200px;
  --nav-safe-area: 92px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lift: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-cta: 0 10px 36px rgba(255, 188, 13, 0.4);
  --radius-lg: 24px;
  --radius-md: 16px;
}

@media screen and (max-width: 1250px) {
  :root {
    --padding-lateral: 100px;
  }
}

@media screen and (max-width: 900px) {
  :root {
    --padding-lateral: clamp(20px, 4vw, 48px);
    --nav-safe-area: 80px;
  }
}

@media screen and (max-width: 599px) {
  :root {
    --padding-lateral: 16px;
    --nav-safe-area: 72px;
  }
}

.border-dashed-left{
  border: 0;
  background-color: var(--dark-red);
  height: 90px;
  width: 100%;
  clip-path: polygon(0 0, 100% 0%, 100% 0, 0 100%);
   margin-top: -2px;
}
.border-dashed-right{
  border: 0;
  background-color: var(--dark-red);
  height: 90px;
  width: 100%;
  clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0 100%);
   margin-bottom: -2px;
}

/* Divisão entre seções (substitui faixas SVG pesadas) */
.section-separator {
  display: flex;
  align-items: center;
  width: 100%;
  margin: clamp(2rem, 5vw, 3.5rem) 0;
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.section-separator::before,
.section-separator::after {
  content: "";
  flex: 1 1 auto;
  min-width: 0;
  height: 2px;
  border-radius: 999px;
}

.section-separator::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(219, 0, 7, 0.2) 35%,
    rgba(255, 188, 13, 0.55) 100%
  );
}

.section-separator::after {
  background: linear-gradient(
    270deg,
    transparent 0%,
    rgba(219, 0, 7, 0.2) 35%,
    rgba(255, 188, 13, 0.55) 100%
  );
}

.section-separator__dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin: 0 clamp(0.75rem, 2vw, 1.25rem);
  border-radius: 50%;
  background: var(--red-default);
  box-shadow:
    0 0 0 3px rgba(255, 188, 13, 0.28),
    0 2px 8px rgba(219, 0, 7, 0.2);
}

.tag{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--light-red);
  padding: 10px 14px;
  border-radius: 12px;
  width: fit-content;
  border: 1px solid rgba(219, 0, 7, 0.12);
}

.features-item .tag p, 
.features-item-reverse .tag p 
{
  color: var(--dark-red);
  font-size: 12px;
  margin: 0;
}

/* ------ */

.nav-container {
  width: 100%;
  background-color: var(--dark-red);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-top: max(10px, env(safe-area-inset-top, 0px));
  padding-bottom: 10px;
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
.nav-wrapper{
  position: relative;
  background-color: var(--dark-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; 
  max-width: var(--max-width);
}
.nav-wrapper .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.nav-wrapper .logo .logo-mark {
  height: 44px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}
.nav-links{
  display: flex;
  gap: 32px;
  list-style-type: none;
  color: var(--white-default);
  align-items: center;
}
.nav-links li{
  transition: 0.3s ease-in-out;
}
.nav-links li:hover{
  transform: scale(1.1);
}
.menu-toggle{
  display: none;
  width: 30px;
  cursor: pointer;
}

/* Banner Principal — grid evita sobreposição texto × ilustração em qualquer largura */
.banner-container {
  position: relative;
  background-color: var(--dark-red);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, min(40vw, 720px));
  grid-template-areas: "copy visual";
  align-items: center;
  column-gap: clamp(1.25rem, 4vw, 3rem);
  row-gap: clamp(1rem, 3vh, 2rem);
  padding-top: max(clamp(6rem, 14vw, 12.5rem), calc(var(--nav-safe-area) + 1.75rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
.banner-principal{
  grid-area: copy;
  display: flex;
  background-color: var(--dark-red);
  color: var(--white-default);
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  max-width: var(--max-width);
  width: 100%;
  min-width: 0;
}
.banner-text {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.875rem);
  max-width: 750px;
  padding-right: min(30px, 4vw);
  height: auto;
  overflow: visible;
}
.banner-text.hero-layout {
  position: relative;
  padding-left: clamp(18px, 2.5vw, 32px);
  border-left: 5px solid var(--red-default);
  max-width: min(100%, 820px);
}
.banner-text.hero-layout h1 {
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
}
.banner-text.hero-layout .btn-primary {
  box-shadow: var(--shadow-cta);
}
.banner-text h1 {
  font-size: clamp(1.875rem, 4.5vw + 1rem, 4rem);
  line-height: 1.08;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.banner-text p {
  font-size: clamp(1rem, 1.1vw + 0.85rem, 1.25rem);
  line-height: 1.55;
  max-width: 55ch;
}
.banner-text .btn-primary {
  width: fit-content;
  border-radius: 12px;
  padding: 16px clamp(1.25rem, 4vw, 1.75rem);
}
.banner-text .btn-primary:hover {
  transform: scale(1.03);
  background-color: var(--red-default-hover);
  color: var(--dark-red);
}

.img-banner {
  grid-area: visual;
  width: 100%;
  max-width: 700px;
  height: auto;
  justify-self: end;
  align-self: center;
  position: static;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
  border-radius: 12px;
  object-fit: contain;
  vertical-align: middle;
  pointer-events: none;
}

/* Desafio */
.desafio-container {
  width: 100%;
  padding-top: clamp(3rem, 8vw, 6.25rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.375rem);
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  background: #fafafa;
  box-sizing: border-box;
}
.banner-desafio{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 80px);
  width: 100%;
  max-width: var(--max-width) ;
}
.desafio-itens{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  flex: 1;
}
.desafio-titulo{
  max-width: min(420px, 100%);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  position: relative;
  padding-bottom: 16px;
}
.desafio-titulo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 5px;
  background: var(--red-default);
  border-radius: 4px;
}
.desafio-item{
  display: flex;
  flex-direction: column;
  background-color: var(--white-default);
  border-radius: var(--radius-md);
  padding: 28px;
  gap: 14px;
  justify-content: flex-start;
  height: 100%;
  border: 1px solid rgba(219, 0, 7, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.desafio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.desafio-item img{
  width: 44px;
}
.desafio-item p {
  font-size: clamp(1.05rem, 1.5vw + 0.65rem, 1.25rem);
  font-weight: 700;
  max-width: none;
}
.desafio-item small {
  font-size: clamp(0.9rem, 1vw + 0.75rem, 1rem);
  font-weight: 400;
  max-width: none;
  color: var(--grey-default);
  line-height: 1.55;
}

/* Integrações */
.new-container {
  width: 100%;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(165deg, #fff 0%, #fff9e6 45%, #fff 100%);
  box-sizing: border-box;
}
.integrations-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 96px);
  width: 100%;
  max-width: var(--max-width);
  padding: clamp(28px, 4vw, 48px);
  background: var(--white-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(219, 0, 7, 0.1);
}
.new-img {
  flex: 1;
  min-width: 0;
}
.new-img img{
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}
.new-texts{
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 1 420px;
  min-width: min(100%, 320px);
  height: auto;
  overflow: visible;
}
.new-texts h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
}
.new-texts p{
    font-size: 18px;
    color: var(--grey-default);
    line-height: 1.65;
}

/* Funcionalidades */
.funcionalidades-container {
  width: 100%;
  padding-top: clamp(3rem, 8vw, 6.25rem);
  padding-bottom: clamp(3rem, 8vw, 6.25rem);
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, #fafafa 0%, #fff 30%, #fff 100%);
  box-sizing: border-box;
}
.funcionalidades-title {
  position: static;
  z-index: auto;
  background: transparent;
  padding: 0;
  text-align: center;
  max-width: 800px;
}
.funcionalidades-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}
.features{
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: var(--max-width);
}
.features-item, .features-item-reverse{
 display: flex;
 gap: clamp(40px, 6vw, 72px);
 align-items: center;
 padding: clamp(28px, 4vw, 48px);
 background: var(--white-default);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-soft);
 border: 1px solid rgba(0, 0, 0, 0.05);
}
.features-item-img {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.features-item-img img{
  transition: transform 0.35s ease;
  width: 100%;
  height: auto;
  display: block;
}
.features-item-img img:hover{
  transform: scale(1.04);
}
.features-item-texts{
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  flex: 1;
  min-width: min(100%, 280px);
}
.features-item-texts h3{
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
}
.features-item-texts p {
  font-weight: 600;
  font-size: clamp(1.05rem, 1.2vw + 0.85rem, 1.25rem);
  color: var(--dark-red);
  margin-bottom: 16px;
}
.features-item-texts small{
  font-size: 16px;
  color: var(--grey-default);
  margin-bottom: 16px;
}

/* Como Funciona */
.config-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--red-default);
}

.config-banner {
  width: 100%;
  max-width: var(--max-width);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px 64px;
  box-sizing: border-box;
}

.config-titles{
  color: var(--dark-red) !important;
  max-width: 385px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.config-titles img{
  height: 56px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}
.config-titles h2{
  color: var(--dark-red) !important;
}
.config-titles p {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.35;
}
.config-cards{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1;
  min-width: min(100%, 320px);
  justify-content: flex-end;
}

.card-item, .card-start{
  padding: 28px;
  border-radius: var(--radius-md);
}
.card-item{
  background-color: var(--white-default);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  
  gap: 16px;
  flex: 1 1 160px;
  min-width: 140px;
  max-width: 220px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.card-item .card-number{
  background-color: var(--light-red);
  color: var(--dark-red);
  width: 48px;
  height: 48px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-item .card-title{
  font-size: 20px;
  font-weight: 700;
}
.card-item .card-timer{
  padding-bottom: 16px;
  border-bottom: 2px solid var(--grey-border) !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 14px;
}

.card-start{
  background: linear-gradient(145deg, var(--dark-red) 0%, #9a0005 100%);
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white-default);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 32px rgba(219, 0, 7, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.card-start:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(219, 0, 7, 0.45);
}
.card-start .card-start-title{
  font-weight: 700;
  font-size: 32px;
}
.card-start .card-start-action{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 14px;
}
.card-start .card-start-action img{
  width: 25px;
}

/* FAQ */
.faq-container, .bf-container, .testes-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

}

.faq-container{
  padding-bottom: 100px;
}
.faq-banner {
  width: 100%;
  max-width: var(--max-width);
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  display: grid;
  grid-template-columns: minmax(100px, 160px) 1fr;
  gap: 40px 56px;
  align-items: start;
  box-sizing: border-box;
}
.faq-icon{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: sticky;
  top: calc(var(--nav-safe-area) + 16px);
}
.faq-icon img {
  width: min(140px, 100%);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08));
}
.faq-duvidas{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
.faq-duvidas > h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 8px;
}
.faq-item-wb{
  border-bottom: none;
  background: #fafafa;
  border-radius: var(--radius-md);
  padding: 24px 24px 24px 28px;
  border-left: 4px solid var(--red-default);
  box-shadow: var(--shadow-soft);
}
.faq-item-wb, .faq-item{
  padding-bottom: 0;
}
.faq-item {
  background: #fafafa;
  border-radius: var(--radius-md);
  padding: 24px 24px 24px 28px;
  border-left: 4px solid var(--dark-red);
  box-shadow: var(--shadow-soft);
}
.faq-item-wb p,
.faq-item p {
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw + 0.75rem, 1.5rem);
  line-height: 1.3;
}
.faq-item-wb small,
.faq-item small {
  font-size: clamp(0.95rem, 1.2vw + 0.8rem, 1.25rem);
  color: var(--grey-default);
  line-height: 1.55;
}

/* Black Friday Banner */
.bf-container {
  margin-bottom: clamp(3rem, 8vw, 6.25rem);
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
.bf-banner {
  position: relative;
  background: linear-gradient(135deg, #2a1010 0%, var(--deep--red) 40%, #1a0808 100%);
  color: var(--white-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(1.75rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  transform: rotate(-0.8deg);
  width: 100%;
  max-width: min(1214px, 100%);
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 188, 13, 0.25);
  box-sizing: border-box;
}
.bf-titles {
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  max-width: min(220px, 100%);
}
.bf-title-red{
  color: var(--red-default);
}
.bf-messages small{
  font-size: 24px;
  color: var(--red-default);
}
.bf-messages p {
  font-size: clamp(1.15rem, 2.8vw + 0.5rem, 2rem);
  font-weight: 700;
  line-height: 1.25;
}
.bf-messages span{
  font-size: 24px;
  font-weight: 700;
  color: var(--red-default);
}
.bf-timer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  gap: 12px 20px;
}
.timer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 12px;
  row-gap: 10px;
}

.bf-timer p, .timer p{
  font-size: 20px;
  font-weight: 600;
}
.bf-timer span {
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--dark-red);
  background-color: var(--red-default);
  padding: 8px clamp(8px, 2vw, 12px);
  border-radius: 12px;
  min-width: min(80px, 22vw);
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
}
.bf-img-top{
  position: absolute;
  width: 56px;
  height: auto;
  top: -38px;
  left: 44px;
  pointer-events: none;
}
.bf-img-bottom{
  position: absolute;
  width: 96px;
  height: auto;
  bottom: -32px;
  right: 44px;
  pointer-events: none;
}

/*Testes Banner*/
.testes-container{
  margin-bottom: 120px;
}

.testes-banner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: clamp(1.75rem, 5vw, 4.5rem);
  padding-bottom: clamp(1.75rem, 5vw, 4.5rem);
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(90deg, #fff9e6 0%, #fff 35%, #fff 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 188, 13, 0.35);
  box-shadow: var(--shadow-soft);
  box-sizing: border-box;
}

.testes-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  min-width: 0;
}

.testes-titles {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}

.testes-titles h2 {
  line-height: 1.2;
}
.testes-info p {
  font-size: clamp(1rem, 1.1vw + 0.85rem, 1.25rem);
  color: var(--grey-default);
  line-height: 1.55;
}

.testes-tags, .testes-tags-wp{
  display: flex;
  gap: 12px;
  font-size: 20px;
}

.testes-tags-wp{
  margin-top: -20px;
}

.tag-teste p {
  color: var(--dark-red);
  font-size: clamp(0.95rem, 1vw + 0.8rem, 1.25rem);
  line-height: 1.4;
  text-align: left;
}
.tag-teste{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  width: fit-content;
  gap: 12px;
  border-radius: 12px;
  background-color: var(--light-red);
}

.testes-cards{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.testes-item{
  background: linear-gradient(160deg, var(--dark-red) 0%, #b80000 100%);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  width: min(100%, 280px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 16px 40px rgba(219, 0, 7, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.testes-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 56px rgba(219, 0, 7, 0.45);
}
.testes-item p{
  font-weight: 700;
  font-size: 24px;
  color: var(--white-default);
}
.testes-item a{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--white-default);
  gap: 12px;
}
.testes-item img{
  width: 20px;
}

/* Footer */
footer {
  display: block;
  background-color: var(--dark-red);
  color: #fff;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  min-width: 0;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

footer .footer-brand__logo-link {
  display: inline-block;
  line-height: 0;
}

footer .footer-logo {
  height: 64px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: block;
  margin: 0;
}

footer .footer-tagline {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 300px;
}

footer .footer-col__title {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-default);
}

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

footer .footer-links a {
  color: #fff;
  color: var(--white-default);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer .footer-links a:hover {
  color: var(--red-default);
}

footer .footer-col--contact .footer-links {
  margin-bottom: 16px;
}

footer .footer-company {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 8px;
  max-width: 280px;
}

footer .footer-company--muted {
  margin-bottom: 0;
}

footer .footer-company a {
  color: var(--red-default);
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer .footer-company a:hover {
  color: var(--red-default-hover);
}

footer .footer-bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

footer .footer-copyright {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 13px;
}

footer .footer-copyright strong {
  color: var(--white-default);
}

footer .socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

footer .socials .footer-social-static {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

footer .socials .footer-social-static img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.95;
}

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px))
    max(16px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background-color: var(--white-default);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px 32px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Modal solicitação de teste — layout moderno */
.modal-overlay--lead {
  background-color: rgba(15, 23, 42, 0.48);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal-lead {
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.modal-lead__accent {
  height: 5px;
  background: linear-gradient(90deg, var(--dark-red) 0%, #b80000 45%, var(--red-default) 100%);
}

.modal-lead__header {
  text-align: left;
  margin: 0;
  padding: 26px 32px 4px;
}

.modal-lead__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark-red);
  background: linear-gradient(135deg, rgba(255, 188, 13, 0.38), rgba(255, 188, 13, 0.14));
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 188, 13, 0.5);
}

.modal-lead__header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--deep--red);
  margin: 0 0 10px;
  line-height: 1.2;
}

.modal-lead__header p {
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
  max-width: 36em;
}

.modal-lead__form {
  padding: 16px 32px 28px;
  gap: 14px;
}

.modal-lead__form .form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #475569;
}

.modal-lead__form .form-group input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.modal-lead__form .form-group input:hover {
  border-color: #cbd5e1;
}

.modal-lead__form .form-group input:focus {
  outline: none;
  border-color: var(--dark-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(219, 0, 7, 0.12);
}

.modal-lead__form .form-row {
  gap: 14px;
}

.modal-lead__form .form-optins {
  margin-top: 4px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.modal-lead__form .btn-submit {
  margin-top: 4px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(255, 188, 13, 0.32);
}

.modal-lead__form .btn-submit:hover {
  box-shadow: 0 10px 28px rgba(255, 188, 13, 0.42);
}

.modal-lead__form .form-pricing {
  margin-top: 4px;
  padding: 12px 16px;
  background: linear-gradient(145deg, #fffbeb 0%, #fff7ed 100%);
  border: 1px solid #fde68a;
  border-radius: 12px;
}

.modal-lead__form .pricing-info {
  font-size: 13px;
  line-height: 1.45;
  color: #78350f;
}

.modal-lead__form .pricing-info strong {
  color: #991b1b;
}

.modal-lead__form .form-message {
  border-radius: 12px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--grey-default);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: var(--grey-border);
  color: var(--dark-red);
}

.modal-close.modal-lead__close {
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  font-size: 22px;
  line-height: 1;
  color: #64748b;
  background: #f1f5f9;
}

.modal-close.modal-lead__close:hover {
  background: #e2e8f0;
  color: var(--dark-red);
}

.modal-header {
  margin-bottom: 12px;
  text-align: center;
}

.modal-header h2 {
  font-size: 20px;
  color: var(--deep--red);
  margin-bottom: 4px;
  line-height: 1.3;
}

.modal-header p {
  font-size: 12px;
  color: var(--grey-default);
  margin: 0;
  line-height: 1.4;
}

/* Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep--red);
}

.form-group input {
  padding: 8px 12px;
  border: 2px solid var(--grey-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--red-default);
}

.form-group input::placeholder {
  color: #CCCCCC;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-group-small {
  flex: 0 0 100px;
}

.form-group-large {
  flex: 1;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -4px 0;
}

.btn-submit {
  background-color: var(--red-default);
  color: var(--dark-red);
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 188, 13, 0.45);
}

.btn-submit:disabled {
  background-color: #CCCCCC;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}

.form-message.error {
  display: block;
  background-color: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
}

/* Informação de preço e segurança */
.form-pricing {
  text-align: center;
  margin-top: 8px;
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.pricing-info {
  color: #374151;
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
}

.pricing-info strong {
  color: var(--dark-red);
  font-weight: 700;
  font-size: 13px;
}

.form-actions {
  margin: 0;
}

/* Opt-ins de Privacidade e Comunicações */
.form-optins {
  margin: 0;
  padding: 8px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.form-optin-group {
  margin-bottom: 10px;
}

.form-optin-group:last-child {
  margin-bottom: 0;
}

.optin-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  color: #374151;
}

.optin-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.optin-text {
  flex: 1;
}

.optin-text a {
  color: var(--dark-red);
  text-decoration: underline;
  font-weight: 600;
}

.optin-text a:hover {
  color: var(--dark-red-hover);
}

.required-mark {
  color: var(--dark-red);
  font-weight: 600;
  font-size: 13px;
}

.optional-mark {
  color: var(--grey-default);
  font-size: 13px;
  font-style: italic;
}

/* Modal de Sucesso */
.modal-success-container {
  background-color: var(--white-default);
  border-radius: 20px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideIn 0.4s ease-out;
}

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

.modal-success-icon {
  margin-bottom: 24px;
}

.modal-success-icon img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(255, 188, 13, 0.35));
}

.modal-success-header {
  margin-bottom: 32px;
}

.modal-success-header h2 {
  font-size: 26px;
  color: var(--deep--red);
  margin-bottom: 8px;
  line-height: 1.3;
}

.modal-success-header p {
  font-size: 16px;
  color: var(--grey-default);
  margin: 0;
}

.modal-success-body {
  text-align: left;
  margin-bottom: 32px;
}

.success-info-card {
  background-color: var(--light-red);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  border: 2px solid #fde68a;
}

.success-info-icon {
  flex-shrink: 0;
}

.success-info-icon img {
  width: 40px;
  height: 40px;
}

.success-info-text h4 {
  font-size: 16px;
  color: var(--dark-red);
  margin: 0 0 8px 0;
}

.success-info-text p {
  font-size: 14px;
  color: var(--grey-default);
  margin: 0;
  line-height: 1.6;
}

.success-tips {
  background-color: #F9F9F9;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--red-default);
}

.success-tip-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep--red);
  margin: 0 0 12px 0;
}

.success-tips ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.success-tips ul li {
  font-size: 13px;
  color: var(--grey-default);
  margin-bottom: 8px;
  position: relative;
  padding-left: 8px;
}

.success-tips ul li:before {
  content: "✓";
  position: absolute;
  left: -12px;
  color: var(--dark-red);
  font-weight: bold;
}

.modal-success-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn-success-close {
  background-color: var(--red-default);
  color: var(--dark-red);
  padding: 14px 48px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.btn-success-close:hover {
  background-color: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 188, 13, 0.45);
}

.success-contact {
  font-size: 12px;
  color: var(--grey-default);
  margin: 0;
  text-align: center;
}

.success-contact a {
  color: var(--dark-red);
  text-decoration: none;
  font-weight: 600;
}

.success-contact a:hover {
  text-decoration: underline;
}

.form-optin-group.required {
  background: #fffbeb;
  padding: 6px;
  border-radius: 6px;
  border-left: 4px solid var(--red-default);
}

.form-optin-group.optional {
  padding: 6px 0;
}

/* Responsivo */
@media screen and (max-width: 599px) {
  .optin-label {
    font-size: 13px;
  }

  .optin-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .form-optins {
    padding: 12px;
  }

  .modal-container {
    padding: 30px 20px;
  }

  .modal-container.modal-lead {
    padding: 0;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .modal-lead__header {
    padding: 22px 20px 4px;
  }

  .modal-lead__header h2 {
    font-size: 1.3rem;
  }

  .modal-lead__form {
    padding: 12px 20px 22px;
  }

  .modal-close.modal-lead__close {
    top: 10px;
    right: 10px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group-small,
  .form-group-large {
    flex: 1;
  }

  .modal-success-container {
    padding: 32px 24px;
  }

  .modal-success-header h2 {
    font-size: 22px;
  }

  .success-info-card {
    flex-direction: column;
    text-align: center;
  }

  .success-info-icon {
    margin: 0 auto;
  }
}

/* ========================================
   Cookie Banner & Modal
   ======================================== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-red);
  color: var(--white-default);
  padding-top: 20px;
  padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--padding-lateral), env(safe-area-inset-left, 0px));
  padding-right: max(var(--padding-lateral), env(safe-area-inset-right, 0px));
  display: none;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

.cookie-banner__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cookie {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.btn-primary-cookie {
  background: var(--red-default);
  color: var(--dark-red);
}

.btn-primary-cookie:hover {
  background: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 188, 13, 0.45);
}

.btn-secondary {
  background: var(--white-default);
  color: var(--dark-red);
}

.btn-secondary:hover {
  background: var(--light-red);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal__panel {
  background: var(--white-default);
  color: var(--black-defaul);
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--grey-default);
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

.cookie-modal__close:hover {
  color: var(--dark-red);
}

.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--dark-red);
  font-size: 24px;
}

.cookie-modal p {
  margin-bottom: 20px;
  color: var(--grey-default);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-border);
}

.cookie-toggle:last-of-type {
  border-bottom: none;
}

.cookie-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--black-defaul);
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.badge-required {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  background: var(--light-red);
  color: var(--dark-red);
  font-weight: 600;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .cookie-banner {
    padding: 16px 20px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__text {
    min-width: unset;
    text-align: center;
  }

  .cookie-banner__buttons {
    justify-content: center;
  }

  .btn-cookie {
    flex: 1;
    min-width: 120px;
  }

  .cookie-modal__panel {
    padding: 24px;
  }

  .cookie-modal__actions {
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
  }
}

/* ========================================
   Nav Actions (Cadastre-se e Entrar)
   ======================================== */

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-entrar,
.btn-cadastrar {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-entrar {
  background: transparent;
  color: var(--white-default);
  border-color: var(--white-default);
}

.btn-entrar:hover {
  background: var(--white-default);
  color: var(--dark-red);
  text-decoration: none;
}

.btn-cadastrar {
  background: var(--red-default);
  color: var(--dark-red);
  border-color: var(--red-default);
}

.btn-cadastrar:hover {
  background: var(--red-default-hover);
  border-color: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 188, 13, 0.45);
  text-decoration: none;
}

/* Primary Button (Hero CTA) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red-default);
  color: var(--dark-red);
  padding: 14px clamp(1.25rem, 4vw, 2rem);
  border-radius: 8px;
  font-size: clamp(1rem, 1.2vw + 0.75rem, 1.125rem);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 48px;
  box-sizing: border-box;
  line-height: 1.2;
}

.btn-primary:hover {
  background-color: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 188, 13, 0.45);
}

/* Mobile Nav Actions */
.nav-action-mobile {
  display: none;
}

.btn-entrar-mobile,
.btn-cadastrar-mobile {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
}

.btn-entrar-mobile {
  background: transparent;
  color: var(--dark-red);
  border-color: var(--dark-red);
}

.btn-entrar-mobile:hover {
  background: var(--dark-red);
  color: var(--white-default);
  text-decoration: none;
}

.btn-cadastrar-mobile {
  background: var(--red-default);
  color: var(--dark-red);
  border-color: var(--red-default);
}

.btn-cadastrar-mobile:hover {
  background: var(--red-default-hover);
  border-color: var(--red-default-hover);
  text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-actions {
    display: none;
  }

  .nav-action-mobile {
    display: list-item;
  }
}

@media screen and (max-width: 1180px) {
  .banner-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    align-items: start;
    padding-top: calc(var(--nav-safe-area) + 2rem);
    padding-bottom: clamp(2rem, 6vw, 3.5rem);
    row-gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .img-banner {
    justify-self: center;
    width: min(100%, 640px);
    max-width: 640px;
  }

  footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 40px;
  }

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

@media screen and (max-width: 800px) {
  footer {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer .footer-brand {
    grid-column: auto;
  }

  footer .footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
  }
}
