/* ---- GERAL & VARIÁVEIS ---- */
:root {
    --color-background: #FDFADE;
    --color-primary: #FFD700;
    --color-text-dark: #3D2B1F;
    --color-text-light: #222;
    --color-white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text-light);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-highlight {
    background-color: #fefef5;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
}

/* ---- HEADER ---- */
header {
    background-color: var(--color-background);
    padding: 10px 0;
    border-bottom: 2px solid rgba(61, 43, 31, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 70px;
}

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

nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

nav a:hover {
    border-color: var(--color-text-dark);
}

/* ---- HERO SECTION ---- */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(https://images.pexels.com/photos/1458928/pexels-photo-1458928.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

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

.btn {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e6c300;
}

/* ---- SOBRE ---- */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* ---- PRODUTOS ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--color-white);
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.5rem;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 10px 0;
}

.btn-secondary {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #5a422d;
}

/* ---- BLOG ---- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.blog-post-card {
    display: flex;
    gap: 20px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 5px;
}

.blog-post-card img {
    width: 180px;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 0 0 5px;
}

.blog-post-content {
    padding: 20px;
}

.post-date {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    margin: 5px 0 10px 0;
}

.blog-post-content a {
    color: var(--color-text-dark);
    font-weight: 700;
    text-decoration: none;
}

/* ---- FOOTER ---- */
footer {
    background-color: var(--color-text-dark);
    color: #ccc;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo img {
    height: 80px;
}

.footer-info h3, .footer-social h3 {
    color: var(--color-white);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.footer-social a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid #5a422d;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    h2 { font-size: 2.5rem; }
    .hero h1 { font-size: 2.8rem; }
    
    header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-content {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
}