:root {
    --primary-color: #3b5f4c;
    /* Verde floresta suave / Sálvia escura */
    --primary-light: #5b8770;
    --accent-color: #d19595;
    /* Rosa pó retrô */
    --accent-hover: #c47c7c;
    --bg-color: #fcfbfa;
    /* Off-white com tom quente */
    --text-main: #2c332e;
    --text-light: #6e7671;
    --white: #ffffff;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.08);
    --transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Acessibilidade: oculta visualmente mas mantém para screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── CRÍTICO: Header e Hero movidos para <style> inline no HTML ─── */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(209, 149, 149, 0.4);
}

/* Products Section */
.products {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 400;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    list-style: none;
    /* reset ul */
    padding: 0;
    /* reset ul */
    margin: 0;
    /* reset ul */
}

/* Reset article dentro do card */
.product-card article {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 6px;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.price-consultar {
    color: var(--accent-hover);
    font-style: italic;
}

.payment-info {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    width: 100%;
    margin-top: 18px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Features */
.features {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand .footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-style: italic;
    font-weight: 600;
}

.footer-brand p {
    opacity: 0.8;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.6;
    font-weight: 300;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    /* Hero mobile → inline <style> no HTML (text-align, etc.) */

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card article {
        flex-direction: row;
        align-items: stretch;
    }

    .product-image {
        width: 140px;
        height: auto;
        min-height: 150px;
        flex-shrink: 0;
    }

    .product-image img {
        height: 100%;
        object-fit: cover;
    }

    .product-info {
        padding: 16px 14px;
        justify-content: center;
        flex-grow: 1;
    }

    .product-info h3 {
        font-size: 1.05rem;
        margin-bottom: 6px;
        line-height: 1.25;
    }

    .product-info p {
        font-size: 0.82rem;
        margin-bottom: 8px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .price {
        font-size: 1.15rem;
        margin-top: auto;
        margin-bottom: 2px;
    }

    .payment-info {
        font-size: 0.72rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .btn-whatsapp {
        margin-top: 0;
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .btn-whatsapp i {
        font-size: 1rem;
    }

    .product-badge {
        top: 8px;
        left: 8px;
        right: auto;
        padding: 3px 6px;
        font-size: 0.6rem;
    }

    .products {
        padding: 60px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
