/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Paleta */
:root {
  --cor-principal: #1E90FF; /* Azul vibrante */
  --cor-fundo: #ffffff;
  --cor-texto: #444;
}

/* Gerais */
body {
  font-family: Arial, sans-serif;
  color: var(--cor-texto);
  background: var(--cor-fundo);
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
header {
  background: var(--cor-principal);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #e0e0e0;
}

/* Menu responsivo */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: var(--cor-principal);
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 10px;
    border-radius: 8px;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== BANNER (INTRO) ===== */
.intro {
  height: 80vh;
  background: linear-gradient(135deg, #0d7cec, #097dea); /* Azul degradê */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.intro h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.intro p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PRODUTOS ===== */
.produtos {
  padding: 60px 0;
  text-align: center;
}

.produto {
  display: inline-block;
  width: 250px;
  margin: 15px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.produto:hover {
  transform: translateY(-5px);
}

.produto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.produto h3 {
  font-size: 1.1rem;
  margin: 10px 0;
}

.produto p {
  padding: 0 10px 10px;
}

.btn-contato {
  display: inline-block;
  background: var(--cor-principal);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-contato:hover {
  background: #0c6edc;
}

/* ===== SOBRE ===== */
.sobre {
  background: #f4f4f4;
  padding: 60px 0;
  text-align: center;
}

.sobre h2 {
  color: var(--cor-principal);
}

/* ===== CONTATO ===== */
.contato {
  padding: 60px 0;
  text-align: center;
}

.contato .info-contato p {
  margin: 5px 0;
}

.campo {
  margin-bottom: 15px;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background: var(--cor-principal);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0c6edc;
}

/* ===== FOOTER ===== */
footer {
  background: var(--cor-principal);
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
