/* Reset básico */
* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}


/* Navbar */
nav {
    background: #b57c00;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}



/* Seção de informações */
.info-section {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    text-align: center;
}

.info-box {
    width: 30%;
}

.info-box img {
    width: 70%;
    border-radius: 10px;
}

.info-box p {
    margin-top: 10px;
    font-size: 16px;
}

/* Seção de produtos */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.btn {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}





/* Footer */
footer {
  background-color: #b57c00;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

footer p {
  margin-bottom: 20px;
}

/* Ícones de Redes Sociais */
.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons .icon {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  background-color:#f39c12;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.social-icons .icon:hover {
  background-color: #f39c12;
}

.social-icons .facebook {
  background-image: url('facebook.png');
  background-size: cover;
}

.social-icons .instagram {
  background-image: url('instagram.png');
  background-size: cover;
}

.social-icons .youtube {
  background-image: url('youtube.jpeg');
  background-size: cover;
}


/* Ícones de formulário*/

.form-container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    resize: vertical;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: #007bff;
    outline: none;
}

button {
    width: 100%;
    padding: 12px 0;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* mensagem da captura*/

.formulario, .mensagem-sucesso {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button, a {
    background-color: #007bff;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

button:hover, a:hover {
    background-color: #0056b3;