.menu-icon-mobile {
  width: 32px;
  height: 29px;
  -webkit-tap-highlight-color: transparent;
}

.hero-mark {
  background-color: #ffffff;
}

.header {
  background: linear-gradient(90deg, #090400, #05142d);
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  position: fixed;
  width: 100%;
  z-index: 2;
}

@media (min-width: 768px) {
  .header {
    justify-content: center;
  }

  .header-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

.header-menu,
.close-btn {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  background: linear-gradient(90deg, #090400, #05142d);
  height: 85vh;
  padding: 100px 18px;
  text-align: center;
  place-content: center;
}

@media (min-width: 820px) {
  .hero {
    display: flex;
    align-items: center;
    height: 80vh;
  }

  .hero-img-container {
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .hero {
    display: flex;
    height: 75vh;
  }
}

@media (min-width: 1920px) {
  .hero {
    height: 85vh;
  }
}

@media (min-width: 1366px) {
  .hero {
    gap: 135px;
  }
}

@media (max-width: 768px) {
  .hero-img-container {
    display: none;
  }
}

.hero-img {
  max-width: 338px;
  height: 338px;
}

.hero-title {
  color: #ffffff;
  margin: 0 auto;
  text-align: center;
  max-width: 355px;
  line-height: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 3s ease-out forwards;
}

@media (min-width: 820px) {
  .hero-title {
    max-width: 450px;
    font-size: 2rem;
    line-height: 3.1rem;
    text-align: left;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-highlight {
  color: #13678a;
}

.hero-subtitle {
  color: #ffffff;
  text-align: center;
  margin: 60px auto;
  font-size: 1.125rem;
  max-width: 318px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@media (min-width: 1920px) {
  .hero-subtitle {
    max-width: 400px;
  }
}

@media (min-width: 820px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 40px;
  }

  .hero-title {
    margin: 12px 0px;
    line-height: 2.5rem;
  }

  .hero-subtitle {
    text-align: left;
    margin: 0;
  }
}

.main-button {
  width: 300px;
  height: 60px;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(
    to right,
    #13678a,
    #25bbf9,
    #51b4ec,
    #7de1ff
  );
  cursor: pointer;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 600;
  background-size: 150% 100%;

  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.main-button:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #090400;
}

.benefits {
  background: linear-gradient(90deg, #0c1201, #01586a);
}

.benefits-title {
  color: #ffffff;
  margin: 24px auto;
  max-width: 382px;
  padding-top: 24px;
}

.benefits-mark {
  background-color: #4996bd;
  color: #ffffff;
}

.benefits-btn-container {
  text-align: center;
  padding-bottom: 24px;
}

@media (min-width: 820px) {
  .benefits-btn-container {
    padding-top: 24px;
  }
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

@media (min-width: 768px) {
  .cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 18px;
    justify-items: center;
  }
}

@media (min-width: 1024px) {
  .cards-container {
    padding-inline: 100px;
  }
}

.cards-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.card, .service-card {
  max-width: 384px;
  height: 220px;
  padding: 35px 34px;
  border-radius: 8px;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
}

@media (max-width: 819px) {
  .card {
    margin-bottom: 18px;
  }
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title {
  font-size: 1rem;
  font-weight: bold;
  color: #1e1e1e;
  max-width: 294px;
  margin: 0;
}

.card-text {
  font-weight: 400;
  line-height: 1.5rem;
  color: #4f5d64;
}

@media (max-width: 767px) {
  .card-text {
    margin-top: 30px;
  }
}

.heading {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.advantages-title {
  max-width: 350px;
  margin: 24px auto;
}

.advantages-text {
  line-height: 1.4rem;
}

.advantages-container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media (min-width: 1024px) {
  .advantages-container {
    max-width: 610px;
    margin: 0 auto;
  }
}

@media (min-width: 1366px) {
  .advantages-container {
    max-width: 790px;
  }

  .advantages-title {
    max-width: 650px;
  }

  .benefits-title {
    max-width: 510px;
  }
}

.advantages-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.advantages-highlight {
  color: #ffffff;
}

.advantages-mark {
  background-color: #1e1e1e;
}

.advantages-container {
  padding-inline: 18px;
}

.advantages-btn-container {
  text-align: center;
}

.about {
  background: linear-gradient(90deg, #090400, #05142d);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .about-content {
    align-items: center;
    gap: 22px;
  }
}

.about-title {
  padding-top: 24px;
}

.about-mark {
  background-color: #ffffff;
  color: #1e1e1e;
}

.profile-picture {
  max-width: 346px;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .profile-picture {
    height: 240px;
  }
}

.about-text {
  max-width: 341px;
  line-height: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.faq {
  background: linear-gradient(90deg, #05142d, #13678a);
}

.faq-title {
  padding-top: 24px;
  margin-top: -1px;
}

.faq-mark {
  background-color: #ffffff;
  color: #1e1e1e;
}

.faq-text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  max-width: 404px;
  text-align: center;
  margin: 0 18px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .faq-text {
    margin: 0 auto;
  }
}

.faq-btn-container, .services-btn-container {
  text-align: center;
  padding: 24px;
}

.services-btn-container {
  margin-top: 24px;
}

.timer-cta {
  background: linear-gradient(90deg, #9a9a9a, #ffffff);
}

.timer-cta-title {
  margin-top: 0;
  padding-top: 24px;
}

.timer-cta-mark {
  background-color: #4996bd;
  color: #ffffff;
}

.timer-cta-text {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.timer-cta-btn-container {
  text-align: center;
  padding-bottom: 24px;
}

.footer-container {
  background: linear-gradient(90deg, #090400, #05142d);
  height: auto;
  padding-top: 33px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-container {
    display: block;
    text-align: center;
  }
}

.footer-logo {
  width: 180px;
}

.social-media-container {
  text-align: center;
  padding: 24px;
}

.social-media-text {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-copyright-text {
  color: #ffffff;
  text-align: center;
  font-size: 0.775rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Accordion Styles */
.accordion {
  max-width: 500px;
  margin: 0 18px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .accordion {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .card-heading {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .card {
    display: flex;
    flex-direction: column;
    max-width: 380px;
    padding: 35px;
    justify-content: space-between;
  }

  .card-title {
    max-width: 294px;
    margin: 0;
  }

  .cards-container {
    display: flex;
  }
}

@media (min-width: 1366px) {
  .accordion {
    max-width: 730px;
  }

  .faq-text {
    max-width: 470px;
  }

  .card-heading {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .card {
    display: flex;
    flex-direction: column;
    max-width: 380px;
    justify-content: space-between;
  }

  .card-title {
    max-width: 294px;
    margin: 0;
  }

  .cards-container {
    display: flex;
  }
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.accordion input {
  display: none;
}

.accordion-label {
  display: block;
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  color: #ffffff;
}

.accordion-label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion-label::after {
  content: url("../img/arrow-down.svg");
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease;
}

.accordion input:checked + .accordion-label::after {
  transform: rotate(180deg);
  margin-top: -5px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1rem;
  transition: all 0.5s ease;
}

.accordion-content p {
  color: #ffffff;
  line-height: 1.6rem;
}

.accordion input:checked ~ .accordion-content {
  max-height: 300px;
  opacity: 1;
  padding: 1rem;
  padding-top: 0;
}

/* SIDE MENU */

/* menu lateral inicial */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px; /* escondido fora da tela */
  width: 300px;
  height: 100%;
  background: #05142d;
  color: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  padding: 2rem 1rem;
  transition: right 0.4s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  right: 0;
}

.side-menu a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M14 3h7v7h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3z'/%3E%3C/svg%3E");
  display: inline-block;
  margin-left: 4px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

/* animação leve ao hover */
.side-menu a:hover::after {
  transform: translate(2px, -2px);
  opacity: 1;
}

.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 2rem;
  margin-top: -22px;
  font-size: 2rem;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  opacity: 0;
  transform: translateX(20px);
  margin: 1.6rem 0;
  font-weight: 500;
  font-size: 1.125rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-items li:hover {
  color: #7de1ff;
}

.side-menu.open .menu-items li {
  opacity: 1;
  transform: translateX(0);
}

.side-menu.open .menu-items li:nth-child(1) {
  transition-delay: 0.3s;
}
.side-menu.open .menu-items li:nth-child(2) {
  transition-delay: 0.4s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.ads-slider-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .ads-slider-wrapper {
    max-width: 250px;
  }
}

@media (min-width: 1920px) {
  .ads-slider-wrapper {
    max-width: 800px;
  }
}

.ads-imgs {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.ads-imgs::-webkit-scrollbar {
  display: none;
}

.ads-imgs img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(20%);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.ads-imgs img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Botões */
.ads-prev,
.ads-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #05142d;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s ease;
  z-index: 1;
}
.ads-prev:hover,
.ads-next:hover {
  background: #13678a;
}
.ads-prev {
  left: -60px;
}
.ads-next {
  right: -60px;
}

.services {
  background: linear-gradient(90deg, #0c1201, #01586a);
}

.services-container {
  padding: 12px 0 30px 0;
}

.services-title {
  color: #ffffff;
  line-height: 1.9rem;
  margin: 18px;
}

.services-title mark {
  background-color: #000;
  color: #ffffff;
}

.services-text {
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  margin: 18px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card img {
  margin-top: 16px;
}

.service-card-title, .service-card-text {
  color: #1e1e1e;
}

.service-card-title {
  font-weight: bold;
}

.service-card-text {
  margin-top: 0;
  margin-bottom: 16px;
  color: #4f5d64;
  line-height: 1.5rem;
}
