* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  font-size: 16px;
}

:root {
  --color1: #2274d1;
  --color2: #ff0000;
  --color3: #ffd700;
  --color4: #c62828;
  --color5: #1a5ba0;
  --color6: #f9f9f9;
  --color7: #333333;
  --color8: #555555;
  --color9: #666666;
  --color10: #999999;
  --bcolor: black;
  --wcolor: white;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: var(--color6);
}

/* HEADER */
header {
  background: var(--color7);
  color: var(--wcolor);
  padding: 0.5rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
}

/* LOGO E TEXTO */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  width: auto;
  height: 3rem;
}

.navbar-title {
  font-family: "UnifrakturMaguntia", sans-serif;
  font-size: 1.5rem;
  color: var(--wcolor);
  white-space: nowrap;
}

/* NAVEGAÇÃO */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
}

.nav-list li a {
  color: var(--wcolor);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: var(--color1);
}

/* MENU HAMBURGUER */
.menu-toggle {
  display: none;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  right: 1rem;
  z-index: 1100;
}

.menu-toggle img {
  width: 2rem;
  height: 2rem;
}

/* HERO */
#hero {
  background: var(--bcolor);
  color: var(--wcolor);
  padding: 2% 10%;
  text-align: center;
  margin-top: 3.5rem;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 90%;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  text-align: center;
  max-width: 40rem;
}

.hero-content h1 {
  font-size: 2rem;
  margin: 1rem 0;
  line-height: 1.4;
}

.cta-button {
  max-width: 70%;
  background: var(--color2);
  color: var(--wcolor);
  border: none;
  padding: 0.8rem 1.5rem;
  margin: 3rem auto 2rem auto;
  font-size: 1.5rem;
  border-radius: 3rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 0 10px var(--color2), 0 0 20px var(--color2);
  animation: pulse 2s infinite;
}

.cta-button:hover {
  background: var(--color4);
  box-shadow: 0 0 20px var(--color4), 0 0 30px var(--color4);
}

.hero-image {
  flex: 1;
  max-width: 25rem;
  padding: 2% 0;
}

.hero-image img {
  max-width: 100%;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.5);
}

.hero-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 80rem;
  margin: 2rem auto;
  list-style: none;
  padding: 0;
}

.hero-icons li {
  text-align: center;
  max-width: 12.5rem;
}

.hero-icons li .circle {
  background-color: var(--color1);
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: transform 0.3s ease;
}

.hero-icons li .circle:hover {
  transform: rotate(15deg);
}

.hero-icons li .circle img {
  width: 60%;
  height: auto;
}

.hero-icons li h3 {
  color: var(--wcolor);
  font-size: 1.25rem;
}

/* VANTAGENS */
#vantagens {
  text-align: center;
  padding: 2% 10%;
}

#vantagens h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

#vantagens h3 {
  font-size: 1.8rem;
}

#vantagens p {
  font-size: 1.4rem;
  max-width: 80%;
  margin: 0 auto;
}

#vantagens ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto;
  max-width: 80%;
  list-style: none;
  padding: 0;
}

#vantagens ul li {
  flex: 1 1 30%;
  max-width: 30rem;
  text-align: center;
}

#vantagens ul li img {
  width: 18rem;
  height: auto;
  margin-bottom: 1rem;
}

/* CONTEÚDO */
#conteudo {
  background: var(--bcolor);
  color: var(--wcolor);
  padding: 2% 10%;
  text-align: center;
}

#conteudo h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

#conteudo .highlight {
  color: var(--color1);
}

#conteudo p {
  font-size: 1.25rem;
}

.conteudo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 1rem auto;
  max-width: 80%;
  list-style: none;
  padding: 0;
}

.conteudo-item {
  text-align: center;
  flex: 1 1 calc(33.333% - 2rem);
  max-width: 20rem;
}

.conteudo-item img {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  margin-bottom: 1rem;
}

.conteudo-item p {
  font-size: 1.25rem;
  color: var(--wcolor);
}

/* DÚVIDAS */
#duvidas {
  padding: 2% 8%;
  text-align: center;
}

#duvidas h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#duvidas .highlight {
  color: var(--color1);
}

#duvidas p {
  font-size: 1.5rem;
  color: var(--color8);
  margin-bottom: 2rem;
  max-width: 100%;
  margin: 0 auto 2rem auto;
}

.duvidas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.duvida-item {
  text-align: center;
  flex: 1 1 calc(33.333% - 2rem);
  max-width: 25rem;
}

.duvida-item img {
  width: 4.5rem;
  height: auto;
  margin-bottom: 1rem;
}

.duvida-item p {
  font-size: 1.2rem;
  color: var(--color8);
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
}

/* MERCADO */
#mercado {
  text-align: center;
  padding: 2% 10%;
  background-color: var(--bcolor);
  color: var(--wcolor);
}

#mercado h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

#mercado p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

#mercado ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1%;
  margin: 0 auto;
  max-width: 90%;
  list-style: none;
  padding: 0;
}

#mercado ul li {
  flex: 1 1 30%;
  text-align: center;
}

#mercado ul li img {
  width: 30rem;
  height: auto;
}

/* PROVA SOCIAL */
#prova-social {
  padding: 2% 10%;
  text-align: center;
}

#prova-social h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.depoimentos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.depoimento-item {
  text-align: center;
  flex: 1 1 calc(33.333% - 2rem);
  max-width: 30rem;
  position: relative;
}

.depoimento-item img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.depoimento-texto {
  background: var(--wcolor);
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 1.2rem;
  color: var(--color8);
  line-height: 1.5;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  text-align: center;
  position: relative;
  border: 1px solid #e0e0e0;
}

.depoimento-texto:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 20%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent var(--wcolor) transparent;
  box-shadow: none;
}

/* OPORTUNIDADE */
#oportunidade {
  background: var(--bcolor);
  color: var(--wcolor);
  padding: 2%;
  text-align: center;
}

.oportunidade-container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.oportunidade-text {
  flex: 1;
  text-align: center;
  max-width: 70%;
}

.oportunidade-text h2 {
  font-size: 2.5rem;
  margin-top: 1rem;
  color: var(--wcolor);
}

.oportunidade-text .highlight {
  color: var(--color1);
}

.oportunidade-text p {
  margin: 1.5rem 0;
  line-height: 1.8;
  font-size: 1.4rem;
}

#oportunidade ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  text-align: center;
}

#oportunidade ul li {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--wcolor);
}

.oportunidade-text .preco-riscado {
  text-decoration: line-through;
  color: var(--color10);
  font-size: 1.5rem;
}

.oportunidade-text .destaque-preco {
  font-size: 2rem;
  color: var(--color1);
  font-weight: bold;
}

.oportunidade-text button {
  background: var(--color2);
  color: var(--wcolor);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  margin: 1.5rem auto;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 0 15px var(--color4), 0 0 25px var(--color4);
}

.oportunidade-text button:hover {
  background: var(--color4);
  box-shadow: 0 0 25px var(--color4), 0 0 35px var(--color4);
}

.formas-pagamento img {
  max-width: 80%;
  height: auto;
  margin: auto;
}

/* CONTADOR */
.timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 2rem 0;
}

.timer div {
  text-align: center;
  background: var(--color7);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  color: var(--color2);
}

.timer span {
  display: block;
  font-size: 3rem;
  color: var(--color2);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  background: var(--color7);
  color: var(--color6);
  font-size: 0.7rem;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  color: var(--color4);
}

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--color2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--color2), 0 0 20px var(--color2);
  animation: pulse 2s infinite;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s ease-in-out;
}

.sticky-cta img {
  width: 50%;
  height: auto;
}

.sticky-cta:hover {
  background-color: var(--color4);
  box-shadow: 0 0 10px var(--color4), 0 0 20px var(--color4);
}

/* ANIMAÇÃO */
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px var(--color4), 0 0 20px var(--color4);
  }
  50% {
    box-shadow: 0 0 20px var(--color4), 0 0 40px var(--color4);
  }
  100% {
    box-shadow: 0 0 10px var(--color4), 0 0 20px var(--color4);
  }
}

/* MEDIA QUERIES */

@media screen and (max-width: 1280px) {
  #garantia {
    flex-direction: column;
    padding: 5%;
  }

  .garantia-container {
    flex-direction: column;
    width: 100%;
    gap: 2rem;
  }

  .garantia-text {
    max-width: 90%;
    margin-bottom: 1rem;
  }

  .garantia-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  #certificado {
    flex-direction: column;
    padding: 5%;
  }

  .certificado-container {
    flex-direction: column-reverse;
    width: 100%;
    gap: 2rem;
  }

  .certificado-text {
    max-width: 90%;
    margin-bottom: 1rem;
  }

  .certificado-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  #oportunidade {
    padding: 5% 5%;
  }

  .oportunidade-container {
    max-width: 100%;
    gap: 2rem;
  }

  .oportunidade-text {
    max-width: 90%;
  }

  .formas-pagamento img {
    max-width: 100%;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  html,
  body {
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 5rem;
    right: 0;
    background: var(--color7);
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-list.active {
    display: flex;
  }

  #vantagens ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 90%;
  }

  #vantagens ul li {
    flex: 1 1 calc(33.33% - 2rem);
    max-width: 20rem;
  }

  #vantagens ul li img {
    width: 12rem;
  }

  .conteudo-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.5rem);
  }

  .conteudo-grid {
    gap: 1.5rem;
  }

  .conteudo-item img {
    width: 100%;
    height: auto; /* Mantém a proporção */
  }
}

@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
  }

  .hero-image {
    max-width: 20rem;
  }
  .hero-icons {
    gap: 1.5rem;
  }

  .hero-icons li {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }

  .cta-button {
    max-width: 90%;
  }

  .duvidas-grid {
    flex-direction: column;
  }

  .duvida-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .depoimentos-grid {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .depoimento-item {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 480px) {
  html,
  body {
    font-size: 12px;
  }

  .hero-image {
    display: none;
  }

  .conteudo-item {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }

  .conteudo-item img {
    width: 100%;
    height: auto;
  }

  .depoimentos-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .depoimento-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .depoimento-texto {
    text-align: left;
    padding: 1rem;
    margin: 0 auto;
  }
}

@media screen and (max-width: 320px) {
  html,
  body {
    font-size: 10px;
  }
}

/* Política de Privacidade */
.privacy-container {
  max-width: 800px;
  margin: 5rem auto 2rem;
  padding: 2rem;
  background: var(--wcolor);
  color: var(--color7);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.privacy-container h1 {
  text-align: center;
  font-size: 2rem;
  color: var(--color1);
  margin-bottom: 1rem;
}

.privacy-container h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: var(--color5);
}

.privacy-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color8);
}

.privacy-container strong {
  color: var(--color4);
}

/* Responsividade */
@media screen and (max-width: 768px) {
  .privacy-container {
    padding: 1.5rem;
    margin: 4rem 1rem;
  }

  .privacy-container h1 {
    font-size: 1.8rem;
  }

  .privacy-container h2 {
    font-size: 1.4rem;
  }

  .privacy-container p {
    font-size: 1.1rem;
  }
}
