/* styles.css */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #f7f7f7;
               
                  
                 
                   // display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    background: url('images/fundo2.jpg') no-repeat center center fixed;
                    background-size: cover;
}

.idade-container {
  display: grid;
  grid-template-columns: repeat(5, 5vh);
  gap: 2em ;
}

/*
.idade-container {
  display: grid;
  grid-template-columns: repeat(5, 50px);
  gap: 45px;
}
*/

.idade-container .form-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto;
}
/*
.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    z-index: 2;
    position: relative;
}
*/
header {
    background: #007bffa2;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

        .header-logo {
            text-align: left;
            margin-bottom: 20px;
        }

        .header-logo img {
            max-width: 200px;
        }


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

main {
    padding-top: 20px;
}

section {
    margin: 40px 0;
}

footer {
    background: #007bff00;
    color: #fff;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

form {
    background: rgba(255, 255, 255, 0.685);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group button {
    width: 90%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.form-group button {
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-group button:hover {
    background: #0056b3;
}

 .mensagem {
     margin-bottom: 20px;
     padding: 10px;
     background-color: #f9f9f98f;
     border: 1px solid #ddd;
     border-radius: 5px;
     text-align: center;
 }

 .mensagem img {
     max-width: 20%;
     height: auto;
     margin-top: 10px;
     border-radius: 5px;
 }

 .produto {
     background-color: #f1f1f1cc;
     padding: 20px;
     border-radius: 10px;
     position: relative;
     overflow: hidden;
 }

 .produto h2 {
     margin-top: 0;
 }

 .produto h1 {
    font-size: 1em;
 }

 .produto p {
     margin: 10px 0;
     font-size: 12px;
 }

 .preco {
     font-size: 24px;
     font-weight: bold;
     color: #d9534f;
     background: #fff3cd;
     padding: 10px;
     border-radius: 5px;
     display: inline-block;
     position: relative;
 }

 .produto::before {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     width: 150px;
     height: 150px;
     background: url('images/Figura1.webp') no-repeat;
     opacity: 0.1;
 }

 .produto::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 150px;
     height: 150px;
     background: url('images/figura2.png') no-repeat;
     opacity: 0.1;
 }

        .chat-button-container {
            text-align: center;
            margin-top: 20px;
        }

        .chat-button, .whatsapp-button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
            margin: 5px;
        }

        .whatsapp-button {
            background-color: #25D366;
        }

        .chat-button:hover, .whatsapp-button:hover {
            background-color: #0056b3;
        }

        .whatsapp-button:hover {
            background-color: #1DA653;
        }