#myModal,
#myModalMobile {
  display: none;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Modal container */
.modal {
  display: none; /* escondido por padrão */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.content-swiper .text-wrapper p {
  font-size: 3.73333vw;
}

.content-swiper .text-wrapper h3 {
  font-size: 4.2666vw;
}

/* Modal interno */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  position: relative;
  border-radius: 8px;
  width: 90%;
  max-width: 900px;
}

.modal-content .swiper-wrapper {
  height: 55%;
}

.modal-alert {
  font-size: 0.8rem;
  margin-top: 12px;
  color: #a3a3a3;
}

/* Esconde modal mobile no desktop */
.modal-mobile {
  display: none;
}

.modal-mobile li {
  font-size: 0.8rem;
}

.modal-mobile img {
  height: 300px;
  object-fit: contain;
}

.modal-mobile p {
  margin-top: 0;
}

/* Exibe apenas no mobile */
@media (max-width: 768px) {
  .modal-desktop {
    display: none !important;
  }
  .modal-mobile {
    display: block;
  }
}

.boxes {
  gap: 1rem;
}

.shoks-title {
  font-size: calc(12px + 8vw / 19.2);
  color: #0a0a0a;
  font-weight: 700;
}

.box-left ol,
.box-right ol {
  color: #404040;
  font-size: calc(12px + 4vw / 19.2);
  padding-left: 1rem;
}

.box-left span {
  color: #a3a3a3;
  margin-top: 20px;
  font-size: 13px;
}

.modal-title {
  display: block;
  margin-bottom: 2rem;
  font-weight: 600;
}

.how-to-use-card {
  max-width: 284px;
  position: relative;
}

.how-to-use-card span {
  position: absolute;
  left: 0;
  font-size: 12px;
  font-weight: 600;
}

.how-to-use-card img {
  width: 100%;
  height: auto;
}

/* Botão de fechar */
.close {
  color: #000;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

.close:hover {
  color: #ff7a3d;
}

.flex {
  display: flex;
}

.hide-mobile {
  display: none;
}

@media screen and (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

.hide-pc {
  display: block;
}

@media screen and (min-width: 768px) {
  .hide-pc {
    display: none;
  }
}

.details-wrapper {
  background: #f3f4f6;
}

.b-title {
  font-size: 6.4vw;
  color: #2f2f2f;
  margin-bottom: 48px;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .b-title {
    font-size: 32px;
  }
}

.right-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* padrão mobile */
}

.feature-row__image-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.feature-row__image {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto; /* padrão mobile */
  position: static; /* padrão mobile */
}

img {
  width: 100%;
  height: auto;
}

.right-text-wrapper {
  position: absolute; /* padrão mobile */
  text-align: center;
  margin-top: 16px;
  top: 80%;
}

@media screen and (max-width: 767px) {
  .p-mobile {
    padding: 0 1rem;
  }
}

.right-text-wrapper h3 {
  margin-bottom: 3.2vw;
}

@media screen and (min-width: 768px) {
  .right-text-wrapper h3 {
    margin-bottom: 1rem;
  }
}

.r-sub_title {
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(45deg, #ffffff, #d1c2c3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- 🖥️ Layout para telas maiores --- */
@media screen and (min-width: 768px) {
  .right-wrapper {
    flex-direction: row;
  }

  .feature-row__image {
    position: absolute;
    top: 0;
    height: 100%;
  }

  .right-text-wrapper {
    position: absolute;
    text-align: center;
    left: 6%;
    top: unset;
    margin-top: 0;
  }

  .r-sub_title {
    font-size: 32px;
    background-clip: text !important;
    background: linear-gradient(45deg, #000000, #d1c2c3);
  }
}

@media screen and (max-width: 767px) {
  .right-text-wrapper svg path {
    fill: white !important; /* substitui o fill do inline */
  }
}

.details-2 {
  background: #000;
  position: relative;
}

.details-2 .text-wrapper {
  max-width: 640px;
  margin: auto;
  padding-top: 5%;
}

.title {
  font-size: 32px;
  color: #ffffff !important;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
}

.title p {
  font-size: 50%;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-top: 16px;
  margin-bottom: 0;
}

.dialog_trigger {
  display: flex;
  align-items: center;
  font-size: 14px;
  width: max-content;
  color: #fff;
  padding: 11px 24px 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(32px);
  margin: 30px auto 0;
  cursor: pointer;
}

/* .details-2 .right-wrapper {
  padding: 0 16px;
  width: 100% !important;
  margin: 0;
  left: unset;
  display: block;
} */

@media screen and (min-width: 767px) {
  .details-2 .right-wrapper {
    width: 38% !important;
    margin: auto;
    left: -5%;
    margin-bottom: 6%;
  }
}

.feature-row__image-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.feature-row__image-wrapper .feature-row__image-dots {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
}

.details-2 .right-wrapper .right-text-wrapper {
  position: relative;
  margin-top: 20px;
  display: grid;
  gap: 37px;
  margin-bottom: 63px;
  width: 100%;
  padding-left: 1rem;
}

@media screen and (min-width: 767px) {
  .details-2 .right-wrapper .right-text-wrapper {
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
  }
}

.details-2 .right-wrapper .r-text {
  position: relative;
  top: unset;
  left: unset;
  z-index: 2;
  font-size: 4.266vw;
  color: #ffffff;
  text-align: start;
}

@media screen and (min-width: 767px) {
  .details-2 .right-wrapper .r-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -178px;
    font-size: 16px;
    color: #ffffff;
    text-align: start;
  }
}

.details-2 .right-wrapper .r-text span,
.details-2 .right-wrapper .r-text p {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 84%;
  max-width: 197px;
}

.details-2 .right-wrapper .r-sub_title {
  position: relative;
  top: unset;
  left: unset;
  z-index: 2;
  font-size: 4.266vw;
  color: #ffffff;
  text-align: start;
  background: none;
}

@media screen and (min-width: 767px) {
  .details-2 .right-wrapper .r-sub_title {
    position: absolute;
    top: 49.4%;
    left: -105px;
    z-index: 2;
    font-size: 16px;
    color: #ffffff;
    text-align: start;
  }
}

.details-2 .right-wrapper .r-sub_title span,
.details-2 .right-wrapper .r-sub_title p {
  display: block;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 84%;
  max-width: 197px;
}

.feature-row__image-wrapper .feature-row__image-mobile {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  padding: 0 4rem;
}

/* details 3*/

.details-3 {
  position: relative;
  padding: 40px 0 80px;
}

.details-3 .content-wrapper {
  position: relative;
}

.details-3 .text-content {
  text-align: center;
  width: 100%;
}

.details-3 .b-title {
  margin-bottom: 0;
  font-size: 32px;
  color: #ffffff;
  padding-bottom: 32px;
  line-height: 1.2;
}

.details-3 .content-swiper {
  padding: 0 64px;
  position: relative;
}

.details-3 .swiper-wrapper-teste {
  position: relative;
  width: 100%;
  /* height: 100%; */
  height: auto;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

@media screen and (min-width: 768px) {
  .details-3 .swiper-wrapper-teste .text-wrapper {
    padding-bottom: 0.5rem;
  }
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.details-3 .text-wrapper {
  position: absolute;
  padding-top: 0;
  bottom: 16px;
  left: 16px;
  right: 68px;
  z-index: 1;
}

.details-3 .title-card {
  font-size: 1rem;
  color: #fff;
}

.details-3 .sub_title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 0 !important;
}

@media (min-width: 769px) {
  .details-3 .item:after {
    content: "";
    background: linear-gradient(
      189deg,
      rgba(0, 0, 0, 0) 52.4%,
      rgba(0, 0, 0, 0.5) 71.61%,
      rgba(0, 0, 0, 0.8) 93.47%
    );
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}

/**/

.details-3 .content-swiper {
  padding: 0 16px; /* padding mínimo em mobile */
}

.details-3 .swiper-wrapper-teste {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; /* espaço entre slides */
}

.details-3 .swiper-slide.item {
  flex: 0 0 100%; /* padrão mobile: ocupa toda a largura */
  box-sizing: border-box;
  position: relative;
}

/* imagens do slide */
.details-3 .feature-row__image-wrapper {
  width: 100%;
  margin-bottom: 16px;
}

.details-3 .feature-row__image {
  width: 100%;
  height: auto;
}

/* texto do slide */
.details-3 .text-wrapper {
  position: relative;
  margin-top: 40px;
}

/* .details-3 .text-wrapper h3 {
  font-size: 27px;
}

.details-3 .text-wrapper .sub_title {
  font-size: 24px;
} */

@media screen and (min-width: 768px) {
  .details-3 .text-wrapper {
    position: absolute;
    margin-top: 0;
  }

  .details-3 .text-wrapper h3 {
    font-size: 16px;
  }

  .details-3 .text-wrapper .sub_title {
    font-size: 14px;
  }
}

/* --- Tablet (>= 768px) --- */
@media screen and (min-width: 768px) {
  .details-3 .swiper-slide.item {
    flex: 0 0 calc(50% - 12px); /* dois slides lado a lado, considerando gap */
  }

  .details-3 .text-wrapper {
    text-align: left;
  }
}

/* --- Desktop (>= 1024px) --- */
@media screen and (min-width: 1124px) {
  .details-3 .swiper-slide.item {
    flex: 0 0 calc(50% - 12px); /* largura máxima igual à que você tinha */
  }

  .details-3 .content-swiper {
    padding: 0 64px; /* mantém padding maior no desktop */
  }
}

/*video*/
.video-wrapper .right-text-wrapper {
  left: unset;
  color: #fff;
  top: unset;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .video-wrapper .right-text-wrapper {
    color: #fff;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .video-wrapper video {
    height: 120vw;
    object-fit: cover;
  }
}

/*details-4*/

.details-4 {
  background: #000;
  position: relative;
}

.details-4 .container-cards {
  padding: 30px 15px 81px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .details-4 .container-cards {
    flex-direction: row;
    padding: 30px 64px 81px;
  }
}

.details-4 .card-item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .details-4 .card-item {
    max-width: 346.66px;
  }
}

.details-4 .container-text {
  margin-top: 24px;
}

.details-4 .container-text h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 4.2666vw;
}

.details-4 .container-text p {
  font-size: 3.73333vw;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media screen and (min-width: 768px) {
  .details-4 .container-text h3 {
    font-size: 1rem;
  }

  .details-4 .container-text p {
    font-size: 14px;
  }
}

/* end */

/* details-5 */

.details-5 {
  position: relative;
}

.details-5 .content-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
}

.details-5 .content-box .box {
  width: 100%;
  padding: 1rem 1rem 0;
}

@media screen and (min-width: 768px) {
  .details-5 .content-box {
    align-items: center;
    justify-content: flex-end;
  }

  .details-5 .content-box .box {
    max-width: 404px;
    margin-right: 6rem;
    padding: 0;
  }
}

.details-5 .content-box .box .flex {
  gap: 6px;
}

.details-5 .content-box .box .content-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-box .box p {
  margin: 0;
  color: rgba(102, 102, 102, 0.4);
  font-weight: 600;
}

.content-box .box h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .content-box .box h3 {
    font-size: 6.4vw;
  }

  .content-box .box p,
  .content-box .box span {
    font-size: 4.2666vw;
  }
}

.content-box .box span {
  color: #b4885f;
  font-weight: 600;
}

/* end details-5*/

.details-6 {
  padding: 80px 0;
}

.details-6 .b-title {
  margin-bottom: 32px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .content-grid {
    display: none;
  }
}

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

.content-grid .item {
  background-color: #fff;
  border-radius: 6px;
  padding: 32px 24px;
}

.details-6 .content-grid .item h3 {
  margin-bottom: 24px;
}

.details-6 .sub_title {
  margin-bottom: 8px;
  margin-top: 0;
}

.details-6 .sub_description {
  font-size: 14px;
  color: #666;
  margin-top: 0;
}

.details-6 .swiper .item {
  background-color: #fff;
  margin: 0 16px;
  border-radius: 6px;
  padding: 32px 20px;
}

.details-6 .swiper .item h3 {
  margin-bottom: 35px;
}

.details-6 .swiper .item .sub_title {
  font-size: 4.26vw;
}

.details-6 .swiper .item .sub_description {
  font-size: 3.26vw;
}

.details-6 .swiper-wrapper {
  height: 38%;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: #000 !important;
}

.btn_area {
  padding-bottom: 80px;
}

.btn {
  transition: all 0.2s;
  font-weight: 600;
  display: flex;
  text-align: center;
  font-size: 14px;
  color: #050505;
  justify-content: center;
  width: 182px;
  height: 40px;
  background: #fff;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
  text-decoration: none;
}

.btn:hover {
  color: #ff7a3d; /* Texto do botão */
}

/* Aplica fill a todos os elementos dentro do SVG */
.btn:hover svg * {
  fill: #ff7a3d;
}

/*end*/

/* details-7 */

.details-7 {
  position: relative;
  padding: 80px 0;
  background-color: #fff;
}

.details-7 .b-title {
  margin-bottom: 32px;
}

.details-7 .box-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(161px, 1fr));
  gap: 12px;
  margin: 0 auto;
  padding: 0 24px;
}

.details-7 .box-item {
  color: #666;
}

.details-7 .box-item p {
  margin-bottom: 0;
}

.details-7-bg {
  background-color: #fff;
}
