header, nav, .logo {
    font-family: 'Arial', sans-serif;
}

h1, h2, h3 {
    font-family: 'Times New Roman', Times, serif;
}

body, p, li, input, label, button {
    font-family: 'Courier New', Courier, monospace;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #317550;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #0056b3;
}

header .logo {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

header nav a:hover,
header nav a.active {
    text-decoration: underline;
    color: #1e1281;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.intro {
    text-align: center;
    margin: 40px 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro h1 {
    font-size: 36px;
    color: #007bff;
}

.intro p {
    font-size: 18px;
    color: #666;
}

.intro img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

.destaques {
    text-align: center;
    margin: 40px 20px;
}

.destaques h2 {
    font-size: 32px;
    color: #2600ff;
    margin-bottom: 20px;
}

.destaques-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.destaque-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.destaque-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ddd;
}

.destaque-item h3 {
    padding: 10px;
    font-size: 22px;
    color: #060af8;
}

#ingredientes,
#instrucoes {
    margin: 20px 0;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#ingredientes {
    background-color: #e3f2fd;
}

#ingredientes h2 {
    font-size: 24px;
    color: #0026ff;
    margin-bottom: 10px;
}

#ingredientes ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #333;
}

#ingredientes li {
    font-size: 18px;
    margin-bottom: 5px;
}

#instrucoes {
    background-color: #fff3e0;
}

#instrucoes h2 {
    font-size: 24px;
    color: #ff7043;
    margin-bottom: 10px;
}

#instrucoes p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
}

#instrucoes h3 {
    font-size: 22px;
    color: #333;
    margin-top: 20px;
}

iframe {
    margin-top: 10px;
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

a:focus {
    outline: 2px dashed #00448d;
}

button:hover, button:focus {
    background-color: #aa3410;
    color: #fff;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.flex-item {
    flex: 1;
    min-width: 200px;
}

.contato {
    margin: 20px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contato h2 {
    font-size: 24px;
    color: #028b09;
    margin-bottom: 10px;
}

.contato p, .contato ul {
    font-size: 18px;
    color: #333;
}

.contato ul {
    list-style-type: none;
}

.contato li {
    margin-bottom: 10px;
}

footer {
    background: #039741;
    color: #721212;
    padding: 40px;
    text-align: center;
    border-top: 2px solid #0056b3;
    margin-top: 40px;
}

footer hr {
    border: 0;
    height: 1px;
    background: #0056b3; /* Cor da barra horizontal */
    margin: 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin: 0;
    font-size: 16px;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer nav a {
    color: #ffd700;
    text-decoration: none;
    font-size: 16px;
}

footer nav a:hover {
    text-decoration: underline;
}

form button {
    display: block;
    margin: 20px auto 0 auto;
}
