
/* General Styles */
body {
    font-family: Poppins;
    margin: 0;
    padding: 0;
    color: #333;
}

.button {
    display: inline-block;
    background-color: #e4002b;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 15px;
}

/* HEADER */
header {
    background-color: #fff;
    padding: 20px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  header .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo img {
    width: 140px;
    height: 30px;
  }
  
  /* MENU */
  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
  }
  
  nav ul li a {
    display: flex;
    align-items: center;
    padding: 0px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 10px;
  }
  
  .arrow {
    font-size: 12px;
    margin-left: 4px;
    margin-bottom: 6px;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }

  /* RESPONSIVO */
  @media (max-width: 1068px) {
    .menu-toggle {
      display: block;
      color: #000;
    }
  
    nav {
      display: none;
      width: 100%;
      margin-top: 15px;
    }
  
    nav.active {
      display: block;
    }
  
    nav ul {
      flex-direction: column;
      gap: 0;
    }
  
    nav ul li a {
      padding: 10px 0;
      border-bottom: 1px solid #ddd;
    }
  
    .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    #cta {
      align-self: stretch;
      text-align: center;
      margin-top: 10px;
    }
  
    .container {
      flex-direction: column;
      align-items: flex-start;
    }
    .revendas .container {
      gap: 0px !important;
    }
    .revendas-text{
      text-align: center;
    }
    .revendas-text p{
      width: 100% !important;
      text-align: center;
    }
    .numeros .container{
      align-items: center;
      gap: 15px !important;

    }
    .numero-item{
      padding: 10px 40px !important;
    }
  }
  

/* Hero Section */
.hero {
    background-color: #ffffff;
    text-align: center;
}

.hero img {
    width: 100%;
}

.loja_mobile{
    display: none;
}

.hero h1 {
    margin-top: -4px;
    font-size: 2em;
    padding: 5px;
    margin-bottom: 20px;
    color: white;
    background-color: #e4002b;
}

.hero h2 {
    font-size: 2em;
    line-height: 1.5;
    font-weight: bold;
}

.hero p {
    font-size: 1.5em;
    font-weight: bold;
}

.p_diferenciais {
    width: 50%;
    margin: 0 auto;
    background-color: #F8F8F8;
    padding: .1px 20px .1px 20px;
}

#diferenciais_mobile{
  display: none;
}

/* Diferenciais Section */
.diferenciais {
    padding: 60px 0;
}

.diferenciais h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #666872;
}

.diferenciais-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.linha {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.linha-centralizada {
    justify-content: center;
}

.diferencial-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 280px;
    text-align: left;
    color: #666872;
    line-height: 1.5rem;
}

.diferencial-item img {
    height: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.diferencial-item h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Revendas Section */
.revendas {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.revendas .container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.revendas-image img {
    max-width: 550px;
}

.revendas-text {
    max-width: 500px;
}

.revendas-text h2 {
    font-weight: bold;
    line-height: 1.8;
    font-size: 1.5rem;
    width: 95%;
}
.revendas-text p {
    width: 70%;
    color: #666872;
    line-height: 1.5;
    font-size: 18px;
}


/* Numeros Section */
.numeros {
    padding: 40px 0;
    background-color: #fff; /* fundo branco da seção */
    text-align: center;
  }
  
  .numeros .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .numero-item {
    background-color: #e4002b;
    color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 200px;
  }
  
  .numero-item span {
    font-size: 2.5em;
    font-weight: bold;
    display: block;
  }
  
  .numero-item p {
    margin: 0;
    font-weight: 500;
  }
  

/* Beneficios Section */
.beneficios {
    padding: 20px 0;
  }
  
  .beneficios h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #666872;
    font-size: 2rem;
  }
  
  .beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* força 2 colunas fixas */
    gap: 30px;
    max-width: 900px;
    margin: 0 auto; /* centraliza */
  }
  
  .beneficio-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background-color: #e6e6e6; /* cinza claro */
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }
  
  .beneficio-item img {
    height: 40px;
    margin-right: 20px;
  }
  
  .beneficio-item p {
    margin: 0;
    font-weight: 700;
    color: #15152B; /* azul escuro */
    text-transform: uppercase;
    font-size: 1rem;
  }
  

/* Formulário */
.formulario {
  padding: 60px 60px;
  background-color: #f8f8f8;
}

.formulario .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.formulario-text {
  flex: 1;
  min-width: 300px;
}

.formulario-text h2 {
  font-size: 32px;
  color: #0d0d2b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.formulario-text h2 span {
  color: red;
  font-weight: bold;
}

.formulario-text p {
  font-size: 16px;
  color: #666;
}

form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.input-group input {
  flex: 1;
  min-width: 140px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 24px;
  outline: none;
  box-sizing: border-box;
}

form select {
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23aaa' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button {
  align-self: center;
  padding: 12px 32px;
  background-color: #d40000;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #a90000;
}

/* Noticias Section */
.noticias {
    padding: 60px 0;
    background: #f5f6fa;
  }
  
  .noticias h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #666872;
    font-size: 2rem;
  }
  
  .noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 60px 0 60px;
  }
  
  .noticia-item {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .noticia-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .noticia-item h3 {
    padding: 20px;
    font-size: 1.2rem;
    color: #15152b;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
  }
  
  .noticia-item a {
    display: inline-block;
    margin: 0 auto 20px;
    padding: 10px 85px;
    background-color: #e4002b;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }
  
  .noticia-item a:hover {
    background-color: #c70024;
  }
  

  footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px 20px;
    font-size: 13px;
  }
  
  footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo img {
    height: 40px;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
  }
  
  .footer-links {
    display: flex;
    gap: 40px;
  }
  
  .footer-column h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    font-size: 13px;
  }
  
  .footer-social h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .footer-social .social-icons a {
    margin-right: 10px;
    display: inline-block;
  }
  
  .footer-social .social-icons img {
    height: 18px;
    width: 18px;
  }
  
  /* Rodapé inferior */
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #aaa;
  }
  
  .footer-bottom strong {
    color: #fff;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .footer-links {
      flex-direction: column;
      gap: 20px;
    }
  
    .footer-social {
      width: 100%;
      margin-top: 20px;
    }
  
    .footer-logo {
      width: 100%;
    }
  
    footer .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-bottom {
      text-align: left;
    }
  }
  

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header .container {
      flex-direction: row;
      align-items: center;
    }

    #cta {
        display: none;
    }

    header nav ul {
        flex-direction: column;
    }

    .loja_mobile{
        display: block;
    }
    .loja_desk{
        display: none;
    }
    .hero h1{
        font-size: 1.5rem;
    }
    .p_diferenciais{
        width: 80%;
    }
    .hero p {
        font-size: 1.3rem;
        text-align: center;
        padding: 15px 0 15px 0;
        color: black;
    }
    .hero h2 {
        line-height: none;
    }

    #diferenciais_desk {
      display: none;
    }
  
    #diferenciais_mobile {
      display: block;
    }
  
    .diferenciais-grid {
      position: relative;
      overflow: hidden;
      padding: 0;
    }
  
    .linha {
      display: flex !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 16px;
      padding: 20px 16px;
      scroll-padding-left: 16px;
      scrollbar-width: none; /* Firefox */
    }
  
    .linha::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }

    .diferenciais{
      padding: 0px;
    }
  
    .diferencial-item {
      flex: 0 0 85%; /* Ajustável: 85% da largura da tela */
      scroll-snap-align: start;
      background: #ffffff;
      border-radius: 8px;
      padding: 24px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin: 0;
    }
  
    .diferencial-item:first-child {
      margin-left: 8px;
    }
  
    .diferencial-item:last-child {
      margin-right: 8px;
    }
  
    .diferencial-item img {
      width: 48px;
      height: auto;
      margin-bottom: 16px;
    }
  
    .diferencial-item h3 {
      margin: 0 0 12px 0;
      font-size: 18px;
      font-weight: 600;
    }
  
    .diferencial-item p {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
    }

    .revendas{
        padding-top: 20px;
    }
    .revendas-image img{
        width: 90%;
        border-radius: 30px;
        padding: 10px;
    }
    .revendas-text h2 {
        padding-bottom: 30px;
        width: 90%;
        text-align: center;
        color: black;
        line-height: normal;
        font-size: 1.4rem;
    }
    .revendas-text h2, p {
        margin: 0 auto;
    }
    .revendas-text p {
        color: black;
        width: 100%;
    }

    .revendas .container {
        gap: 20px;
    }
    .numeros{
        display: flex;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
        padding-top: 0px;
    }
    .numero-item{
        padding: 5px 55px;
    }

    .formulario .container {
      flex-direction: column;
    }
  
    .input-group {
      flex-direction: column;
    }
  
    form button {
      width: 100%;
    }

    .beneficios h2{
        padding: 0 20px 0 20px;
    }

    .beneficios-grid{
        display: flex;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
        width: 80%;
        gap: 10px;
    }

    .noticias{
      padding: 10px 0;
    }

    .noticias h2{
        padding: 0 30px 0 30px;
    }

    .button {
        font-size: 19px;
        padding: 10px 70px;
    }

    .revendas .container,
    .formulario .container,
    footer .container {
        flex-direction: column;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .formulario {
      padding: 30px;
    }

    .revendas-image,
    .revendas-text,
    .formulario-text,
    .formulario form {
        max-width: 100%;
    }

    .formulario form {
        margin: 0 auto;
    }

    .noticias-grid {
      display: flex !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 16px;
      padding: 20px 16px;
      scroll-padding-left: 16px;
      scrollbar-width: none; /* Firefox */
    }
  
    .noticias-grid::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }
  
    .noticia-item {
      flex: 0 0 85%;
      scroll-snap-align: start;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
  
    .noticia-item img {
      width: 100%;
      height: auto;
      margin-bottom: 12px;
    }
  
    .noticia-item h3 {
      font-size: 17px;
      padding-bottom: 10px;
    }
  
    .noticia-item .button {
      display: inline-block;
      background-color: #D40000;
      color: #fff;
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 20px;
      font-size: 14px;
      text-align: center;
      padding-top: 15px;
      transition: background-color 0.3s ease;
    }
  
    .noticia-item > .button {
      width: 60%;
      text-align: center;
    }
    
    .noticia-item .button:hover {
      background-color: #a90000;
    }
    
    footer .footer-links {
        flex-direction: column;
        margin: 0 auto;
    }

    footer .footer-column {
        margin-left: 0;
        margin-bottom: 20px;
    }
}



.mensagem {
  background-color: #e4002b;
  color: white;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  text-align: center;
}



.popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }

    .popup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
      color: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      max-width: 900px;
      width: 90%;
      font-size: 16px;
      line-height: 1.6;
      z-index: 1000;
      max-height: 90vh;
      overflow-y: auto;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      background: none;
      border: none;
      color: white;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
    }

    .title {
      font-size: 30px;
      font-weight: bold;
      margin-bottom: 15px;
      text-align: center;
      letter-spacing: 1px;
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-style: normal;
    }

    .subtitle {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 30px;
      text-align: center;
      letter-spacing: 0.5px;
    }

    .content {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      margin-bottom: 30px;
    }

    .left-text {
      flex: 1;
      font-size: 17px;
      line-height: 1.7;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-style: normal;
    }

    .benefits {
      background: white;
      color: #333;
      padding: 30px;
      border-radius: 15px;
      flex: 0 0 350px;
    }

    .benefit-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-weight: bold;
      font-size: 14px;
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-style: normal;
    }

    .benefit-item:last-child {
      margin-bottom: 0;
    }

    .bottom-text {
      margin-top: 20px;
      margin-bottom: 5px;
      font-size: 16px;
    }

    .cta-text {
      font-weight: bold;
      font-size: 16px;
    }

    .register-btn {
      background: white;
      color: #333;
      border: none;
      padding: 15px 40px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      float: right;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s;
    }

    .register-btn:hover {
      transform: translateY(-2px);
    }

    .register-btn::after {
      content: "▶";
      font-size: 14px;
    }

@media (max-width: 768px) {
  .popup {
    padding: 20px 15px;
    width: 90%;
    max-width: 95%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 15px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }


  .title {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
    margin-top: 20px;
  }


  .subtitle {
    font-size: 13px;
    margin-bottom: 10px;
  }


  .content {
    flex-direction: column;
    gap: 10px;
  }


  .left-text {
    font-size: 13px;
    line-height: 1.4;
  }


  .benefits {
    padding: 10px;
    font-size: 13px;
    flex: 0 0 193px;
  }


  .benefit-item {
    font-size: 12px;
    gap: 8px;
    align-items: center;
  }


  .benefit-item img {
    width: 20px !important;
  }


  .bottom-text,
  .cta-text {
    font-size: 13px;
    text-align: center;
  }


  .register-btn {
    float: none;
    margin: 15px auto 0 auto;
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }


  .close-btn {
    top: 8px;
    right: 12px;
    font-size: 22px;
  }
}
