@charset "UTF-8";
@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%);
  }
}
@keyframes bg-pill-float {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes bg-linhas-glow {
  0%, 100% {
    opacity: 0.4;
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.4);
  }
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
* {
  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;
}

body.menu-open {
  overflow: hidden;
}

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;
}
@media (max-width: 900px) {
  .title,
  h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}
.title b,
h1 b {
  color: #00c2ff;
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: #0b3c5d;
  backdrop-filter: blur(8px);
  z-index: 20;
}
@media (max-width: 900px) {
  header {
    padding: 24px 0;
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header * {
  color: #e4f4ff;
}
header .hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 101;
  padding: 0;
}
header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
header .hamburger span:nth-child(1) {
  top: 0;
}
header .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .hamburger span:nth-child(3) {
  bottom: 0;
}
header .hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 900px) {
  header .hamburger {
    display: block;
  }
}
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;
}
@media (max-width: 900px) {
  header nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100dvh;
    background: #0b3c5d;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: transform 0.3s ease;
    z-index: 100;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transform: translateX(100%);
  }
  header nav.open {
    display: flex;
    transform: translateX(0);
  }
  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-left: 0;
  }
  header nav ul li a {
    font-size: 18px;
  }
  header nav .contact-info {
    margin-top: 16px;
  }
}

.hero {
  background: #0b3c5d;
  padding-top: 170px;
  overflow: hidden;
  background: url(../../assets/img/hero.png) no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 900px) {
  .hero {
    padding-top: 120px;
  }
}
.hero .container {
  position: relative;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 11;
}
@media (max-width: 680px) {
  .hero .container {
    flex-direction: column;
    align-items: center;
  }
  .hero .container .area-img {
    margin-top: 80px;
  }
  .hero .container .area-img .main_produto {
    max-width: 70%;
  }
  .hero .container .area-img .lp {
    max-width: 70%;
  }
  .hero .container .area-img .rp {
    max-width: 80%;
  }
  .hero .container .area-img .tags-hero {
    display: none;
  }
}
.hero .container .content {
  max-width: 460px;
  padding-bottom: 120px;
}
@media (max-width: 900px) {
  .hero .container .content {
    padding-bottom: 60px;
  }
}
.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;
  max-width: 90%;
}
@media (max-width: 900px) {
  .hero .container .area-img .main_produto {
    bottom: 25px;
    max-width: 400px;
  }
}
.hero .container .area-img .secondary_product {
  position: absolute;
  z-index: 5;
  bottom: 55px;
}
@media (max-width: 900px) {
  .hero .container .area-img .secondary_product {
    bottom: 25px;
  }
}
.hero .container .area-img .secondary_product.lp {
  right: 200px;
  animation: infinite 3s mexer forwards;
}
@media (max-width: 900px) {
  .hero .container .area-img .secondary_product.lp {
    left: -85px;
    max-width: 400px;
  }
}
.hero .container .area-img .secondary_product.rp {
  right: 0;
  animation: infinite 5s mexer reverse;
}
@media (max-width: 900px) {
  .hero .container .area-img .secondary_product.rp {
    right: -35px;
  }
}
.hero .container .area-img .pills * {
  position: absolute;
}
@media (max-width: 900px) {
  .hero .container .area-img .pills * {
    max-width: 60px;
  }
}
.hero .container .area-img .pills .p1 {
  top: 20%;
  left: 30px;
  animation: float-pill 4s ease-in-out infinite;
}
@media (max-width: 900px) {
  .hero .container .area-img .pills .p1 {
    left: 0;
  }
}
.hero .container .area-img .pills .p2 {
  right: 30px;
  top: 30%;
  animation: float-pill 5s ease-in-out infinite 0.5s;
}
@media (max-width: 900px) {
  .hero .container .area-img .pills .p2 {
    right: 0;
  }
}
.hero .container .area-img ul {
  display: grid;
  position: absolute;
  gap: 8px;
  z-index: 10;
  right: 0;
  bottom: 30%;
}
.hero .container .area-img ul li {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(22, 76, 112, 0.3);
  backdrop-filter: blur(4px);
  padding: 8px 24px;
  gap: 10px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.hero .container .area-img ul li:last-child {
  margin-left: 30px;
}
.hero .container .area-img ul li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../../assets/img/fi_10629607.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.hero .bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-40%);
}
.hero .bg .bg-pill {
  background-blend-mode: lighten;
  filter: blur(5px);
  animation: bg-pill-float 4s ease-in-out infinite;
}
.hero .bg .bg-linhas {
  top: 0;
  position: absolute;
  animation: bg-linhas-glow 3s ease-in-out infinite;
}
.hero .bg1 {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  bottom: 0;
}
@media (max-width: 900px) {
  .hero .bg1 {
    display: none;
  }
}
.hero .bg1 .b2 {
  position: relative;
  max-width: none;
  bottom: -55px;
}

.lx-marquee {
  background: #0b3d5c;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #fff;
  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: url(../../assets/img/bg-about.png) no-repeat;
  background-size: cover;
  background-position: right;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .about {
    padding: 40px 0;
  }
}
.about::before {
  content: "";
  display: block;
  width: 30%;
  left: 0;
  bottom: 25%;
  height: 220px;
  background: linear-gradient(89deg, #0b3c5d 13.46%, #177ec3 106.18%);
  position: absolute;
}
@media (max-width: 680px) {
  .about::before {
    display: none;
  }
}
.about .container {
  display: flex;
  align-items: center;
}
@media (max-width: 680px) {
  .about .container {
    display: grid;
    gap: 40px;
  }
}
.about_img {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .about_img {
    grid-row: 2;
  }
}
.about_img .about-lp {
  position: absolute;
  left: -100px;
  z-index: 0;
  animation: mexerscale 3s forwards infinite;
}
@media (max-width: 680px) {
  .about_img .about-lp {
    left: -70px;
  }
}
.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;
}
@media (max-width: 680px) {
  .about_img::before {
    font-size: 50px;
    left: auto;
    right: -85px;
    top: 130px;
  }
}
.about_img img {
  max-width: 580px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .about_img img {
    max-width: 100%;
  }
}
.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");
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
}
.how-it-works .container {
  text-align: center;
}
@media (max-width: 680px) {
  .how-it-works .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: 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;
}
@media (max-width: 680px) {
  .how-it-works .hiw-steps {
    display: flex;
  }
}
.how-it-works .hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
@media (max-width: 680px) {
  .how-it-works .hiw-connector {
    padding: 0px 18px 20px 0px;
    flex-direction: column;
  }
}
.how-it-works .hiw-connector .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  transform: scale(0);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.7s ease;
}
.how-it-works .hiw-connector .dot:nth-child(1) {
  transition-delay: 0s;
}
.how-it-works .hiw-connector .dot:nth-child(3) {
  transition-delay: 1.6s;
}
.how-it-works .hiw-connector .dot:nth-child(5) {
  transition-delay: 3.2s;
}
.how-it-works .hiw-connector .line {
  flex: 1;
  height: 2px;
  width: 2px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: visible;
}
.how-it-works .hiw-connector .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00c2ff;
  box-shadow: 0 0 6px #00c2ff, 0 0 14px #00c2ff, 0 0 30px rgba(0, 194, 255, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s ease-in-out, box-shadow 1.2s ease-in-out;
}
.how-it-works .hiw-connector .line:nth-child(2)::after {
  transition-delay: 0.4s;
}
.how-it-works .hiw-connector .line:nth-child(4)::after {
  transition-delay: 2s;
}
.how-it-works .hiw-steps.animated .hiw-connector .dot {
  transform: scale(1);
  box-shadow: 0 0 8px #00c2ff, 0 0 20px rgba(0, 194, 255, 0.6);
}
.how-it-works .hiw-steps.animated .hiw-connector .line::after {
  transform: scaleX(1);
}
.how-it-works .hiw-cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
  text-align: left;
}
@media (max-width: 680px) {
  .how-it-works .hiw-cards {
    display: flex;
    flex-direction: column;
  }
}
.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;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
}
.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;
  perspective: 1000px;
}
@media (max-width: 680px) {
  .ingredients__grid {
    grid-template-columns: 1fr;
  }
}
.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;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}
.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 194, 255, 0.12);
}
.ingredient-card .ingredient-card__glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.25) 0%, transparent 80%);
  z-index: 1;
}
.ingredient-card__img {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.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;
  position: relative;
  z-index: 2;
}
.ingredient-card p {
  font-size: 14px;
  color: #4f6a7c;
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 2;
}

.benefits {
  background: url("../img/bg-beneficios.png") center/cover no-repeat;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.benefits .container {
  display: flex;
  align-items: center;
  gap: 48px;
}
.benefits__content {
  max-width: 490px;
  position: relative;
  z-index: 10;
}
.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 {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
@media (max-width: 900px) {
  .benefits_img {
    position: static;
  }
}
.benefits_img picture {
  display: block;
}
.benefits_img img {
  max-width: none;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}
@media (max-width: 900px) {
  .benefits_img img {
    max-width: 100%;
  }
}

.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;
  overflow: hidden;
  width: 100%;
  margin-bottom: 150px;
}
.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: 100%;
  padding: 12px 0 56px !important;
}
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}
.testimonials-swiper .swiper-slide {
  height: auto;
  min-width: 0;
}
.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: 220px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin: 24px 24px 0 24px;
  border-radius: 8px;
}
.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;
}
.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;
  margin-bottom: 20px;
}
.testimonial-card__meta .meta-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  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;
  justify-content: space-between;
  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);
}

.shipping {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0b3c5d;
  z-index: 15;
  position: relative;
  padding-top: 120px;
}
.shipping p,
.shipping h2 {
  color: #fff;
  text-align: center;
}
.shipping p {
  font-size: 18px;
  margin-bottom: 50px;
}
.shipping h2 {
  font-size: 40px;
  margin-bottom: 15px;
}
@media (max-width: 900px) {
  .shipping h2 {
    font-size: 28px;
    padding: 0 5%;
  }
}
.shipping b {
  color: #00c2ff;
}
.shipping .shipping-img {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}
.shipping .shipping-img img {
  width: 236px;
  display: block;
}

.area-kits {
  padding-bottom: 100px;
}
@media (max-width: 900px) {
  .area-kits {
    padding-bottom: 60px;
  }
}
.area-kits .container {
  width: 95%;
}
.area-kits .container .sub {
  margin-bottom: 42px;
}
.area-kits .container h2 {
  margin-top: 40px;
  font-size: 40px;
}
.area-kits .container h2,
.area-kits .container p {
  text-align: center;
}
.area-kits .container p {
  font-size: 18px;
}
.area-kits .container .placeholder {
  border: 2px dashed rgba(11, 60, 93, 0.25);
  border-radius: 12px;
  background: rgba(11, 60, 93, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.area-kits .container .placeholder::after {
  content: attr(data-label);
  font-size: 13px;
  font-weight: 500;
  color: rgba(11, 60, 93, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.area-kits .container .placeholder--mockup {
  height: 260px;
  max-width: 280px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .area-kits .container .placeholder--mockup {
    height: 160px;
  }
}
.area-kits .container .placeholder--button {
  height: 60px;
  max-width: 280px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .area-kits .container .placeholder--button {
    height: 48px;
  }
}
.area-kits .container .placeholder--cards {
  height: 32px;
  max-width: 220px;
  margin-bottom: 14px;
}
.area-kits .container .divider {
  border: none;
  border-top: 1px solid rgba(11, 60, 93, 0.15);
  margin: 0 0 16px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.area-kits .container ul {
  margin-bottom: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: flex-end;
  width: 100%;
}
.area-kits .container ul.a2 {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .area-kits .container ul {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 24px;
  }
}
.area-kits .container ul a {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  position: relative;
  text-align: center;
  transition: all 0.6s;
  border: 1px solid rgba(13, 42, 69, 0.15);
  overflow: hidden;
  background: #fff;
}
.area-kits .container ul a:hover {
  transform: scale(1.01);
}
.area-kits .container ul a::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: #0b3c5d;
  border-radius: 0 0 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 900px) {
  .area-kits .container ul a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.area-kits .container ul a .valores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.area-kits .container ul a .valores.mb {
  display: none;
}
@media (max-width: 900px) {
  .area-kits .container ul a .valores.mb {
    display: flex;
  }
}
.area-kits .container ul a .valores.dk {
  display: flex;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .valores.dk {
    display: none;
  }
}
.area-kits .container ul a .valores * {
  font-size: 24px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .valores * {
    font-size: 20px;
  }
}
.area-kits .container ul a .valores s {
  text-decoration: line-through;
  text-decoration-color: red;
  font-weight: normal;
}
.area-kits .container ul a .valores span {
  color: #0b3c5d;
  font-weight: bold;
}
.area-kits .container ul a .valores small {
  font-size: 13px;
  font-weight: bold;
}
.area-kits .container ul a .header {
  font-size: 24px;
  width: 100%;
  border-radius: 20px 20px 0 0;
  color: #fff;
  text-transform: uppercase;
  padding: 16px;
  line-height: 1;
  background: #0b3c5d;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .header {
    grid-column: -1/1;
    font-size: 18px;
  }
}
.area-kits .container ul a .main {
  padding: 16px 12px 0;
  width: 100%;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main {
    padding: 16px 0px;
    padding-left: 10px;
  }
}
.area-kits .container ul a .main strong {
  font-size: 40px;
  font-weight: 700;
  display: block;
  color: #0b3c5d;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main strong {
    font-size: 24px;
  }
}
@media (max-width: 370px) {
  .area-kits .container ul a .main strong {
    font-size: 20px;
  }
}
.area-kits .container ul a .main .days {
  display: block;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .days {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 370px) {
  .area-kits .container ul a .main .days {
    font-size: 14px;
  }
}
.area-kits .container ul a .main .area-img {
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .area-img {
    overflow: visible;
  }
}
.area-kits .container ul a .main .area-img::before {
  display: none;
}
.area-kits .container ul a .main .area-img .frete {
  max-width: 120px;
  position: absolute;
  top: -10%;
  left: 10%;
  z-index: 5;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .area-img .frete {
    max-width: 75px;
  }
}
.area-kits .container ul a .main .area-img .save {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  right: 5%;
  background: #f43030;
  padding: 6px 16px;
}
.area-kits .container ul a .main .area-img .save small {
  font-size: 10px;
}
.area-kits .container ul a .main .area-img .save {
  width: 76px;
  height: 76px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .area-img .save {
    bottom: 0;
    right: 0;
  }
}
.area-kits .container ul a .main .area-img .save {
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: path("M17.7195 67.0419C15.2814 67.0599 12.936 66.1086 11.1993 64.3974C9.46259 62.6861 8.47679 60.3551 8.45877 57.917L8.4279 53.7385C8.40858 51.3112 7.43004 48.99 5.70579 47.2815L2.7592 44.3781C1.89378 43.5302 1.20452 42.5195 0.731039 41.4043C0.257558 40.289 0.00920217 39.0912 0.000250915 37.8796C-0.00870034 36.6681 0.22193 35.4667 0.678881 34.3446C1.13583 33.2225 1.81009 32.2017 2.66288 31.3411L5.56625 28.3945C7.26507 26.6607 8.2092 24.3253 8.19266 21.898L8.16179 17.7195C8.14377 15.2814 9.09502 12.936 10.8063 11.1993C12.5175 9.46258 14.8486 8.47678 17.2867 8.45877L21.4652 8.42791C23.8925 8.40859 26.2136 7.43004 27.9222 5.70579L30.8255 2.75921C31.6735 1.89379 32.6841 1.20452 33.7994 0.731046C34.9146 0.257561 36.1125 0.00920216 37.324 0.000250912C38.5356 -0.00870034 39.737 0.221932 40.8591 0.678887C41.9812 1.13583 43.0019 1.81009 43.8626 2.66288L46.8092 5.56625C48.543 7.26507 50.8783 8.2092 53.3057 8.19265L57.4842 8.16179C59.9223 8.14378 62.2676 9.09502 64.0044 10.8063C65.7411 12.5175 66.7269 14.8486 66.7449 17.2866L66.7758 21.4652C66.7951 23.8925 67.7736 26.2136 69.4979 27.9222L72.4445 30.8255C73.3099 31.6735 73.9991 32.6841 74.4726 33.7994C74.9461 34.9146 75.1945 36.1125 75.2034 37.324C75.2124 38.5356 74.9817 39.737 74.5248 40.8591C74.0678 41.9812 73.3936 43.0019 72.5408 43.8626L69.6374 46.8091C67.9386 48.543 66.9945 50.8783 67.011 53.3056L67.0419 57.4842C67.0599 59.9222 66.1086 62.2676 64.3974 64.0043C62.6862 65.7411 60.3551 66.7269 57.917 66.7449L53.7385 66.7757C51.3112 66.7951 48.99 67.7736 47.2815 69.4979L44.3781 72.4444C43.5302 73.3099 42.5195 73.9991 41.4043 74.4726C40.289 74.9461 39.0912 75.1944 37.8796 75.2034C36.6681 75.2123 35.4667 74.9817 34.3446 74.5248C33.2225 74.0678 32.2017 73.3936 31.3411 72.5408L28.3945 69.6374C26.6607 67.9386 24.3253 66.9944 21.898 67.011L17.7195 67.0419Z");
}
.area-kits .container ul a .main .area-img .save b {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .area-img .save {
    right: 0;
  }
}
.area-kits .container ul a .main .area-img img {
  height: 267px;
  position: relative;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .area-img img {
    height: auto;
  }
}
.area-kits .container ul a small {
  color: currentColor;
}
.area-kits .container ul a .price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .price {
    font-size: 14px;
  }
}
.area-kits .container ul a .price strong {
  color: #0b3c5d;
  font-size: 64px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: -6px;
  display: flex;
}
.area-kits .container ul a .price strong small {
  font-size: 18px;
  padding-top: 10px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .price strong {
    font-size: 40px;
  }
}
@media (max-width: 370px) {
  .area-kits .container ul a .price strong {
    font-size: 30px;
  }
}
.area-kits .container ul a ul {
  grid-template-columns: repeat(1, 1fr);
  gap: 4px;
  text-align: left;
  width: 100%;
  margin-bottom: 12px;
}
.area-kits .container ul a ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  font-size: 16px;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-weight: 500;
}
.area-kits .container ul a ul li::before {
  content: url(../../assets/img/checkverde.svg);
}
.area-kits .container ul a ul li.orrivi::before {
  content: url(../../assets/img/checkvermelho.svg);
}
.area-kits .container ul a ul li.morromeno::before {
  content: url(../../assets/img/chekamarelo.svg);
}
@media (max-width: 900px) {
  .area-kits .container ul a ul li {
    font-size: 12px;
    display: flex;
    gap: 8px;
    margin-left: 0;
  }
}
@media (max-width: 370px) {
  .area-kits .container ul a ul li {
    font-size: 14px;
  }
}
.area-kits .container ul a .footer {
  padding: 0 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area-kits .container ul a .footer ul li {
  text-align: start;
  display: flex;
  gap: 8px;
  font-size: 14px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .footer {
    padding: 16px 10px 20px;
  }
}
.area-kits .container ul a .footer .buy-cta {
  margin-bottom: 20px;
}
.area-kits .container ul .best-option a {
  border: 2px solid #2ecc40;
  background: #e9ffee;
}
.area-kits .container ul .best-option a::after {
  background: #2ecc40;
}
.area-kits .container ul .best-option a .header {
  color: #fff;
  background: #2ecc40;
}
.area-kits .container ul .best-option a .price strong {
  font-size: 80px;
  color: #0b3c5d;
}
@media (max-width: 900px) {
  .area-kits .container ul .best-option a .price strong {
    font-size: 40px;
  }
}
.area-kits .container ul .best-option a .main .area-img .save {
  right: 5%;
}
.area-kits .container ul .best-option a ul {
  gap: 12px;
  margin-bottom: 20px;
}
.area-kits .container ul .best-option a ul li {
  font-weight: 500;
  background: rgba(204, 225, 233, 0.4);
  padding: 10px 12px;
  color: #0b3c5d;
  border-radius: 50px;
}
@media (max-width: 900px) {
  .area-kits .container ul .best-option a ul li {
    font-size: 12px;
  }
  .area-kits .container ul .best-option a ul li img {
    width: 24px;
  }
}
.area-kits .container ul .best-option a .placeholder {
  border-color: rgba(11, 60, 93, 0.2);
  background: rgba(11, 60, 93, 0.03);
}
.area-kits .container ul .best-option a .divider {
  border-color: rgba(11, 60, 93, 0.15);
}
.area-kits .container ul .k3 a {
  border-radius: 20px;
  border-bottom: 3px solid #0b3c5d;
  background: #eaf9ff;
}
.area-kits .container ul .k3 ul {
  gap: 12px;
  margin-bottom: 20px;
}
.area-kits .container ul .k3 ul li {
  font-weight: 500;
  background: rgba(204, 225, 233, 0.4);
  padding: 10px 12px;
  color: #0b3c5d;
  border-radius: 50px;
}
@media (max-width: 900px) {
  .area-kits .container ul .k3 ul li {
    font-size: 12px;
  }
  .area-kits .container ul .k3 ul li img {
    width: 24px;
  }
}
.area-kits .container ul .k1 a {
  border-radius: 20px;
  border-bottom: 3px solid #0b3c5d;
  background: #eaf9ff;
}
.area-kits .container ul .k1 ul {
  gap: 12px;
  margin-bottom: 20px;
}
.area-kits .container ul .k1 ul li {
  font-weight: 500;
  background: rgba(204, 225, 233, 0.4);
  padding: 10px 12px;
  color: #0b3c5d;
  border-radius: 50px;
}
@media (max-width: 900px) {
  .area-kits .container ul .k1 ul li {
    font-size: 12px;
  }
  .area-kits .container ul .k1 ul li img {
    width: 24px !important;
  }
}
@media (max-width: 900px) {
  .area-kits .container ul .k1 .area-img {
    padding-top: 10px !important;
  }
}
@media (max-width: 900px) {
  .area-kits .container ul .best-option {
    grid-row: 1;
  }
  .area-kits .container ul .k3 {
    grid-row: 2;
  }
}

.guarantee {
  background: linear-gradient(135deg, #0d4a6b 0%, #0b3c5d 50%, #093248 100%);
  padding: 10px 0;
  position: relative;
  overflow: visible;
}
.guarantee .container {
  display: flex;
  align-items: center;
  gap: 33px;
}
@media (max-width: 680px) {
  .guarantee .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.guarantee__img {
  flex: 0 0 auto;
  position: relative;
  z-index: 10;
}
.guarantee__img img {
  max-width: none;
  width: 100%;
  max-width: 600px;
  margin-top: -115px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}
@media (max-width: 680px) {
  .guarantee__img img {
    margin-top: 20px;
    margin-bottom: -40px;
    max-width: 100%;
  }
}
.guarantee__content {
  flex: 1;
}
@media (max-width: 680px) {
  .guarantee__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.guarantee__content h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 680px) {
  .guarantee__content h2 {
    text-align: center;
  }
}
.guarantee__content p {
  color: #e4f4ff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.guarantee__content p a {
  color: #00c2ff;
}
.guarantee__content p a:hover {
  color: #19b4e4;
}
.guarantee__content .btn {
  max-width: 320px;
}
@media (max-width: 680px) {
  .guarantee__content .btn {
    margin-bottom: 40px;
  }
}

.faq {
  background: linear-gradient(180deg, #e5f5ff 0%, #fff 100%);
  padding-top: 73px;
}
.faq .container {
  max-width: 934px !important;
}
.faq .container > span {
  color: #00c2ff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.faq .faq-header {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
.faq .faq-watermark {
  font-size: 120px;
  font-weight: 900;
  color: rgba(11, 60, 93, 0.09);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  letter-spacing: 4px;
}
.faq .title {
  text-align: center;
  color: #0b3c5d;
  margin: 0;
  margin-top: -45px;
  font-size: 40px;
  font-weight: 800;
}
.faq .days_gua {
  color: #00c2ff;
}
.faq .accordion {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}
.faq .item {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.faq .item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.faq .item .header {
  border-radius: 8px;
  background: #e4f4ff;
  border: 1px solid rgba(47, 27, 82, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px;
  transition: all 0.3s ease;
}
.faq .item .header:hover {
  transform: translateY(-10px);
}
@media (max-width: 900px) {
  .faq .item .header {
    padding: 16px;
  }
}
.faq .item .header p {
  font-weight: 500;
  color: #0b3c5d;
  font-size: 24px;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 900px) {
  .faq .item .header p {
    font-size: 18px;
  }
}
.faq .item .header::after {
  content: "+";
  transition: all 0.4s ease;
  font-size: 28px;
  font-weight: 400;
  color: #0b3c5d;
}
.faq .item .body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 12px;
  background: #fff;
}
.faq .item .body p,
.faq .item .body li,
.faq .item .body p b {
  text-align: left;
  font-size: 16px;
  margin-bottom: 16px;
  color: #0b3c5d;
}
@media (max-width: 900px) {
  .faq .item .body p,
  .faq .item .body li,
  .faq .item .body p b {
    font-size: 16px;
  }
}
.faq .item .body a {
  text-decoration: underline;
}
.faq .item .body li {
  list-style: "✔";
  margin-left: 20px;
}
.faq .item .body img {
  margin: 20px auto;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.faq .item.active .header {
  background-color: #0b3c5d;
}
.faq .item.active .header::after {
  content: "-";
  color: #00c2ff;
}
.faq .item.active .header {
  border-radius: 8px 8px 0 0;
}
.faq .item.active .header p {
  color: #fff;
}
.faq .item.active .body {
  padding-top: 20px;
  padding-bottom: 20px;
  max-height: 600px;
  overflow: auto;
}
.faq .btn {
  margin-bottom: 35px;
}

.site-footer .footer-main {
  background: linear-gradient(180deg, #0e4564 0%, #0b3c5d 100%);
  padding: 60px 0 40px;
  text-align: center;
  margin-top: 30px;
}
.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.site-footer .footer-brand .footer-logo {
  max-width: 230px;
}
.site-footer .footer-brand .footer-name {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0;
}
.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.site-footer .footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.site-footer .footer-nav a:hover {
  color: #fff;
}
.site-footer .footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 32px;
}
.site-footer .footer-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}
.site-footer .footer-bottom {
  background: linear-gradient(to right, #0b3c5d, #1a5276, #2c6991, #1a5276, #0b3c5d);
  padding: 20px 0;
  text-align: center;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
.site-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
  font-weight: 500;
}
.site-footer .footer-bottom p:first-child {
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}/*# sourceMappingURL=style.css.map */