/* Reset e Estilos Básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #FF5722; /* Laranja */
    font-size: 2em;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #FF5722;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #FF5722, #E64A19); /* Gradiente Laranja/Vermelho */
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero button {
    background-color: #fff;
    color: #FF5722;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero button:hover {
    background-color: #eee;
    color: #E64A19;
}

/* Features Section */
#features {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

#features .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #FF5722;
    margin-bottom: 10px;
}

/* Receitas Section */
#receitas {
    padding: 80px 0;
    background-color: #f0f0f0;
}

#receitas h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.receita-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.receita-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.receita-card:hover {
    transform: translateY(-5px);
}

.receita-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.receita-card-content {
    padding: 20px;
}

.receita-card-content h3 {
    color: #FF5722;
    margin-bottom: 10px;
}

.receita-card-content p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
}

.receita-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
    color: #888;
    margin-bottom: 15px;
}

.receita-meta span {
    display: flex;
    align-items: center;
}

.receita-meta span svg {
    margin-right: 5px;
}

.receita-card-content button {
    background-color: #FF5722;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.receita-card-content button:hover {
    background-color: #E64A19;
}

/* Newsletter Section */
#newsletter {
    background: linear-gradient(to right, #FF5722, #E64A19); /* Gradiente Laranja/Vermelho */
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

#newsletter h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#newsletter p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

.newsletter-form button {
    background-color: #fff;
    color: #FF5722;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #eee;
    color: #E64A19;
}

/* Contact Section */
#contato {
    padding: 80px 0;
    background-color: #fff;
}

#contato h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: #FF5722;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #FF5722;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #E64A19;
}

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

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul li {
        margin: 0 10px;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    #features .container {
        flex-direction: column;
    }

    .feature-item {
        margin-bottom: 20px;
    }

    .contact-content {
        flex-direction: column;
    }
}


