/* Reset de estilos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navegação */
.navbar {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo img.img-logo {
  max-width: 180px;
  height: auto;
}

/* Menu padrão */
.nav-menu {
  list-style: none;
  display: flex;
}
.nav-menu li {
  margin-left: 20px;
}
.nav-menu li a {
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
  color: #333;
}
.nav-menu li a:hover {
  color: #007bff;
}

/* Menu Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.3s;
}

/* Sessão Hero */
.hero {
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  color: #fff;
  padding: 100px 0;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
  min-width: 300px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 30px;
}
.btn-primary {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 30px;
  transition: background-color 0.3s;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: #e0a800;
}
.hero-image {
  flex: 1;
  text-align: center;
  margin-top: 20px;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Seções */
.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 40px;
  color: #007bff;
}

/* Produtos */
.produtos {
  padding: 60px 0;
  background-color: #f0f0f0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.product-image {
  width: 100%;
  height: 200px;
  background: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
}
.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-info h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.btn-product {
  text-align: center;
  background-color: #007bff;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
  text-decoration: none;
}
.btn-product:hover {
  background-color: #0056b3;
}

/* Sobre */
.sobre {
  padding: 60px 0;
}
.sobre-text {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Depoimentos */
.depoimentos {
  padding: 60px 0;
  background-color: #fff;
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.depoimento-card {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  position: relative;
}
.depoimento-text {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.5;
  font-style: italic;
}
.depoimento-author {
  font-weight: 700;
  text-align: right;
  color: #007bff;
}

/* Contato */
.contato {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.contact-form {
  max-width: 600px;
  margin: auto;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: #0056b3;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsividade: Navegação Mobile */
@media (max-width: 768px) {
  .logo img.img-logo {
    max-width: 140px;
  }
  .menu-toggle {
    display: flex; /* Mostra o menu hamburger */
  }
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: none;  /* Oculta inicialmente */
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    margin: 15px 0;
    width: 100%;
    text-align: left;
    padding-left: 15px;
  }
}
