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

:root {
    --color-verde: #B0BA8B;
    --color-verde-escuro: #8f9a6c;
    --color-rose: #DDA89F;
    --color-rose-escuro: #c98a80;
    --color-text: #3f3a35;
    --color-bg: #FBF8F4;
    --color-bg-alt: #F3ECE3;
    --color-border: #E4D9CC;
    --font-family: 'Caviar Dreams', 'Quicksand', 'Segoe UI', Verdana, sans-serif;
    --spacing-unit: 1rem;
    --max-width: 1200px;
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem var(--spacing-unit);
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--color-rose-escuro);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-text);
    border-radius: 2px;
}

/* Main */
.main {
    flex: 1;
}

section h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--color-text);
}

.section-subtitle {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    color: var(--color-text);
    opacity: 0.75;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--color-verde) 0%, var(--color-rose) 100%);
    color: #fff;
    padding: 6rem 0 5rem;
}

.hero-inner {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-text {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: #fff;
    color: var(--color-rose-escuro);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Galeria */
.galeria {
    padding: 5rem 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.product-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.product-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-body h3 {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.product-card-body p {
    color: var(--color-text);
    opacity: 0.8;
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 1rem;
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-rose-escuro);
}

/* FAQ */
.faq {
    background-color: var(--color-bg-alt);
    padding: 5rem 0;
}

.faq-lista {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item-header {
    width: 100%;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    transition: background-color 0.3s;
}

.faq-item-header:hover,
.faq-item-header:focus-visible {
    background-color: var(--color-bg-alt);
}

.faq-toggle {
    font-size: 1.25rem;
    color: var(--color-rose-escuro);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item-header[aria-expanded="true"] .faq-toggle {
    transform: rotate(180deg);
}

.faq-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-content.open {
    max-height: 500px;
}

.faq-item-content p {
    padding: 0 1.25rem 1.1rem;
    color: var(--color-text);
    opacity: 0.85;
}

/* Contato */
.contato {
    padding: 5rem 0;
    text-align: center;
}

.contato-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 360px;
    margin: 0 auto;
}

.contato-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    background-color: var(--color-bg-alt);
    text-decoration: none;
    font-weight: 600;
    color: var(--color-text);
    transition: background-color 0.3s, transform 0.2s;
}

.contato-link:hover,
.contato-link:focus-visible {
    background-color: var(--color-verde);
    color: #fff;
    transform: translateY(-2px);
}

.contato-icon {
    display: inline-flex;
}

/* Footer */
.footer {
    background-color: var(--color-text);
    color: #fff;
    margin-top: 3rem;
}

.footer-inner {
    padding: 3rem var(--spacing-unit);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo {
    height: 64px;
    width: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    opacity: 0.9;
}

.footer-info a {
    text-decoration: none;
}

.footer-info a:hover,
.footer-info a:focus-visible {
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Empty state */
.empty-state {
    text-align: center;
    opacity: 0.7;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.open {
        max-height: 300px;
    }

    .nav a {
        padding: 1rem var(--spacing-unit);
        border-top: 1px solid var(--color-border);
    }

    .hero {
        padding: 4rem 0 3.5rem;
    }

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

    .galeria-grid {
        grid-template-columns: 1fr;
    }
}
