* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f6fbff;
  color: #102033;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;

  background: rgba(255,255,255,0.72);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255,255,255,0.25);

  box-shadow:
    0 8px 32px rgba(15,23,42,0.08);
}

.navbar {
  max-width: 1400px;
  margin: auto;

  min-height: 74px;

  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE LOGO */

.mobile-logo {
  display: none;
}

.mobile-logo img {
  width: 145px;
  display: block;
}

/* MENU */

.menu {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 32px;

  list-style: none;
}

.menu a {
  color: #102033;

  text-decoration: none;

  font-weight: bold;

  font-size: 15px;

  transition: 0.3s;
}

.menu a:hover {
  color: #0ea5e9;
}

/* HERO */

.hero {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(188,188,188,0.8),
      rgba(36,36,36,0.4)
    ),
    url("img/fundo-h3ro.png")
    center/cover fixed;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 115px 20px 55px;
}

.hero-content {
  max-width: 820px;
}

.hero-logo {
  width: 560px;
  max-width: 100%;

  margin-bottom: 10px;

  filter:
    drop-shadow(
      0 15px 23px
      rgba(108,108,108,0.9)
    );
}

.hero h1 {
  font-size: 44px;

  line-height: 1.1;

  margin-bottom: 18px;

  color: #f5f5f5;
}

.hero p {
  color: #bfdeff;

  font-size: 17px;

  line-height: 1.7;
}

/* BOTÕES */

.buttons {
  margin-top: 28px;

  display: flex;
  justify-content: center;

  gap: 14px;

  flex-wrap: wrap;
}

.btn {
  padding: 13px 22px;

  border-radius: 14px;

  text-decoration: none;

  font-weight: bold;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  transition: 0.3s;
}

.whatsapp-btn img {
  width: 22px;
  height: 22px;

  animation: piscarLogo 1.2s infinite;
}

.primary {
  background: #25d366;
  color: #03120a;

  box-shadow:
    0 12px 30px
    rgba(37,211,102,0.28);
}

.primary:hover {
  transform: translateY(-5px);

  background: #1ebe5d;
}

.secondary {
  border: 1px solid #0ea5e9;

  color: #0284c7;

  background: #ffffff;
}

.secondary:hover {
  background: #0ea5e9;
  color: #ffffff;

  transform: translateY(-5px);
}

/* SECTION */

.section {
  max-width: 1150px;
  margin: auto;

  padding: 70px 20px;
}

.section-title {
  text-align: center;

  margin-bottom: 38px;
}

.section-title span {
  color: #0284c7;
  font-weight: bold;
}

.section-title h2 {
  font-size: 34px;

  margin-top: 8px;

  color: #504d4d;

  font-style: italic;
}

/* CARDS */

.cards {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.card {
  background: #ffffff;

  padding: 24px;

  border-radius: 22px;

  border:
    1px solid
    rgba(14,165,233,0.12);

  box-shadow:
    0 18px 40px
    rgba(15,23,42,0.08);

  transition: 0.3s;
}

.card:hover {
  transform:
    translateY(-8px)
    scale(1.01);

  border-color: #0ea5e9;

  box-shadow:
    0 22px 55px
    rgba(14,165,233,0.18);
}

.icon {
  font-size: 34px;

  margin-bottom: 16px;
}

.card h3 {
  font-size: 19px;

  margin-bottom: 10px;

  color: #0f172a;
}

.card p {
  color: #475569;

  line-height: 1.6;

  font-size: 15px;
}

/* BANNER */

.banner {
  min-height: 260px;

  background-position: center;
  background-size: cover;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 40px 20px;

  position: relative;
}

.banner::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(218,218,218,0.8),
      rgba(54,54,54,0.45)
    );
}

.banner div {
  position: relative;

  max-width: 760px;
}

.banner h2 {
  font-size: 34px;

  margin-bottom: 12px;

  color: #ffffff;
}

.banner p {
  color: #bfdeff;

  font-size: 16px;
}

.banner-one {
  background-image:
    url("img/fund0-her0.png");
}

.banner-two {
  background-image:
    url("img/fundo-hero.jpg");
}

/* CARROSSEL */

.carousel-card {
  max-width: 780px;

  margin: auto;

  background: #ffffff;

  padding: 16px;

  border-radius: 28px;

  position: relative;

  box-shadow:
    0 25px 70px
    rgba(15,23,42,0.14);

  border:
    1px solid
    rgba(14,165,233,0.12);
}

.carousel {
  position: relative;

  overflow: hidden;

  border-radius: 22px;
}

.carousel img {
  width: 100%;
  height: 440px;

  object-fit: cover;

  display: block;

  transition: 0.4s ease;
}

.carousel-info {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 18px;

  padding: 16px;

  border-radius: 18px;

  background:
    rgba(255,255,255,0.9);

  backdrop-filter: blur(10px);

  color: #0f172a;
}

.carousel-info h3 {
  font-size: 20px;

  margin-bottom: 6px;
}

.carousel-info p {
  color: #475569;

  line-height: 1.5;

  font-size: 14px;
}

.carousel-btn {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  width: 48px;
  height: 48px;

  border: none;

  border-radius: 50%;

  background: #0ea5e9;

  color: white;

  font-size: 24px;

  cursor: pointer;

  transition: 0.3s;
}

.carousel-btn:hover {
  background: #0284c7;

  transform:
    translateY(-50%)
    scale(1.08);
}

.prev {
  left: -22px;
}

.next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;

  gap: 8px;

  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #bfdbfe;

  cursor: pointer;

  transition: 0.3s;
}

.carousel-dot.active {
  width: 24px;

  border-radius: 20px;

  background: #0ea5e9;
}

/* REVIEWS */

.reviews {
  display: grid;

  max-width: 420px;

  margin: auto;
}

.review {
  background: #ffffff;

  padding: 24px;

  border-radius: 22px;

  border:
    1px solid
    rgba(14,165,233,0.12);

  box-shadow:
    0 18px 40px
    rgba(15,23,42,0.12);

  transition: 0.3s;
}

.review:hover {
  transform: translateY(-8px);

  border-color: #facc15;
}

.stars {
  color: #f59e0b;

  font-size: 20px;

  letter-spacing: 2px;

  margin-bottom: 14px;
}

.review p {
  color: #334155;

  line-height: 1.7;

  margin-bottom: 18px;

  font-size: 15px;
}

.review h4 {
  color: #0284c7;
}

/* CONTACT */

.contact {
  max-width: 1000px;

  margin: 35px auto 70px;

  padding: 55px 25px;

  text-align: center;

  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.96),
      rgba(219,234,254,0.96)
    ),
    url("img/logo-escura.png")
    center/340px no-repeat;

  border:
    1px solid
    rgba(14,165,233,0.12);

  box-shadow:
    0 25px 70px
    rgba(15,23,42,0.12);
}

.contact h2 {
  font-size: 34px;

  margin-bottom: 14px;

  color: #0f172a;
}

.contact p {
  color: #334155;

  font-size: 16px;

  margin-bottom: 28px;
}

/* WHATSAPP */

.whatsapp {
  position: fixed;

  right: 18px;
  bottom: 18px;

  width: 58px;
  height: 58px;

  background: #25d366;

  border-radius: 50%;

  display: grid;
  place-items: center;

  text-decoration: none;

  box-shadow:
    0 10px 35px
    rgba(37,211,102,0.45);

  z-index: 999;

  animation: pulse 1.6s infinite;
}

.whatsapp img {
  width: 32px;
  height: 32px;

  animation:
    piscarLogo 1.2s infinite;
}

@keyframes pulse {

  0% {
    box-shadow:
      0 0 0 0
      rgba(37,211,102,0.55);
  }

  70% {
    box-shadow:
      0 0 0 18px
      rgba(37,211,102,0);
  }

  100% {
    box-shadow:
      0 0 0 0
      rgba(37,211,102,0);
  }

}

@keyframes piscarLogo {

  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(1.12);
  }

}

/* FOOTER */

footer {
  text-align: center;

  padding: 24px 20px;

  color: #64748b;

  background: #ffffff;

  border-top:
    1px solid
    rgba(14,165,233,0.12);

  font-size: 14px;
}

/* ANIMAÇÕES */

.animar {
  opacity: 0;

  transform: translateY(45px);

  transition: 0.8s ease;
}

.animar.mostrar {
  opacity: 1;

  transform: translateY(0);
}

/* RESPONSIVO */

@media (max-width: 980px) {

  .cards {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-logo {
    width: 470px;
  }

}

@media (max-width: 650px) {

  .navbar {
    justify-content: center;

    min-height: 68px;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    display: none;
  }

  .hero {
    padding: 105px 18px 50px;

    background-attachment: scroll;
  }

  .hero-logo {
    width: 330px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 58px 18px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .carousel img {
    height: 310px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;

    font-size: 20px;
  }

  .prev {
    left: 8px;
  }

  .next {
    right: 8px;
  }

  .carousel-info {
    left: 10px;
    right: 10px;
    bottom: 10px;

    padding: 12px;
  }

  .carousel-info h3 {
    font-size: 17px;
  }

  .carousel-info p {
    font-size: 13px;
  }

  .section-title h2,
  .banner h2,
  .contact h2 {
    font-size: 28px;
  }

  .banner {
    background-attachment: scroll;
  }

}