@keyframes mexer {
  0%, 100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(5deg);
    filter: blur(2px);
  }
}
@keyframes mexerscale {
  0%, 100% {
    transform: rotate(0);
  }
  50% {
    filter: blur(0.5px);
    transform: scale(105%);
  }
}
@keyframes float-pill {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
  }
  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
  75% {
    transform: translateY(-12px) rotate(2deg);
  }
}
@keyframes lx-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #4f6a7c;
  list-style: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

html {
  scroll-behavior: smooth;
}

p {
  font-size: 18px;
  margin-bottom: 16px;
}

.container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.btn {
  border-radius: 50px;
  border-bottom: 6px solid #116800;
  background: linear-gradient(180deg, #35f60f 0%, #1fa604 100%);
  max-width: 400px;
  width: 100%;
  display: flex;
  padding: 18px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.7s;
}
.btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../../assets/img/cart.svg);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 166, 4, 0.4);
  filter: brightness(110%);
}

.title,
h1 {
  color: #0b3c5d;
  font-size: 40px;
  font-weight: 700;
}
.title b,
h1 b {
  color: #00c2ff;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 415px;
}
header * {
  color: #e4f4ff;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 32px;
}
header nav img {
  display: inline-block;
}
header nav .contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 16px 24px;
  border: 1px solid #fff;
  border-radius: 50px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 64px;
}

.hero {
  background: #0b3c5d;
  padding-top: 210px;
  background: url(../../assets/img/hero.png) no-repeat;
  background-size: cover;
}
.hero .container {
  display: flex;
  align-items: flex-end;
}
.hero .container .content {
  max-width: 460px;
  padding-bottom: 120px;
}
.hero .container .content h1 {
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.hero .container .content .area-text {
  margin-bottom: 32px;
}
.hero .container .content .area-text p {
  font-size: 16px;
  color: #e4f4ff;
}
.hero .container .content .area-text p b {
  color: #fff;
}
.hero .container .content .btn {
  margin-bottom: 20px;
}
.hero .container .content .area-selos {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero .container .content .area-selos li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero .container .content .area-selos li span {
  font-size: 14px;
  color: #70a8c1;
}
.hero .container .area-img {
  position: relative;
}
.hero .container .area-img .main_produto {
  left: 50%;
  transform: translateX(-50%);
  bottom: 45px;
  position: absolute;
  z-index: 10;
}
.hero .container .area-img .secondary_product {
  position: absolute;
  z-index: 5;
  bottom: 55px;
}
.hero .container .area-img .secondary_product.lp {
  left: 0;
  animation: infinite 3s mexer forwards;
}
.hero .container .area-img .secondary_product.rp {
  right: 0;
  animation: infinite 5s mexer reverse;
}
.hero .container .area-img .pills * {
  position: absolute;
}
.hero .container .area-img .pills .p1 {
  top: 20%;
  left: 30px;
  animation: float-pill 4s ease-in-out infinite;
}
.hero .container .area-img .pills .p2 {
  right: 30px;
  top: 30%;
  animation: float-pill 5s ease-in-out infinite 0.5s;
}

.z15 {
  position: relative;
  z-index: 15;
}

.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  max-width: none;
  width: 100%;
  height: 100vh;
}

.lx-marquee {
  background: #0b3d5c;
  overflow: hidden;
  width: 100%;
  padding: 24px 0;
}
.lx-marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.lx-marquee__content {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: lx-marquee-scroll 25s linear infinite;
}
.lx-marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lx-marquee__item img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lx-marquee__item span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: Arial, sans-serif;
}

.about {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
  z-index: 10;
}
.about .container {
  display: flex;
  align-items: center;
}
.about_img {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_img .about-lp {
  z-index: 0;
  position: absolute;
  left: 10px;
  animation: mexerscale 3s forwards infinite;
}
.about_img::before {
  content: "NERVE EASE";
  position: absolute;
  font-size: 70px;
  font-weight: 900;
  color: rgba(11, 60, 93, 0.3294117647);
  text-transform: uppercase;
  transform: rotate(-90deg);
  left: 260px;
  white-space: nowrap;
  letter-spacing: 6px;
  pointer-events: none;
}
.about_img img {
  max-width: 380px;
  position: relative;
  z-index: 1;
}
.about_content {
  flex: 1;
}
.about_content .title {
  margin-bottom: 24px;
  line-height: 1.2;
}
.about_content p {
  font-size: 16px;
  color: #4f6a7c;
}
.about_content .btn {
  margin-top: 16px;
}

.how-it-works {
  background: url("../img/bg-func.png");
  padding: 80px 0;
  position: relative;
  z-index: 10;
}
.how-it-works .container {
  text-align: center;
}
.how-it-works .hiw-header {
  margin-bottom: 56px;
}
.how-it-works .hiw-header .title {
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.how-it-works .hiw-header .title b {
  color: #00c2ff;
}
.how-it-works .hiw-header p {
  color: #e4f4ff;
  font-size: 16px;
  margin: 0;
}
.how-it-works .hiw-steps {
  position: relative;
  margin-bottom: 48px;
}
.how-it-works .hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.how-it-works .hiw-connector .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.how-it-works .hiw-connector .line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}
.how-it-works .hiw-cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
  text-align: left;
}
.how-it-works .hiw-card {
  flex: 1;
  background: #E4F4FF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
}
.how-it-works .hiw-card__icon {
  width: 52px;
  height: 52px;
  background: #0B3C5D;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.how-it-works .hiw-card__icon svg {
  width: 28px;
  height: 28px;
}
.how-it-works .hiw-card h3 {
  color: #0b3c5d;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-it-works .hiw-card p {
  color: #4f6a7c;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.how-it-works .hiw-footer {
  color: #e4f4ff;
  font-size: 15px;
  margin: 0;
  font-style: italic;
  opacity: 0.85;
}

.ingredients {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../img/bg-textura.jpg") center/cover no-repeat;
  image-resolution: c;
  padding: 80px 0;
  position: relative;
  z-index: 10;
}
.ingredients__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ingredients__header .title {
  margin-bottom: 16px;
  line-height: 1.2;
  font-size: 40px;
  text-wrap: nowrap;
  text-align: center;
}
@media (max-width: 800px) {
  .ingredients__header .title {
    text-wrap: wrap;
  }
}
.ingredients__header p {
  font-size: 16px;
  color: #4f6a7c;
  margin: 0;
}
.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.ingredients__cta {
  display: flex;
  justify-content: center;
}

.ingredient-card {
  background: #fff;
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 194, 255, 0.12);
}
.ingredient-card__img {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.ingredient-card .img-placeholder {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d0eaf8 0%, #b8dff5 100%);
  border: 3px solid rgba(0, 194, 255, 0.2);
  position: relative;
}
.ingredient-card .img-placeholder::after {
  content: "";
  display: block;
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px dashed rgba(0, 194, 255, 0.35);
}
.ingredient-card h3 {
  color: #0b3c5d;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.ingredient-card p {
  font-size: 14px;
  color: #4f6a7c;
  line-height: 1.65;
  margin: 0;
}

.benefits {
  background: url("../img/bg-beneficios.png") center/cover no-repeat;
  padding: 80px 0 0;
  position: relative;
  z-index: 10;
  overflow: visible;
}
.benefits .container {
  display: flex;
  align-items: center;
  gap: 48px;
}
.benefits__content {
  flex: 1;
}
.benefits__content .title {
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.benefits__content .title b {
  color: #00c2ff;
}
.benefits__content > p {
  color: #e4f4ff;
  font-size: 16px;
  margin-bottom: 32px;
}
.benefits__content > p b {
  color: #fff;
}
.benefits_list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 80px;
}
.benefits_list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.benefits_img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: flex-end;
}
.benefits_img img {
  max-width: 880px;
  width: 150%;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}
@media (max-width: 1400px) {
  .benefits_img img {
    width: 120%;
  }
}

.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #35f60f 0%, #1fa604 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon::after {
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg) translate(-1px, -2px);
}

.testimonials {
  background: #fff;
  padding: 80px 0 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.testimonials__rating .stars {
  display: flex;
  gap: 2px;
}
.testimonials__rating .stars span {
  color: #f5a623;
  font-size: 22px;
  line-height: 1;
}
.testimonials__rating .rating-text {
  color: #4f6a7c;
  font-size: 16px;
  font-weight: 500;
}
.testimonials .title {
  font-size: 40px;
  line-height: 1.2;
}

.testimonials-swiper {
  width: 90%;
  padding: 12px 24px 56px !important;
}
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}
.testimonials-swiper .swiper-slide {
  height: auto;
}
.testimonials-swiper .swiper-pagination {
  bottom: 16px;
}
.testimonials-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(11, 60, 93, 0.2);
  opacity: 1;
  transition: background 0.3s, transform 0.3s;
}
.testimonials-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #00c2ff;
  transform: scale(1.3);
}

.testimonial-card {
  background: #E4F4FF;
  border-radius: 16px;
  border: 1px solid rgba(0, 194, 255, 0.14);
  box-shadow: 0 4px 24px rgba(11, 60, 93, 0.08);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 60, 93, 0.14);
}
.testimonial-card__img {
  height: 360px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.testimonial-card__img span {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(11, 60, 93, 0.35);
  font-weight: 600;
  white-space: nowrap;
  z-index: 1;
}
.testimonial-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.testimonial-card__body > p {
  font-size: 15px;
  line-height: 1.7;
  color: #4f6a7c;
  flex: 1;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card__meta {
  border-top: 1px solid rgba(0, 194, 255, 0.12);
  padding-top: 16px;
}
.testimonial-card__meta .meta-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.testimonial-card__meta .meta-name {
  color: #0b3c5d;
  font-size: 16px;
  font-weight: 700;
}
.testimonial-card__meta .meta-location {
  color: #4f6a7c;
  font-size: 13px;
}
.testimonial-card__meta .meta-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__meta .stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 1px;
}
.testimonial-card__meta .verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #1a9945;
  font-weight: 500;
}
.testimonial-card__meta .verified__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #1a9945;
  flex-shrink: 0;
}
.testimonial-card__meta .verified__icon::after {
  content: "";
  display: block;
  width: 5px;
  height: 8px;
  border-right: 1.5px solid #1a9945;
  border-bottom: 1.5px solid #1a9945;
  transform: rotate(45deg) translate(-1px, -1px);
}/*# sourceMappingURL=style.css.map */