@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --red: #FF6174;
  --green: #02BC7D;
  --white: #fff;
  --black: #222222;
  --lightpurple: #fbf5ff;
  --purple: #660099;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 2px;
  color: var(--black);
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

a:hover {
  color: #000000;
}
/* genaral */
.title {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 50px;
}
.title span {
  color: var(--purple);
  background: linear-gradient(0deg,rgba(251, 245, 255, 1) 30%, rgba(251, 245, 255, 0) 30%);
}
/* slider control */
.slider-ctrl {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  margin-top: 30px;
  cursor: pointer;
}
.slider-arrow {
  width: 45px;
  height: 45px;
  aspect-ratio: 1;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
}
.slider-arrow img {
  height: 25px;
}
.next-slider img {
  margin-left: 5px;
}
.prev-slider img {
  transform: rotate(180deg);
  margin-right: 5px;
}
.slider-arrow:hover {
  transform: scale(1.1);
}
.custom-dots ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  width: 180px;
  height: 45px;
  border-radius: 50px;
}
.custom-dots ul li button {
  display: none;
}
.custom-dots ul li {
  width: 16px;
  height: 16px;
  aspect-ratio: 1;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease;
}
.custom-dots .slick-active {
  width: 35px;
  background: var(--black);
}
/* header */
.header {
  background: url('/img/header.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  min-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  max-width: 90%;
  border-radius: 30px;
  overflow: hidden;
  margin: 40px auto;
}
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.header .container {
  position: relative;
  z-index: 33;
}
.header-content {
  color: var(--white);
}
.header-content h1 {
  font-size: 50px;
  font-weight: 700;
}
.header-content h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0 40px 0;
}
.google {
  width: 365px;
  padding: 20px 15px;
  color: var(--black);
  background: linear-gradient(135deg,rgba(255, 255, 255, 1) 0%, rgba(251, 245, 255, 1) 100%);
  border: 2px solid var(--lightpurple);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.google p {
  color: var(--black);
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
}
.google-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}
.google-img img {
  width: 35%;
}
/* form */
.contactform {
  width: 420px;
  margin: 0 0 0 auto;
  background: var(--white);
  border: 1px solid ;
  border-radius: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 30px 40px 30px;
}
.progress-bar {
  --progress-width: 0%;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 25px auto;
}
.progress-bar::before {
  content: '';
  width: 100%;
  height: 10px;
  background: #f1e9f5;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.progress-bar::after {
  content: '';
  width: var(--progress-width);
  height: 10px;
  background: var(--purple);
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.35s ease;
}
.dot {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f1e9f5;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 35px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 3;
  transition: all 0.35s ease;
}
.dot.active {
  background: var(--purple);
  color: var(--white);
}
.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}
.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0px);
  animation: myAnimation 1s ease;
}
@keyframes myAnimation {
  from {transform: translateY(20px);opacity: 0;}
  to {transform: translateY(0px);opacity: 1;}
}
.form-step h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
  color: var(--black);
  margin-bottom: 20px;
}
.contactform hr {
  opacity: 1;
  background: var(--purple);
  border: none;
  width: 90%;
  height: 2px;
  margin: 10px auto 20px auto;
}
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form-step.active {
  display: flex;
}
.radio-opt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.radio-button {
  width: 100%;
  margin: 8px 0;
}
.radio-button input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-button label {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 230px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
}
.radio-opt-normal .radio-button label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-button label:hover, .radio-button input[type="radio"]:checked + label {
  background: var(--lightpurple);
  color: var(--purple);
  border: 1px solid var(--purple);
}
.form-input {
  margin: 5px 0;
}
.form-input label {
  text-align: left;
  margin: 0 0 5px 0;
  padding-left: 17px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  width: 280px;
  max-width: 100%;
}
.form-input input {
  width: 90%;
  max-width: 100%;
  height: 45px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 16px;
  color: var(--black) !important;
  font-weight: 400 !important;
  padding: 0 15px;
  -webkit-appearance: none;
  text-align: left !important;
  line-height: 1;
  margin: 0 auto;
}
.form-input input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
input[name="telefono"] {
  background-image: url('/img/icons/spain.svg') !important;
  background-position: 15px center;
  background-size: 20px;
  background-repeat: no-repeat;
  padding: 0 0 0 45px;
}
.form-input input.error {
  border: 1px solid var(--red);
  background-image: url('/img/icons/error.svg') !important;
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  padding-right: 45px; 
}
.form-input input.valid {
  border: 1px solid var(--green);
  background-image: url('/img/icons/check.svg') !important;
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  padding-right: 45px;
}
input[name="telefono"].error {
  background: url('/img/icons/spain.svg'), url('/img/icons/error.svg') !important;
  background-position: 15px center, 96% center !important;
  background-size: 20px !important;
  background-repeat: no-repeat !important;
}
input[name="telefono"].valid {
  background: url('/img/icons/spain.svg'), url('/img/icons/check.svg') !important;
  background-position: 15px center, 96% center !important;
  background-size: 20px !important;
  background-repeat: no-repeat !important;
}
.map {
  height: 175px;
  width: 90%;
  max-width: 100%;
  margin: 8px auto 0 auto;
  border-radius: 10px;
}
.form-check {
  text-align: center;
  padding: 0;
  margin-top: 10px;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  font-weight: 400;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--purple);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--purple);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--black);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--purple);
  text-decoration: underline;
}
label.error, #terms-error {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.form-button {
  width: 100%;
  max-width: 200px;
  height: 50px;
  border-radius: 10px;
  background: var(--purple);
  border: 1px solid var(--purple);
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
  transition: all 0.6s ease;
  margin-top: 15px;
}
.form-button:hover {
  transform: scale(1.1);
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
}
/* section 1 */
.section1 {
  text-align: center;
  padding: 30px 0;
}
.vant-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
}
.vant {
  width: 30%;
  min-height: 150px;
  padding: 30px;
  border-radius: 10px;
  background: #fafafa;
  border: 0.5px solid rgba(102, 0, 153, 0.2);
  text-align: left;
  transition: all 0.6s ease;
  cursor: pointer;
}
.vant:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px 2px rgba(102, 0, 153, 0.2);
}
.vant span {
  width: 50px;
  height: 50px;
  aspect-ratio: 1;
  border-radius: 50px;
  background: var(--purple);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.vant span img {
  height: 30px;
}
.vant h6 {
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 10px 0;
}
.vant p {
  font-size: 17px;
  color: var(--black);
  margin: 0;
}
/* section 2 */
.section2 {
  text-align: center;
  padding: 80px 0;
  background: var(--lightpurple);
  max-width: 90%;
  border-radius: 30px;
  overflow: hidden;
  margin: 50px auto;
}
.section2 .title span {
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 30%);
}
.section2 .col-12 {
  padding: 0;
}
.offer-slider {
  margin: 0 auto;
}
.offer-slider .slick-track {
  padding: 20px 0;
}
.offer-box {
  width: 90%;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  background: var(--white);
  border: 0.5px solid rgba(102, 0, 153, 0.2);
  overflow: hidden;
  transition: all 0.6s ease;
  transform: scale(0.95);
}
.offer-box:hover {
  transform: scale(1.04);
  border: 1px solid var(--purple);
  box-shadow: 0 0 10px 2px rgba(102, 0, 153, 0.2);
}
.top-offer {
  border: 1px solid var(--purple);
  position: relative;
  transform: scale(1);
}
.top-offer span {
  background: var(--purple);
  padding: 10px 20px;
  font-weight: 700;
  color: var(--white);
  font-size: 17px;
  line-height: 1.2;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 20px 0;
}
.offer-box img {
  width: 75%;
  margin: 0 auto 30px auto;
}
.offer-box h6 {
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 20px 0;
}
.offer-box h5 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: var(--purple);
  border-radius: 50px;
  padding: 10px;
  width: 90%;
  height: 50px;
  margin: 0 auto 30px auto;
}
.offer-box button {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 10px;
  width: 100%;
  height: 50px;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.6s ease;
}
.offer-box button:hover {
  background: var(--lightpurple);
  color: var(--purple);
  border: 1px solid var(--purple);
}
/* section 3 */
.section3 {
  text-align: center;
  padding: 80px 0;
}
.section3 .title {
  text-wrap: balance;
}
.intervencoes_grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.custom-container {
  --max-width: 1180px;
  --padding: 1rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin: 0 auto;
}
.container-slide {
  position: relative;
  width: 380px;
  height: 215px;
  border: 2px solid white;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}
.container-slide .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  background-size: 380px 100%;
  z-index: 1;
}
.container-slide .foreground-img {
  width: 50%;
  filter: grayscale(50%);
}
.container-slide .slider {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: rgba(242, 242, 242, 0);
  outline: none;
  margin: 0;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.container-slide .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 4px;
  height: 335px;
  background: var(--white);
  cursor: pointer;
}
.container-slide .slider::-moz-range-thumb {
  width: 4px;
  height: 335px;
  background: var(--white);
  cursor: pointer;
}
.container-slide .slider-button {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url("/img/icons/arrow_range.svg");
  background-position: center center;
  background-repeat: no-repeat;
  left: calc(50% - 33px);
  top: calc(50% - 30px);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 3;
}
.container-slide .slider-button:after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  height: 25px;
  width: 25px;
  transform: rotate(-90deg);
}
.container-slide .slider-button:before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  height: 25px;
  width: 25px;
  transform: rotate(90deg);
}
/* section 4 */
.section4 {
  text-align: center;
  padding: 80px 0;
  background: var(--lightpurple);
  max-width: 90%;
  border-radius: 30px;
  overflow: hidden;
  margin: 50px auto;
}
.section4 .title span {
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 30%);
}
.blog-slider .slick-track {
  padding: 20px 0;
}
.blog-outer {
  margin: 0 auto;
  text-align: center;
}
.blog-inner {
  max-width: 270px;
  width: 95%;
  text-align: left;
  background-color: var(--white);
  cursor: pointer;
  margin: 0 auto;
  border-radius: 25px;
  transition: all 0.6s ease;
  border: 0.5px solid rgba(102, 0, 153, 0.2);
}
.blog-inner:hover {
  transform: scale(1.03);
  border: 1px solid var(--purple);
  box-shadow: 0 0 10px 2px rgba(102, 0, 153, 0.2);
}
.blog_img {
  width: 100%;
  border-radius: 25px 25px 0 0;
  height: 176px;
  object-fit: cover;
}
.blog-content {
  padding: 20px 33px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.blog-title {
  font-weight: 400;
  color: var(--darkgrey);
  display: flex;
  align-items: center;
  text-wrap: balance;
  justify-content: center;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  height: 80px;
  margin: 0 0 10px;
  padding: 0;
}
.blog_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2px;
}
.blog_info p {
  margin: 0;
  font-weight: 400;
}
/* section5 */
.section5 {
  padding: 80px 0 20px 0;
  text-wrap: balance;
}
.prize img {
  width: 100%;
}
/* footer */
.footer {
  background: var(--lightpurple);
  max-width: 90%;
  border-radius: 30px;
  margin: 200px auto 0px auto;
}
.footer .title {
  margin-bottom: 30px;
  font-size: 45px;
}
.footer .title span {
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 30%);
}
.footer button {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 10px;
  width: 100%;
  max-width: 280px;
  height: 50px;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.6s ease;
}
.footer button:hover {
  background: var(--purple);
  color: var(--white);
  border: 1px solid var(--purple);
}
.footer-img img {
  height: 450px;
  margin: -120px 0 0 60px;
}
/* popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background-color: white;
  padding: 20px;
  width: 95%;
  max-width: 550px;
  background: var(--white);
  border: 1px solid ;
  border-radius: 30px;
  position: relative;
}
.popup-content form {
  width: 95%;
  margin: 0 auto;
  border: none;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  background: var(--purple);
  width: 30px;
  height: 30px;
  border-radius: 30px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.6s ease;
}
.close-btn img {
  height: 10px;
}
.close-btn:hover {
  transform: scale(1.1);
}
/* message box */
.message-box {
  width: 420px;
  margin: 0 0 0 auto;
  background: var(--white);
  border: 1px solid;
  border-radius: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-wrap: balance;
  padding: 50px 30px 40px 30px;
}
.message-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1360px) {
  .header-content{
    text-wrap: balance;
  }
  .header-content h1 {
    font-size: 42px;
  }
  .header-content h6 {
    font-size: 20px;
  }
  .contactform, .message-box {
    width: 400px;
  }
  .vant-row {
    gap: 0 20px;
  }
  .vant {
    width: 32%;
  }
  .vant p {
    font-size: 16px;
  }
  .offer-box h6 {
    font-size: 18px;
  }
  .offer-box h5 {
    font-size: 22px;
  }
  .container-slide {
    width: 320px;
  }
  .container-slide .img {
    background-size: 320px;
  }
  .footer .title {
    font-size: 40px;
  }
  .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1260px) {
  .contactform, .message-box {
    margin: 0 0 0 -60px;
  }
  .blog-content {
    padding: 20px;
  }
  .footer-img img {
    height: 400px;
  }
  .header-content h6 {
    font-size: 18px;
  }
  .vant {
    padding: 30px 20px;
  }
  .vant p, .top-offer span {
    font-size: 14px;
  }
  .offer-box {
    width: 95%;
    padding: 30px 15px;
  }
  .container-slide {
    width: 420px;
  }
  .container-slide .img {
    background-size: 420px;
  }
  .intervencoes_grid .slide-wrapper:nth-child(3) {
    display: none;
  }
  .section4 .slider-ctrl {
    display: flex;
  }
}
@media only screen and (max-width: 1100px) {
  .contactform, .message-box {
    width: 380px;
  }
  .footer-img img {
    height: 370px;
  }
  .footer .title {
    font-size: 34px;
  }
  .footer {
    margin: 100px auto 50px auto;
  }
}
@media only screen and (max-width: 1080px) {
  .footer-img img {
    height: 370px;
    margin: -80px 0 0 30px;
  }
  .contactform, .message-box {
    width: 360px;
  }
  .header-content h6 {
    font-size: 16px;
  }
  .offer-box h5 {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .header .container {
    max-width: 90%;
  }
  .contactform, .message-box {
    margin: 0 0 0 auto;
  }
  .header-content h1 {
    font-size: 36px;
  }
  .google {
    width: 320px;
  }
  .google p {
    font-size: 12px;
  }
  .section2 .slider-ctrl {
    display: flex;
  }
  .offer-box {
    transform: scale(1.0);
  }
  .vant p, .top-offer span {
    font-size: 12px;
  }
   .intervencoes_grid .slide-wrapper:nth-child(2) {
    display: none;
  }
  .container-slide {
    width: 460px;
  }
  .container-slide .img {
    background-size: 460px;
  }
  .offer-box {
    padding: 30px 20px;
  }
  .footer .title, .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 860px) {
  .contactform, .message-box {
    width: 330px;
  }
  .form-step h3 {
    font-size: 20px;
  }
  .form-check label {
    font-size: 10px;
  }
  .google {
    width: 280px;
  }
  .google p {
    font-size: 9px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    text-align: center;
  }
  .header-content h1 {
    font-size: 40px;
  }
  .contactform, .message-box {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }
  .google {
    width: 100%;
    max-width: 350px;
    margin: 40px auto 0 auto;
  }
  .google p {
    font-size: 11px;
  }
  .vant-row {
    flex-direction: column;
    gap: 20px 0;
  }
  .vant {
    width: 100%;
    max-width: 300px;
    text-align: center;
    text-wrap: balance;
    padding: 20px;
  }
  .vant span {
    margin: 0 auto 10px auto;
  }
  .vant h6 {
    font-size: 24px;
  }
  .vant p {
    font-size: 14px;
  }
  .title {
    text-wrap: balance;
  }
  .section3 {
    padding: 20px 0;
  }
  .section5, .footer {
    text-align: center;
  }
  .section5 {
    padding: 0 0 60px 0;
  }
  .prize img {
    width: 100%;
    max-width: 350px;
  }
  .footer {
    margin: 0 auto;
    padding: 30px 0;
  }
  .footer-img img {
    display: none;
    height: 250px;
    margin: 30px auto 0 auto;
  }
}
@media only screen and (max-width: 550px) {
  .footer .title, .title {
    font-size: 30px;
  }
  .title {
    margin-bottom: 30px;
  }
  .section4, .section2 {
    padding: 50px 0;
  }
  .offer-box {
    width: 70%;
  }
  .header-content h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 475px) {
  .header-content h1 {
    font-size: 30px;
  }
  .header .container {
    max-width: 96%;
  }
  .container-slide {
    width: 360px;
  }
  .container-slide .img {
    background-size: 360px;
  }
  .footer .title, .title {
    font-size: 28px;
  }
  .section4, .section2 {
    padding: 40px 20px;
  }
  .offer-box {
    width: 85%;
  }
  .form-check label {
    text-align: left;
    max-width: 80%;
  }
}
@media only screen and (max-width: 390px) {
  .header-content h1 {
    font-size: 28px;
  }
  .slider-ctrl {
    margin-top: 15px;
    transform: scale(0.9);
  }
  .popup-content form {
    padding: 30px 0 20px 0;
  }
}
@media only screen and (max-width: 375px) {
  .header-content h1 {
    font-size: 26px;
  }
  .offer-box {
    width: 90%;
  }
  .container-slide {
    width: 300px;
  }
  .container-slide .img {
    background-size: 300px 100%;
  }
  .footer .title, .title {
    font-size: 24px;
  }
  .prize img {
    width: 85%;
  }
  .contactform, .message-box {
    padding: 30px 20px 20px 20px;
    border-radius: 15px;
  }
  .radio-button label {
    width: 200px;
  }
}
@media only screen and (max-width: 335px) {
  .header-content h1 {
    font-size: 22px;
  }
  .form-step h3 {
    font-size: 18px;
  }
  .offer-box {
    width: 95%;
  }
  .container-slide {
    width: 280px;
  }
  .container-slide .img {
    background-size: 280px 100%;
  }
  .slider-ctrl {
    margin-top: 5px;
    transform: scale(0.8);
  }
}