@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --gold: #C5A059;
    --dark: #1A1A1A;
    --text: #4A4A4A;
    --bg-light: #F9F7F2;
    --white: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text);
    margin: 0;
    line-height: 1.8;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 700;
}

/* --- SEÇÃO SOBRE (Onde estava o erro) --- */
.section-about {
    padding: 100px 10%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 10px;
}

.features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
}

.features li::before {
    content: '→';
    margin-right: 15px;
    color: var(--gold);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    /* Menos arredondado = mais profissional */
    box-shadow: 30px 30px 0px rgba(197, 160, 89, 0.1);
}

/* --- SEÇÃO LOCALIZAÇÃO --- */
.section-location {
    padding: 80px 10%;
    text-align: center;
    background: var(--dark);
    color: var(--white);
}

.section-location h2 {
    color: var(--gold);
}

.btn-location {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 600;
}

.btn-location:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Responsividade */
@media (max-width: 768px) {
    .section-about {
        flex-direction: column;
        padding: 50px 5%;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

/* Navegação Slim e Elegante */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: absolute;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
    color: var(--white);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
}

/* Hero Section Reformulada */
.hero {
    position: relative;
    height: 100vh;
    /* Ocupa a tela inteira */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    /* Imagem de alta qualidade com overlay escuro */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.tagline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    /* Fonte fluida */
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Botões Modernos */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #b08e4d;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

/* config do demo*/
.demo-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.8);
    color: var(--gold);
    padding: 8px 15px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    z-index: 1000;
    backdrop-filter: blur(5px);
    pointer-events: none;
}

/* catalogo */
/* Grid de Produtos */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 10%;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price {
    font-weight: bold;
    color: var(--gold);
    font-size: 1.1rem;
}

.btn-add {
    background: var(--dark);
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-weight: 600;
}

/* Carrinho Lateral */
.cart-drawer {
    position: fixed;
    right: -350px;
    /* Escondido */
    top: 0;
    width: 350px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: var(--dark);
    color: white;
    display: flex;
    justify-content: space-between;
}

.cart-items-list {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.btn-checkout {
    width: 100%;
    background: #25D366;
    /* Cor do WhatsApp */
    color: white;
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

/*carrinho*/
/* Estilos Internos do Carrinho */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark);
}

.cart-item-info p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

.cart-item-qty {
    font-size: 0.9rem;
    background: #f4f4f4;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.total-container {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.empty-msg {
    text-align: center;
    color: #999;
    margin-top: 50px;
}

/* seção contato*/
/* --- SEÇÃO CONTATO --- */
.section-contato {
    padding: 100px 8%;
    background-color: var(--white);
    text-align: center;
}

.contato-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.contato-info {
    text-align: left;
}

.contato-info h2 {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contato-info p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Card do WhatsApp */
.whatsapp-card {
    background: var(--dark);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.whatsapp-card:hover {
    transform: translateY(-10px);
}

.whatsapp-card h3 {
    color: var(--gold);
    margin-top: 0;
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.whatsapp-card .btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.whatsapp-card .btn-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.contato-detalhes {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}