* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #121212;       
  color: #e0e0e0;           
}

:root {
  --primary-color: #000208;   
  --secondary-color: #0039ae; 
  --highlight-shadow-color: #040033;
  --highlight-color:#0090ea;
  --accent-color: #1f1f1f;   
  --text-color: #e0e0e0;     
}

@keyframes fadeInHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInHero 1s ease-out forwards;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(0, 89, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 89, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 89, 255, 0.5);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);  
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);   
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Cabeçalho */
header {
  background-color: var(--primary-color);
  padding: 20px;
  text-align: center;
  color: var(--text-color);
}
header img {
  max-width: 150px;
  height: auto;
  vertical-align: middle;
}
header h1 {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 1.8rem;
}

/* HERO com imagem full screen responsiva */
#hero {
  position: relative;
  width: 100%;
  height: 80vh; 
  background-image: url('../assets/banner.jpg'); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.highlight{
  color: var(--highlight-color);
  text-shadow: var(--highlight-shadow-color) 1px 0 10px;
  font-weight: bold;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  text-align: left;
}

#hero h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-cta {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-btn {
  background: linear-gradient(135deg, #0039ae, #005eff);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 89, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}


.hero-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(0, 89, 255, 0.8);
  background: linear-gradient(135deg, #005eff, #0039ae);
}

/* Benefícios */

/* Título da seção */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 50px 10px 30px;
  color: var(--text-color);
}

/* Container de benefícios */
.benefits-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-bottom: 4rem;
}

.benefit-card {
  background-color: var(--accent-color);
  padding: 18px;
  border-radius: 10px;
  flex: 0 0 240px;
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-color);
}
.benefit-card svg {
  transition: transform 0.3s ease;
}

.benefit-card:hover svg {
  transform: scale(1.1);
}

/* Seção Parallax */
#parallax {
  height: 300px;
  background-image: url("../assets/background-modulo.png");
  background-attachment: fixed !important;
  background-position: center 73%;
  background-repeat: no-repeat;
  background-size:100%;
}

/* Call to Action */
.cta {
  text-align: center;
  margin: 30px 0;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
}

.ctaButton {
  margin-top: 2rem;
  background: linear-gradient(135deg, #0039ae, #005eff);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 89, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
  border: none; 
}
.ctaButton:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(0, 89, 255, 0.8);
  background: linear-gradient(135deg, #005eff, #0039ae);
}

/* Seções adicionais */

#uniquePoints{
  margin-top: 4rem;
}
#uniquePoints h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
  color: var(--text-color);
}

.grid-main{
  display: grid;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 90%;
  grid-template-rows: repeat(3,auto);
  grid-template-columns: repeat(2, minmax(400px,800px));
  column-gap: 3rem;
  row-gap: 1rem;
}
.unique-title{
  font-size: 2rem;
}
.first-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.first-image{
  display: flex;
  align-items: center;
  justify-content: center;
}

.first-image img{
  width: 100%;
  object-fit: cover;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  justify-self: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.second-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.second-image{
  display: flex;
  align-items: center;
  justify-content: center;
}

.second-image img{
  width: 100%;
  object-fit: cover;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  justify-self: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.third-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.third-image{
  display: flex;
  align-items: center;
  justify-content: center;
}
.third-image img{
  width: 100%;
  object-fit: cover;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  justify-self: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Mensagem de sucesso */
#successMessage {
  text-align: center;
  padding: 20px;
  color: var(--text-color);
}
.hidden {
  display: none;
}
/*Provas sociais*/
#revendedorTestimonials {
  padding: 0px 20px;
  background-color: var(--second-color);
  color: #e0e0e0;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #1A2738;
  border-radius: 16px;
  padding: 24px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #005eff;
}

.testimonial-person h4 {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.testimonial-person small {
  color: #8E9EAD;
  font-size: 0.85rem;
}
/*CTA FINAL*/
#lastCta {
  margin: 4rem auto;
  width: 100%;
  max-width: 1200px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "image title"
    "sub sub"
    "button button";
  gap: 1rem;
}

.cta-img {
  grid-area: image;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-img img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);

}

.cta-title {
  grid-area: title;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-title p {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff; 
}

.cta-sub {
  grid-area: sub;
  text-align: center;
}

.cta-sub h1{
  margin-top: 1rem;
}

.cta-sub p {
  font-size: 1.2rem;
  margin: 0;
  color: var(--highlight-color);  
  
}

.cta-button {
  grid-area: button;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.cta-button button {
  background: linear-gradient(135deg, #0039ae, #005eff);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 89, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.cta-button button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(0, 89, 255, 0.8);
  background: linear-gradient(135deg, #005eff, #0039ae);
}


/* Responsividade */
@media (max-width: 768px) {
  .hero-overlay {
    text-align: center;
    align-items: center;
    padding: 0 20px;
  }

  #hero h2 {
    font-size: 2rem;
  }

  .hero-cta {
    font-size: 1.1rem;
  }
  .persuasive-list {
    flex-direction: column;
    align-items: center;
  }
  #uniquePoints ul {
    flex-direction: column;
    align-items: center;
  }
  .benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
    max-width: 100%; 
    box-sizing: border-box;
  }
  
  .benefit-card {
    background-color: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    text-align: center;
    transition: transform 0.3s;
    box-sizing: border-box;
    width: 100%; 
  }
  .benefit-card h3{
    margin-top: 10px;
    font-size: .9rem;
  }

  .benefit-card p{
    font-size: .7rem;
  }
  #parallax {
    height: 200px;
  }

#uniquePoints h2{
  margin-bottom: .5rem;
}
.grid-main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 2rem;
  padding: 1rem;
}

.unique-title{
  font-size: 1.5rem;
  margin: 1rem .5rem 0;
}

.grid-main p{
  font-size: .8rem;
  margin: 0rem .5rem;
}

.first-text{
  order: 1;
  text-align: center;
}

.first-image{
  order: 2;
}  

  .first-image img{
    width: 100%;
    object-fit: cover;
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 10px;
    justify-self: center;
  }

  .second-text{
    order: 3;
    text-align: center;
  }
  .second-image{
    order: 4;
  }
  .second-image img{
    width: 100%;
    object-fit: cover;
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 10px;
    justify-self: center;
  }

  .third-text{
    order: 5;
    text-align: center;
  }

  .third-image{
    order: 6;

  }

  .third-image img{
    width: 100%;
    object-fit: cover;
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 10px;
    justify-self: center;
  }

  #lastCta {
  width: 90%;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "title"
      "image"
      "sub"
      "button";
  }
  
  .cta-title p {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .cta-sub p {
    font-size: 0.95rem;
  }
  
  .cta-button button {
    font-size: 1rem;
    padding: 14px 30px;
  }
  .cta-img img{
    width: 90%;
  }
}