:root {
  --lp-blue: #003b82;
  --light-blue: #4AC7E5;
  --lp-dark-blue: #052F6B;
  --lp-black: #101010;
  --lp-white: #ffffff;
  --lp-grey: #F3F3F3;
  --lp-text: #1b1b1b;
  --lp-radius: 18px;
  --lp-font: 'Inter', Arial, sans-serif;
  --lp-foton-font: 'FotonTypeB', Arial, sans-serif;
  --lp-page-max: 1440px;
  --lp-page-gutter: 16px;
}

* {
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.lp-2026-page {
  width: 100%;
  background: #fff;
  color: var(--lp-text);
  font-family: var(--lp-font);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 16px;
}
.lp-container {
  width: min(calc(100% - (var(--lp-page-gutter) * 2)), var(--lp-page-max));
  margin-inline: auto;
  border-radius: 40px;
  position: relative;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lp-btn--light {
  background: var(--lp-white);
  color: var(--lp-black);
  padding: 24px 48px;
}
.lp-btn--light:hover {
  background: var(--lp-black);
  color: var(--lp-white);
}
.lp-btn--dark {
  background: var(--lp-black);
  color: var(--lp-white);
  padding: 24px 48px;
}
.lp-btn--dark:hover {
  background: var(--lp-white);
  color: var(--lp-black);
}
.lp-btn--transparent {
  background: transparent;
  color: var(--lp-white);
  padding: 12px;
  gap: 8px;
}
.lp-center {
  display: flex;
  justify-content: center;
}

#lp-hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--lp-white);
  height: 852px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 48px 40px;
}
#lp-hero .lp-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
              linear-gradient(76.87deg, rgba(0, 0, 0, 0.5) 4.91%, rgba(0, 0, 0, 0) 50.98%);
  z-index: 1;
  border-radius: 40px;
}
#lp-hero>img {
  position: absolute;
  top: 48px;
  left: 40px;
  z-index: 2;
  display: block;
}
#lp-hero .lp-hero__content {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
}
#lp-hero .lp-hero__content h2 {
  font-size: 110px;
  line-height: 0.9;
  letter-spacing: -3%;
  font-family: var(--lp-foton-font);
  color: var(--lp-white);
  text-transform: uppercase;
  margin: 0;
}
#lp-hero .lp-hero__content p {
  font-size: 22px;
  line-height: 1.4;
  max-width: 550px;
  letter-spacing: -0.18px;
  color: var(--lp-white);
  font-family: var(--lp-font);
  margin: 0;
}
#lp-hero .lp-hero__content .btn-flex {
  display: flex;
  gap: 32px;
  align-items: center;
}

#lp-stats .lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-items: center;
  align-items: center;
}
#lp-stats .lp-stats__grid .lp-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
#lp-stats .lp-stats__grid .lp-stat--dark {
  background: var(--lp-black);
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border-radius: 40px;
}
#lp-stats .lp-stats__grid .lp-stat--dark strong {
  color: var(--lp-white);
  font-size: 60px;
  line-height: 1.4;
  font-weight: 700;
  font-family: var(--lp-foton-font);
  letter-spacing: -2%;
}
#lp-stats .lp-stats__grid .lp-stat--dark span {
  color: var(--lp-white);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  font-family: var(--lp-font);
  font-weight: 400;
}
#lp-stats .lp-stats__grid .lp-stat strong {
  font-size: 60px;
  line-height: 1.4;
  font-weight: 700;
  font-family: var(--lp-foton-font);
  color: var(--lp-black);
  letter-spacing: -2%;
}
#lp-stats .lp-stats__grid .lp-stat span {
  font-size: 18px;
  line-height: 1.4;
  color: var(--lp-text);
  font-family: var(--lp-font);
  font-weight: 400;
}

#lp-steps {
  background: var(--lp-grey);
  padding: 48px;
}
#lp-steps .lp-section-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
#lp-steps .lp-section-heading h2 {
  font-size: 64px;
  line-height: 1;
  font-family: var(--lp-foton-font);
  color: var(--lp-black);
  letter-spacing: -3%;
  margin: 0;
  text-transform: uppercase;
}
#lp-steps .lp-section-heading p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--lp-text);
  font-family: var(--lp-font);
  margin: 0;
}
#lp-steps .lp-steps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  margin: 40px 0 32px;
}
#lp-steps .lp-steps__grid .lp-step {
  background-color: var(--light-blue);
  border-radius: 24px;
  padding: 32px 24px;
  display: grid;
  align-items: center;
  grid-template-areas: 'number title'
                       'number description';
  column-gap: 24px;
}
#lp-steps .lp-steps__grid .lp-step span {
  grid-area: number;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  font-family: var(--lp-foton-font);
  color: var(--lp-black);
  background-color: var(--lp-white);
  padding: 20px;
  border-radius: 100%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lp-steps .lp-steps__grid .lp-step h3 {
  grid-area: title;
  font-size: 26px;
  line-height: 1.6;
  font-weight: 700;
  font-family: var(--lp-foton-font);
  color: var(--lp-black);
  letter-spacing: -1.5%;
  margin: 0;
  text-transform: uppercase;
}
#lp-steps .lp-steps__grid .lp-step p {
  grid-area: description;
  font-size: 16px;
  line-height: 1.4;
  color: var(--lp-text);
  font-family: var(--lp-font);
  margin: 0;
  font-weight: 400;
}

#lp-prize-banner {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px;
}
#lp-prize-banner .lp-prize-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
              linear-gradient(76.87deg, rgba(0, 0, 0, 0.5) 4.91%, rgba(0, 0, 0, 0) 50.98%);
  z-index: 1;
  border-radius: 40px;
}
#lp-prize-banner .lp-prize-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#lp-prize-banner .lp-prize-banner__content span {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--lp-font);
  color: var(--lp-white);
}
#lp-prize-banner .lp-prize-banner__content h2 {
  font-size: 85px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--lp-foton-font);
  color: var(--lp-white);
  letter-spacing: -3%;
  margin: 0;
  max-width: 520px;
  text-transform: uppercase;
}
#lp-prize-banner .lp-prize-banner__content p {
  font-size: 22px;
  line-height: 1.4;
  color: var(--lp-white);
  font-family: var(--lp-font);
  margin: 0;
  max-width: 520px;
}

#lp-timeline {
  background: var(--lp-grey);
  padding: 96px 48px 120px;
}
#lp-timeline .lp-timeline__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 72px;
}
#lp-timeline .lp-timeline__intro span {
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  font-family: var(--lp-font);
  color: var(--lp-text);
  text-align: center;
}
#lp-timeline .lp-timeline__intro h2 {
  font-size: 85px;
  line-height: 0.95;
  font-weight: 700;
  font-family: var(--lp-foton-font);
  color: var(--lp-text);
  letter-spacing: -3%;
  margin: 0;
  text-align: center;
  max-width: 550px;
  text-transform: uppercase;
}
#lp-timeline .lp-timeline__intro p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--lp-text);
  font-family: var(--lp-font);
  margin: 0;
  text-align: center;
  max-width: 660px;
}
#lp-timeline .lp-route {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#lp-timeline .lp-route-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, auto) minmax(0, 1fr);
  grid-template-areas:
    '. content .'
    '. route .';
  align-items: start;
  min-height: 0;
  opacity: .28;
  transition: opacity .25s ease;
}
#lp-timeline .lp-route-step.is-active,
#lp-timeline .lp-route-step.is-past {
  opacity: 1;
}
#lp-timeline .lp-route-step__route {
  grid-area: route;
  position: relative;
  justify-self: center;
  width: 520px;
  display: grid;
  grid-template-columns: 200px 120px 200px;
  justify-content: center;
  margin: 0 auto 22px;
}
#lp-timeline .lp-route-step__cities {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
}
#lp-timeline .lp-route-step__cities li {
  position: absolute;
  width: 180px;
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--lp-font);
  font-weight: 700;
  color: var(--lp-text);
}
#lp-timeline .lp-route-step__cities li.is-left {
  right: calc(50% + 56px);
  text-align: right;
  transform: translateY(-50%);
}
#lp-timeline .lp-route-step__cities li.is-right {
  left: calc(50% + 56px);
  text-align: left;
  transform: translateY(-50%);
}
#lp-timeline .lp-route-step__content {
  grid-area: content;
  width: 530px;
  justify-self: center;
  text-align: center;
  margin-bottom: 12px;
}
#lp-timeline .lp-route-step__content h3 {
  margin: 0 0 8px;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--lp-foton-font);
  color: var(--lp-text);
  letter-spacing: -1.5px;
}
#lp-timeline .lp-route-step__content p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--lp-text);
  font-family: var(--lp-font);
}
#lp-timeline .lp-route-step__content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 8px 24px;
  border-radius: 999px;
  background: #D7D7D7;
  color: var(--lp-white);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--lp-font);
}
#lp-timeline .lp-route-step.is-active .lp-route-step__content span,
#lp-timeline .lp-route-step.is-past .lp-route-step__content span {
  background: var(--light-blue);
}
#lp-timeline .lp-route-step:nth-child(even) .lp-route-step__cities {
  justify-self: start;
  margin: 16px 0 0 8px;
  text-align: left;
}
#lp-timeline .lp-route-step:nth-child(even) .lp-route-step__cities li::after {
  left: -30px;
  right: auto;
}
#lp-timeline .lp-route-svg {
  grid-column: 2;
  justify-self: center;
  width: auto;
  min-height: 74px;
  margin: 0 auto;
  position: relative;
}
#lp-timeline .lp-route-svg svg {
  display: block;
  width: auto;
  max-width: 112px;
  height: auto;
  overflow: visible;
}
#lp-timeline .lp-route-svg__base {
  fill: none !important;
  stroke: rgba(27, 27, 27, .18) !important;
  stroke-width: 3 !important;
  stroke-linecap: round !important;
  stroke-dasharray: 6 6 !important;
}
#lp-timeline .lp-route-svg__progress {
  fill: none !important;
  stroke: var(--lp-black) !important;
  stroke-width: 3 !important;
  stroke-linecap: round !important;
  opacity: 1 !important;
  transition: stroke-dashoffset .08s linear;
}
#lp-timeline .lp-route-svg circle {
  fill: var(--lp-grey) !important;
  stroke: rgba(27, 27, 27, .24) !important;
  stroke-width: 3 !important;
  transition: stroke .2s ease;
}
#lp-timeline .lp-route-svg.is-active circle,
#lp-timeline .lp-route-svg.is-complete circle {
  stroke: var(--lp-black) !important;
}
#lp-timeline .lp-polaroid {
  position: absolute;
  z-index: 5;
  width: 300px;
  padding: 10px 10px 34px;
  background: var(--lp-white);
  border-radius: 5px;
  box-shadow: 0 22px 32px rgba(0, 0, 0, .14);
  margin: 0;
  pointer-events: none;
}
#lp-timeline .lp-polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}
#lp-timeline .lp-polaroid--left {
  right: calc(60% + 170px);
}
#lp-timeline .lp-polaroid--right {
  left: calc(60% + 170px);
}
#lp-timeline .lp-polaroid--one {
  top: 40px;
  transform: rotate(-7deg);
}
#lp-timeline .lp-polaroid--two {
  top: 34px;
  transform: rotate(1deg);
}
#lp-timeline .lp-polaroid--three {
  top: 58px;
  transform: rotate(7deg);
}
#lp-timeline .lp-polaroid--four {
  top: 44px;
  transform: rotate(-8deg);
}
#lp-timeline .lp-polaroid--five {
  top: 30px;
  transform: rotate(5deg);
}
#lp-timeline .lp-polaroid--six {
  top: 45px;
  transform: rotate(-10deg);
}
#lp-timeline .lp-polaroid--seven {
  top: -10px;
  transform: rotate(4deg);
}

#lp-feature {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 40px;
}
#lp-feature .lp-feature__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
#lp-feature .lp-feature__content .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#lp-feature .lp-feature__content .left h2 {
  font-size: 64px;
  line-height: 1;
  font-family: var(--lp-foton-font);
  color: var(--lp-black);
  letter-spacing: -3%;
  margin: 0;
  text-transform: uppercase;
}
#lp-feature .lp-feature__content .left p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--lp-text);
  font-family: var(--lp-font);
  margin: 0;
}
#lp-feature .lp-feature__content .right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
#lp-feature .lp-feature__content .right a {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #1170C3;
  font-family: var(--lp-font);
}
#lp-feature .feature-dynamic {
  display: grid;
  grid-template-areas: 'specs image'
                       'details image';
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 248px;
  column-gap: 48px;
}
#lp-feature .feature-dynamic .lp-feature__specs {
  grid-area: specs;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
#lp-feature .feature-dynamic .lp-feature__specs button {
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  line-height: 1.4;
  font-family: var(--lp-foton-font);
  color: var(--lp-black);
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  opacity: 0.3;
  transition: opacity .2s ease;
}
#lp-feature .feature-dynamic .lp-feature__specs button.is-active {
  opacity: 1;
}
#lp-feature .feature-dynamic .lp-feature__details {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 515px;
}
#lp-feature .feature-dynamic .lp-feature__details p, 
#lp-feature .feature-dynamic .lp-feature__details li, 
#lp-feature .feature-dynamic .lp-feature__details ul {
  font-size: 20px;
  line-height: 1.5;
  color: var(--lp-text);
  font-family: var(--lp-font);
  margin: 0;
}
#lp-feature .feature-dynamic .lp-feature__details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#lp-feature .feature-dynamic .lp-feature__details li {
  position: relative;
  padding-left: 35px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--lp-text);
  font-family: var(--lp-font);
  margin: 0;
}
#lp-feature .feature-dynamic .lp-feature__details li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 21px;
  height: 21px;
  background-image: url('https://foton-portugal.pt/wp-content/uploads/2026/05/Check.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: #D7F2F4;
  border-radius: 50%;
}
#lp-feature .feature-dynamic .lp-feature__image {
  grid-area: image;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
}
#lp-feature .feature-dynamic .glide__track {
  overflow: hidden;
}
#lp-feature .feature-dynamic .glide__slides {
  display: flex;
}
#lp-feature .feature-dynamic .glide__slide {
  flex-shrink: 0;
  width: 100%;
}
#lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
}
#lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide .glide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  display: flex;
  justify-content: space-between;
  transform: translate(-50%);
}
#lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide .glide__arrows .glide__arrow {
  background: var(--lp-white);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide .glide__bullets {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: flex;
  gap: 16px;
  transform: translateX(-50%);
}
#lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide .glide__bullets .glide__bullet {
  width: 6px;
  height: 6px;
  background: var(--lp-white);
  border-radius: 18px;
  transition: width .2s ease-out;
}
#lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide .glide__bullets .glide__bullet--active {
  width: 70px;
}

#lp-form-section {
  background: var(--lp-dark-blue);
  padding: 64px;
}
#lp-form-section .lp-form-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 596px;
  margin: 0 auto;
}
#lp-form-section .lp-form-box>h2 {
  font-size: 64px;
  line-height: 1;
  font-family: var(--lp-foton-font);
  color: var(--lp-white);
  letter-spacing: -3%;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
#lp-form-section .lp-form-box>p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--lp-white);
  font-family: var(--lp-font);
  margin: 0;
  text-align: center;
}
#lp-form-section .lp-form-box .lp-form .gform_heading {
  display: none;
}
#lp-form-section .lp-form-box .lp-form form .gfield_required_asterisk {
  display: none;
}
#lp-form-section .lp-form-box .lp-form form .gfield_label.gform-field-label {
  color: var(--lp-white);
  font-size: 14px;
  line-height: 1.4;
  font-family: var(--lp-font);
  margin-bottom: 6px;
}
#lp-form-section .lp-form-box .lp-form form .gfield_consent_label {
  color: var(--lp-white);
  font-size: 14px;
  line-height: 1.4;
  font-family: var(--lp-font);
}
#lp-form-section .lp-form-box .lp-form form  .text-divider {
  border: none;
}
#lp-form-section .lp-form-box .lp-form form  .text-divider h3 {
  color: var(--lp-white);
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--lp-font);
  font-weight: 700;
  margin: 20px 0 4px;
}
#lp-form-section .lp-form-box .lp-form form .gform_fields {
  row-gap: 24px;
}
#lp-form-section .lp-form-box .lp-form form input[type="text"],
#lp-form-section .lp-form-box .lp-form form input[type="email"],
#lp-form-section .lp-form-box .lp-form form input[type="tel"],
#lp-form-section .lp-form-box .lp-form form select,
#lp-form-section .lp-form-box .lp-form form .chosen-container a,
#lp-form-section .lp-form-box .lp-form form textarea {
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--lp-font);
  background: var(--lp-white);
}
#lp-form-section .lp-form-box .lp-form form input[type="submit"] {
  background: var(--lp-white);
  color: var(--lp-black);
  padding: 24px 48px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  border: none;
  font-family: var(--lp-font);
}
#lp-form-section .lp-form-box .lp-form form input[type="submit"]:hover {
  background: var(--lp-black);
  color: var(--lp-white);
}
#lp-form-section .gfield.lp-video-upload .gfield_label {
  display: block;
  margin-bottom: 10px;
  color: var(--lp-white);
  font-size: 14px;
  line-height: 1.3;
  font-family: var(--lp-font);
}
#lp-form-section .gfield.lp-video-upload .ginput_container_fileupload {
  position: relative;
  display: block;
  width: 100%;
}
#lp-form-section .gfield.lp-video-upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 164px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
#lp-form-section .gfield.lp-video-upload .ginput_container_fileupload::before {
  content: "↥\A Clique para carregar o vídeo\A MP4, MOV, AVI (máx. 64MB)";
  white-space: pre;
  min-height: 164px;
  width: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--lp-white);
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.8;
  transition: background .2s ease, border-color .2s ease;
}
#lp-form-section .gfield.lp-video-upload .ginput_container_fileupload:hover::before {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--lp-white);
}
#lp-form-section .gfield.lp-video-upload .gfield_description,
#lp-form-section .gfield.lp-video-upload .gform_fileupload_rules {
  display: none;
}
#lp-form-section .gfield.lp-video-upload .lp-video-upload__filename {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 1;
  max-width: 86%;
  transform: translateX(-50%);
  color: var(--lp-white);
  font-family: var(--lp-font);
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  word-break: break-word;
  pointer-events: none;
}
#lp-form-section .gfield.lp-video-upload.has-file .ginput_container_fileupload::before {
  content: "↥\A Vídeo selecionado";
}

#lp-footer {
  background: var(--lp-black);
  display: flex;
  flex-direction: row;
  padding: 64px 48px;
  gap: 32px;
  justify-content: space-between;
}
#lp-footer .left, 
#lp-footer .right {
  display: flex;
  flex-direction: column;
  gap: 44px;
  justify-content: space-between;
}
#lp-footer .left .links {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
#lp-footer .left .links a,
#lp-footer .right {
  color: var(--lp-white);
  font-size: 13px;
  line-height: 1.4;
  font-family: var(--lp-font);
  text-decoration: none;
  font-weight: 400;
}
#lp-footer .right .socials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#lp-footer .right .socials span {
  color: var(--lp-white);
  font-size: 14px;
  line-height: 1.4;
  font-family: var(--lp-font);
}
#lp-footer .right .socials .socials-inner {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
#lp-footer .right .socials .socials-inner a {
  text-decoration: none;
}

/* =============================================== */
/* ================= BREAKPOINTS ================= */
/* =============================================== */
@media only screen and (max-width: 767px) {
  :root {
    --lp-page-gutter: 16px;
  }
  section {
    margin-bottom: unset!important;
  }
  .lp-2026-page {
    gap: 16px;
    padding-block: 16px;
  }
  .lp-container {
    width: min(calc(100% - (var(--lp-page-gutter) * 2)), var(--lp-page-max));
    border-radius: 36px;
  }
  .lp-btn {
    min-height: 34px;
    font-size: 10px;
  }
  .lp-btn--light,
  .lp-btn--dark {
    padding: 12px 24px;
  }
  .lp-btn--transparent {
    padding: 8px;
    gap: 5px;
  }
  #lp-hero {
    height: 348px;
    padding: 16px 12px;
    border-radius: 8px;
    background-position: center;
  }
  #lp-hero .lp-hero__overlay {
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)), linear-gradient(76.87deg, rgba(0, 0, 0, .7) 4.91%, rgba(0, 0, 0, 0) 65%);
  }
  #lp-hero>img {
    top: 14px;
    left: 12px;
    width: 74px;
    height: auto;
  }
  #lp-hero .lp-hero__content {
    max-width: 250px;
    gap: 12px;
  }
  #lp-hero .lp-hero__content h2 {
    font-size: 37px;
    line-height: .9;
    letter-spacing: -1.5px;
  }
  #lp-hero .lp-hero__content p {
    font-size: 9px;
    line-height: 1.35;
    max-width: 220px;
  }
  #lp-hero .lp-hero__content .btn-flex {
    gap: 10px;
  }
  #lp-hero .lp-hero__content .btn-flex .lp-btn--transparent img {
    width: 13px;
    height: 13px;
  }
  #lp-stats {
    padding: 0;
  }
  #lp-stats .lp-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0 6px;
  }
  #lp-stats .lp-stats__grid .lp-stat {
    gap: 2px;
    align-items: center;
    text-align: center;
    padding: 10px 2px;
  }
  #lp-stats .lp-stats__grid .lp-stat strong {
    font-size: 24px;
    line-height: 1;
  }
  #lp-stats .lp-stats__grid .lp-stat span {
    font-size: 7px;
    line-height: 1.15;
  }
  #lp-stats .lp-stats__grid .lp-stat--dark {
    padding: 12px 6px;
    border-radius: 8px;
    align-items: center;
  }
  #lp-stats .lp-stats__grid .lp-stat--dark strong {
    font-size: 20px;
    line-height: 1;
  }
  #lp-stats .lp-stats__grid .lp-stat--dark span {
    font-size: 7px;
    line-height: 1.15;
  }
  #lp-steps {
    padding: 18px 12px;
  }
  #lp-steps .lp-section-heading {
    gap: 8px;
  }
  #lp-steps .lp-section-heading h2 {
    font-size: 28px;
    line-height: .95;
    letter-spacing: -1px;
  }
  #lp-steps .lp-section-heading p {
    font-size: 9px;
    line-height: 1.35;
  }
  #lp-steps .lp-steps__grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 16px 0 14px;
  }
  #lp-steps .lp-steps__grid .lp-step {
    border-radius: 8px;
    padding: 12px;
    column-gap: 10px;
  }
  #lp-steps .lp-steps__grid .lp-step h3 {
    font-size: 15px;
    line-height: 1.15;
  }
  #lp-steps .lp-steps__grid .lp-step p {
    font-size: 9px;
    line-height: 1.3;
  }
  #lp-prize-banner {
    min-height: 260px;
    padding: 18px 12px;
    border-radius: 8px;
    background-position: center;
  }
  #lp-prize-banner .lp-prize-banner__overlay {
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)), linear-gradient(76.87deg, rgba(0, 0, 0, .65) 4.91%, rgba(0, 0, 0, 0) 70%);
  }
  #lp-prize-banner .lp-prize-banner__content {
    gap: 8px;
  }
  #lp-prize-banner .lp-prize-banner__content h2 {
    font-size: 38px;
    line-height: .9;
    letter-spacing: -1.5px;
    max-width: 240px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-timeline {
    padding: 40px 8px 52px;
  }
  #lp-timeline .lp-timeline__intro {
    gap: 16px;
    margin-bottom: 34px;
  }
  #lp-timeline .lp-timeline__intro span {
    font-size: 20px;
  }
  #lp-timeline .lp-timeline__intro h2 {
    font-size: 54px;
    line-height: .95;
    letter-spacing: -1px;
    max-width: 350px;
  }
  #lp-timeline .lp-timeline__intro p {
    font-size: 18px;
    line-height: 1.4;
    max-width: 100%;
  }
  #lp-timeline .lp-route-step {
    grid-template-columns: 1fr;
    grid-template-areas:
      'content'
      'route';
    justify-items: center;
  }
  #lp-timeline .lp-route-step__content {
    width: 100%;
    max-width: 250px;
    margin-bottom: 8px;
  }
  #lp-timeline .lp-route-step__content h3 {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -1px;
  }
  #lp-timeline .lp-route-step__content p {
    font-size: 18px;
    line-height: 1.2;
  }
  #lp-timeline .lp-route-step__content span {
    min-height: 18px;
    padding: 8px 24px;
    font-size: 16px;
  }
  #lp-timeline .lp-route-step__route {
    width: 210px;
    grid-template-columns: 72px 66px 72px;
    margin-bottom: 18px;
  }
  #lp-timeline .lp-route-svg {
    min-height: 0;
  }
  #lp-timeline .lp-route-svg svg {
    max-width: 62px;
  }
  #lp-timeline .lp-route-svg__base,
  #lp-timeline .lp-route-svg__progress {
    stroke-width: 2.2 !important;
  }
  #lp-timeline .lp-route-svg circle {
    stroke-width: 2.2 !important;
  }
  #lp-timeline .lp-route-step__cities li {
    width: 120px;
    font-size: 18px;
    line-height: 1.1;
  }
  #lp-timeline .lp-route-step__cities li.is-left {
    right: calc(50% + 42px);
  }
  #lp-timeline .lp-route-step__cities li.is-right {
    left: calc(50% + 42px);
  }
  #lp-timeline .lp-polaroid {
    width: 108px;
    padding: 5px 5px 14px;
    border-radius: 3px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .14);
  }
  #lp-timeline .lp-polaroid img {
    border-radius: 2px;
  }
  #lp-timeline .lp-polaroid--left {
    right: auto;
    left: 10px;
  }
  #lp-timeline .lp-polaroid--right {
    left: auto;
    right: 10px;
  }
  #lp-timeline .lp-polaroid--one {
    top: 52px;
    transform: rotate(-7deg);
  }
  #lp-timeline .lp-polaroid--two {
    top: 58px;
    transform: rotate(1deg);
  }
  #lp-timeline .lp-polaroid--three {
    top: 76px;
    transform: rotate(7deg);
  }
  #lp-timeline .lp-polaroid--four {
    top: 240px;
    transform: rotate(-8deg);
  }
  #lp-timeline .lp-polaroid--five {
    top: 72px;
    transform: rotate(5deg);
  }
  #lp-timeline .lp-polaroid--six {
    top: 290px;
    transform: rotate(-10deg);
  }
  #lp-timeline .lp-polaroid--seven {
    top: 76px;
    transform: rotate(4deg);
  }
  #lp-feature {
    gap: 48px;
    margin: 32px auto 32px;
    padding: 16px 0 32px;
  }
  #lp-feature .lp-feature__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #lp-feature .lp-feature__content .left {
    gap: 16px;
  }
  #lp-feature .lp-feature__content .left h2 {
    font-size: 34px;
    line-height: .95;
    letter-spacing: -1px;
  }
  #lp-feature .lp-feature__content .left p {
    font-size: 18px;
    line-height: 1.4;
  }
  #lp-feature .lp-feature__content .right {
    justify-content: flex-start;
  }
  #lp-feature .lp-feature__content .right a {
    gap: 16px;
    font-size: 16px;
  }
  #lp-feature .lp-feature__content .right a img {
    width: 12px;
    height: 12px;
  }
  #lp-feature .feature-dynamic {
    grid-template-areas:'specs'
                        'image'
                        'details';
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 28px;
    column-gap: 28px;
    align-items: start;
  }
  #lp-feature .feature-dynamic .lp-feature__specs {
    gap: 4px;
  }
  #lp-feature .feature-dynamic .lp-feature__specs button {
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -.4px;
    text-align: left;
  }
  #lp-feature .feature-dynamic .lp-feature__details {
    max-width: none;
    gap: 8px;
  }
  #lp-feature .feature-dynamic .lp-feature__details p,
  #lp-feature .feature-dynamic .lp-feature__details li {
    font-size: 16px;
    line-height: 1.35;
  }
  #lp-feature .feature-dynamic .lp-feature__details ul {
    gap: 4px;
  }
  #lp-feature .feature-dynamic .lp-feature__details li {
    padding-left: 18px;
  }
  #lp-feature .feature-dynamic .lp-feature__details li::before {
    top: 1px;
    width: 12px;
    height: 12px;
  }
  #lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide img {
    border-radius: 8px;
  }
  #lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide .glide__arrows {
    width: 92%;
    display: none;
  }
  #lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide .glide__bullets {
    bottom: 12px;
    gap: 8px;
  }
  #lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide .glide__bullets .glide__bullet {
    width: 8px;
    height: 8px;
  }
  #lp-feature .feature-dynamic .lp-feature__image .lp-feature-glide .glide__bullets .glide__bullet--active {
    width: 48px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-form-section {
    padding: 48px 16px;
  }
  #lp-form-section .lp-form-box {
    max-width: none;
    gap: 20px;
  }
  #lp-form-section .lp-form-box>h2 {
    font-size: 34px;
  }
  #lp-form-section .lp-form-box>p {
    font-size: 18px;
    line-height: 1.4;
  }
  #lp-form-section .lp-form-box .lp-form {
    width: 100%;
    margin-top: 14px;
  }
  #lp-form-section .lp-form-box .lp-form form .gform_fields {
    row-gap: 16px;
  }
  #lp-form-section .lp-form-box .lp-form form .gfield_label.gform-field-label {
    font-size: 14px;
    margin-bottom: 3px;
  }
  #lp-form-section .lp-form-box .lp-form form .gfield_consent_label {
    font-size: 14px;
    line-height: 1.3;
  }
  #lp-form-section .lp-form-box .lp-form form .text-divider h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  #lp-form-section .lp-form-box .lp-form form input[type="text"],
  #lp-form-section .lp-form-box .lp-form form input[type="email"],
  #lp-form-section .lp-form-box .lp-form form input[type="tel"],
  #lp-form-section .lp-form-box .lp-form form select,
  #lp-form-section .lp-form-box .lp-form form .chosen-container a,
  #lp-form-section .lp-form-box .lp-form form textarea {
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.3;
  }
  #lp-form-section .lp-form-box .lp-form form input[type="submit"] {
    padding: 24px 22px;
    font-size: 16px;
    width: 100%;
  }
  #lp-form-section .gfield.lp-video-upload .gfield_label {
    font-size: 16px;
    margin-bottom: 4px;
  }
  #lp-form-section .gfield.lp-video-upload input[type="file"] {
    height: 148px;
  }
  #lp-form-section .gfield.lp-video-upload .ginput_container_fileupload::before {
    min-height: 148px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.6;
    content: "↥\A Clique para carregar o vídeo\A MP4, MOV, AVI (máx. 64MB)";
  }
  #lp-form-section .gfield.lp-video-upload .lp-video-upload__filename {
    bottom: 12px;
    font-size: 16px;
  }
  #lp-footer {
    padding: 40px 16px;
    gap: 40px;
    flex-direction: column;
    border-radius: 36px;
  }
  #lp-footer .left,
  #lp-footer .right {
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  #lp-footer .left>img {
    width: 143px;
    height: auto;
  }
  #lp-footer .left .links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  #lp-footer .left .links a,
  #lp-footer .right {
    font-size: 13px;
  }
  #lp-footer .right .socials {
    gap: 24px;
  }
  #lp-footer .right .socials span {
    font-size: 13px;
  }
  #lp-footer .right .socials .socials-inner {
    gap: 12px;
  }
}

@media only screen and (max-width: 500px) {
  body {
    padding: 0!important;
  }
  .lp-container {
    border-radius: 36px;
  }
  #lp-hero {
    height: 760px;
    padding: 32px 16px;
    border-radius: 36px;
  }
  #lp-hero .lp-hero__content {
    max-width: 100%;
    gap: 0;
  }
  #lp-hero>img {
    width: 193px;
  }
  #lp-hero .lp-hero__content h2 {
    font-size: 54px;
  }
  #lp-hero .lp-hero__content p {
    font-size: 22px;
    max-width: 100%;
    margin: 16px 0 40px;
  }
  #lp-hero .lp-hero__content .btn-flex {
    gap: 16px;
  }
  #lp-hero .lp-hero__content .btn-flex {
    justify-content: space-between;
  }
  .lp-btn {
    min-height: 34px;
    font-size: 16px;
  }
  .lp-btn--light, .lp-btn--dark {
    padding: 27px 40px;
  }
  .lp-btn--transparent {
    padding: 12px 24px;
    gap: 8px;
  }

  #lp-stats .lp-stats__grid .lp-stat strong,
  #lp-stats .lp-stats__grid .lp-stat--dark strong {
    font-size: 60px;
    line-height: 1.2;
  }
  #lp-stats .lp-stats__grid .lp-stat span,
  #lp-stats .lp-stats__grid .lp-stat--dark span {
    font-size: 18px;
    line-height: 1.2;
  }
  #lp-stats .lp-stats__grid {
    padding: 0 6px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
    justify-content: center;
  }
  #lp-stats .lp-stats__grid .lp-stat {
    gap: 2px;
    align-items: center;
    text-align: center;
    padding: 10px 2px;
    flex: 1 1 30%;
  }
  #lp-stats .lp-stats__grid .lp-stat--dark {
    padding: 32px;
    border-radius: 36px;
    align-items: flex-start;
  }
  #lp-hero .lp-hero__overlay {
    border-radius: 36px;
  }
  #lp-steps {
    padding: 32px 16px;
  }
  #lp-steps .lp-section-heading h2 {
    font-size: 34px;
  }
  #lp-steps .lp-section-heading p {
    font-size: 18px;
    line-height: 1.4;
  }
  #lp-steps .lp-steps__grid .lp-step h3 {
    font-size: 26px;
    line-height: 1.2;
  }
  #lp-steps .lp-steps__grid .lp-step p {
    font-size: 16px;
    line-height: 1.4;
  }
  #lp-steps .lp-steps__grid .lp-step {
    border-radius: 24px;
    padding: 24px 16px;
    column-gap: 16px;
    row-gap: 8px;
    align-items: start;
  }
  #lp-prize-banner {
    min-height: 570px;
    padding: 32px 16px;
    border-radius: 36px;
    background-position: center;
  }
  #lp-prize-banner .lp-prize-banner__content h2 {
    font-size: 54px;
    max-width: 100%;
  }
  #lp-prize-banner .lp-prize-banner__content p {
    margin-top: 16px;
  }
  #lp-prize-banner .lp-prize-banner__overlay {
    border-radius: 36px;
  }
}