body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}
/* Header agora é uma seção normal */
/* Estilização do Header */
.header-section {
    background: linear-gradient(45deg, #12376f, #195e9e); /* Degradê de azul */
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
}

/* Texto ao lado da logo */
.header-text {
    font-size: 12px;
    font-weight: bold;
    color: white;
    margin-right: 350px;
}

.sub-header h2 {
    font-size: 20px;
    font-weight: normal;
    color: white;
    margin: 10px 0;
}

/* Container do Header */
.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1100; /* Garante que fique sempre acima */
}

/* Logo */
.logo1 img {
    height: 60px;
    cursor: pointer;
}

/* Navegação */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Links do menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e4bc7d;
}

/* Botão de Cadastro */
.cadastro-btn a {
    background: #e4bc7d;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap; /* impede que o texto quebre */
}

.cadastro-btn a:hover {
    background: #FFC107;
    color: #000;
}

/* RESPONSIVIDADE - MENU EXPANSÍVEL */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(45deg, #12376f, #195e9e); /* Degradê de azul */
        padding: 20px 0;
        text-align: center;
        z-index: 1200; /* Garante que o menu fique sobreposto */    
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        justify-content: center;
        align-items: center; /* Centraliza os itens no centro */
        text-align: center;
    }
    .logo1 {
        width: 100%;
        display: flex;
        justify-content: center; /* Centraliza a logo */
        align-items: center;
    }
    .header-text {
        display: none;
        font-size: 10px;
    }
    .header-text  {
        display: none;
        font-size: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        margin-right: 35px;
    }

    .nav-menu.active {
        display: flex; /* Exibe o menu quando ativo */
        margin-top: 10px;
    }

    .logo1 img {
        height: 60px;
        cursor: pointer;
    }

    .about-container {
        flex-direction: column; /* Empilha os elementos */
        text-align: center; /* Centraliza o texto */
        padding: 20px;
    }

    .about-text {
        padding-right: 0; /* Remove o espaçamento lateral */
        padding-bottom: 15px; /* Adiciona espaço abaixo do texto */
    }

    .about-image {
        width: 100%; /* Faz a imagem ocupar toda a largura disponível */
        max-width: 250px; /* Define um limite máximo para evitar distorção */
        height: 100px; /* Mantém a proporção da imagem */
        margin: 0 auto; /* Centraliza horizontalmente */
    }
    .banner-container {
        width: 100%;
        position: relative;
        overflow: hidden;
        height: 90px; /* Ajuste esse valor para a altura máxima desejada */
    }
    .swiper {
        width: 100%;
        height: 90px; /* Garante que o contêiner não passe do limite */
    }
    .swiper-slide img {
        width: 100%;
        height: 90px; /* Define a altura máxima */
    }
    .feedback-container {
        flex-direction: column;
        align-items: center;
    }

    .feedback-card {
        width: 90%;
    }
}
/* Ajuste geral para tablets (768px até 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-menu .nav-links {
      gap: 10px;
      font-size: 15px;
      padding-left: 5px;
    }
  
    .header-text {
      margin-right: 0;
      padding-left: 15px;
      font-size: 15px;
      text-align: center;
    }
  
    .cadastro-btn a {
      padding: 8px 10px;
      font-size: 14px;
    }
    .cadastro-btn{
        margin-top: 17px;
    }
  
    .container {
      flex-direction: column;
      align-items: center;
    }
  
    .box {
      width: 90%;
      margin-bottom: 20px;
    }
  }
  
  /* Ajustes para laptops médios (1024px até 1279px) */
  @media (min-width: 1024px) and (max-width: 1279px) {
    .header-text {
      margin-right: 100px;
    }
  
    .cadastro-btn a {
      padding: 10px 16px;
      font-size: 15px;
    }
    .cadastro-btn{
        margin-top: 15px;
    }
  
    .nav-menu .nav-links {
      gap: 20px;
    }
  
    .box {
      width: 300px;
    }
  }
  
/* Garantir que o menu fique sobreposto corretamente */
.banner-container {
    position: relative;
    z-index: 900; /* Mantém a seção da promoção abaixo do menu */
}


.banner-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 160px; /* Ajuste esse valor para a altura máxima desejada */
}
.swiper {
    width: 100%;
    max-height: 160px; /* Garante que o contêiner não passe do limite */
}
.swiper-slide img {
    width: 100%;
    max-height: 160px; /* Define a altura máxima */
    object-fit: fill; /* Garante que a imagem fique dentro do espaço sem ser cortada */
    display: block;
}
.container {
    display: flex;
    justify-content: center;
    gap: 90px;
    padding: 30px;
    flex-wrap: wrap;
    background-color: white;
}
.section-title {
    background-color: white;
    border-bottom: 1px solid rgb(217, 217, 217);
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #00008B;
}
.box {
    width: 250px;
    background: linear-gradient(45deg, #12376f, #195e9e); /* Degradê de azul */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.box h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #e4bc7d;
}
.box img {
    width: 100%;
    height: 250px;
    border: 1px solid #e4bc7d;
    object-fit: cover;
    border-radius: 8px;
}
.box p {
    font-size: 14px;
    color: #e4bc7d;
}
.box:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.box button {
    margin-top: 2px;
    padding: 5px 10px;
    font-size: 12px;
    background-color: #00008B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.box button:hover {
    background-color: #000066;
}
.about-section {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    max-width: 80%;
    margin: auto;
    position: relative;
}
.about-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    max-width: 90%;
    margin: auto;
}
.about-text {
    flex: 1;
    padding-right: 20px;
}
.about-text h2 {
    font-size: 22px;
    font-weight: bold;
    color: #000;
}
.about-text p {
    font-size: 16px;
    color: #333;
}
.about-image {
    width: 200px;
    height: auto;
    border-radius: 10px;
}
.signup-section {
    background-color: #f0f0f0;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}
.signup-section h2 {
    font-size: 20px;
    font-weight: bold;
}
.signup-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.signup-form input, .signup-form select {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.signup-form button {
    padding: 10px;
    background-color: #00008B;
    color: white;
    width: 200px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.signup-form button:hover {
    background-color: #000066;
}
.footer {
    background: #e8e8e8;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer .logo-footer img {
    height: 40px;
}
.footer .info {
    font-size: 14px;
    color: #333;
    flex: 1;
}
.footer .the-creator {
    margin-top: 15px;
    font-size: 14px;
}
.footer .the-creator a img {
    height: 80px;
    margin-bottom: -35px;
    margin-left: 20px;
}
.feedback-section {
    background-color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
}

.feedback-section h2 {
    font-size: 22px;
    font-weight: bold;
    color: #00008B;
    margin-bottom: 20px;
}

.feedback-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feedback-card {
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feedback-card:hover {
    transform: scale(1.05);
}

.feedback-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.feedback-card p {
    font-size: 14px;
    color: #333;
    font-style: italic;
}

.feedback-card h3 {
    font-size: 16px;
    color: #00008B;
    margin-top: 10px;
}
.animacaoRolagem{
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



