/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background-color: #011640; /* Azul escuro principal */
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-weight: 600;
    font-size: 24px;
    color: #cce4ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Links do menu */
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}
/* Missão, Visão e Valores */
.mvv-cards {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .mvv-cards h3 {
    font-size: 32px;
    font-weight: 600;
    color: #011640;
    margin-bottom: 40px;
  }
  
  .cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: #ffffff;
    border: 2px solid #011640;
    border-radius: 15px;
    padding: 25px 20px;
    width: 280px;
    min-height: 260px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .card .icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #011640;
    margin-bottom: 15px;
  }
  
  .card p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
  
  .card ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    color: #333;
    margin-top: 10px;
  }
  
  .card ul li {
    margin-bottom: 6px;
    font-size: 15px;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .cards-container {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 100%;
      max-width: 350px;
    }
  }
  
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #cce4ff;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #cce4ff;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: url('fundo-hero.jpg') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
    background-color: #033170; 
}

.hero-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background-color: #fff;
    color: #011640;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #cce4ff;
}

/* Botão Logout */
.btn-logout {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background: none;
    color: white;
    border: none;
    position: relative;
    padding: 0 5px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 16px;
}

.btn-logout::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #cce4ff;
    transition: width 0.3s ease;
}

.btn-logout:hover {
    color: #cce4ff;
}

.btn-logout:hover::after {
    width: 100%;
}

/* Produtos */
.produtos {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.produtos h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #011640;
}

.produtos-lista {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.produto-item {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s ease;
}

.produto-item:hover {
    transform: translateY(-5px);
}

.produto-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.produto-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #033170;
}

.produto-item p {
    font-size: 14px;
    margin-bottom: 15px;
}

.produto-item button {
    background-color: #011640;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.produto-item button:hover {
    background-color: #033170;
}

/* Blocos Texto + Imagem */
.textos-smartprice {
    padding: 80px 10%;
    background-color: #fff;
}

.texto-bloco {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.texto-bloco.invertido {
    flex-direction: row-reverse;
}

.texto-conteudo {
    flex: 1;
    text-align: left;
}

.texto-conteudo h2 {
    font-size: 32px;
    font-weight: 600;
    color: #011640;
    margin-bottom: 20px;
}

.texto-conteudo p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.texto-imagem {
    flex: 1;
}

.texto-imagem img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

/* Rodapé */
footer {
    background-color: #011640;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
}

/* Responsivo */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .produtos-lista {
        flex-direction: column;
        align-items: center;
    }

    .texto-bloco, .texto-bloco.invertido {
        flex-direction: column;
        text-align: center;
    }

    .texto-conteudo {
        text-align: center;
    }

    .texto-imagem img {
        max-width: 100%;
    }
 
}
