/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2d3748;
    background: #fdf6f0;
    line-height: 1.6;
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background: #3c2f2f;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.cookie-consent a {
    color: #ffcb9a;
    text-decoration: underline;
}

.cookie-consent button {
    margin-left: 1rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #d4a373, #3c2f2f);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    fill: #ffcb9a;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1rem;
    transition: color 0.3s, background 0.3s;
}

.nav-link:hover {
    color: #ffcb9a;
}

.nav-contact {
    background: #ffcb9a;
    border-radius: 0.25rem;
}

.nav-contact:hover {
    background: #d4a373;
    color: white;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: white;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1617038220319-276d7cfab638') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(60, 47, 47, 0.7);
}

.hero-content {
    text-align: center;
    position: relative;
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Seções */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #3c2f2f;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background: #fdf6f0;
}

/* Sobre */
.sobre-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.sobre-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Ovos de Páscoa */
.ovos-pascoa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ovos-pascoa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ovos-pascoa-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ovos-pascoa-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ovos-pascoa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ovos-pascoa-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.ovos-pascoa-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3c2f2f;
    padding: 1rem 1.5rem 0;
}

.ovos-pascoa-desc {
    font-size: 1rem;
    color: #4a5568;
    padding: 0 1.5rem 1.5rem;
}

/* Dicas */
.dicas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .dicas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dica-card {
    background: #ffcb9a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dica-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3c2f2f;
    margin-bottom: 1rem;
}

.dica-desc {
    font-size: 1rem;
    color: #4a5568;
}

/* Depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.depoimento-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.depoimento-text {
    font-size: 1.125rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: center;
}

.depoimento-author {
    font-size: 1rem;
    font-weight: 600;
    color: #3c2f2f;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3c2f2f;
    padding: 1rem 1.5rem 0;
}

.blog-desc {
    font-size: 1rem;
    color: #4a5568;
    padding: 0 1.5rem 1rem;
}

.blog-link {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: #d4a373;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #3c2f2f;
}

/* FAQ */
.faq-grid {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #3c2f2f;
    padding: 1rem;
    background: #ffcb9a;
    border-radius: 0.5rem;
    cursor: pointer;
}

.faq-answer {
    font-size: 1rem;
    color: #4a5568;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
}

/* CTA */
.cta {
    background: #d4a373;
}

/* Botões */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4a373, #3c2f2f);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #d4a373, #3c2f2f);
}

.btn-secondary {
    background: linear-gradient(135deg, #ffcb9a, #d4a373);
}

.btn-ebook {
    background: linear-gradient(135deg, #ffcb9a, #d4a373);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: 2px solid #3c2f2f;
}

.btn-ebook:hover {
    background: linear-gradient(135deg, #d4a373, #3c2f2f);
    transform: scale(1.05);
}

.btn-white {
    background: white;
    color: #3c2f2f;
}

.btn-white:hover {
    background: #fdf6f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: #3c2f2f;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
   - gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffcb9a;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: #ffcb9a;
}

.footer-list a {
    color: #ffcb9a;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #d4a373;
}

.footer-map {
    margin-top: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-bottom .disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.hidden {
    display: none;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 36rem;
    padding: 2rem;
    border-radius: 0.75rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #3c2f2f;
}

.modal h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3c2f2f;
    margin-bottom: 1.5rem;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal input,
.modal textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.modal textarea {
    min-height: 120px;
    resize: vertical;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #3c2f2f;
        padding: 1rem;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .ovos-pascoa-grid,
    .dicas-grid,
    .depoimentos-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }

    .section-title {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }
}