:root {
    --primary-color: #e6a7b0; /* Rosa mais doce */
    --secondary-color: #83584e; /* Marrom chocolate */
    --accent-color: #f7e0a3; /* Amarelo manteiga/doce de leite */
    --light-bg: #fce1e2; /* Fundo rosado claro */
    --dark-text: #5c3a32; /* Texto marrom escuro */
    --light-text: #ffffff; /* Texto claro */
    --section-bg: #fffaf0; /* Fundo de seção creme */
    --border-color: #d1a89c; /* Cor de borda suave */
    --shadow-color: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif; /* Poppins como fonte padrão */
    margin: 0;
    /* Fundo marmorizado fixo */
    background: url("/?originalUrl=https%3A%2F%2Fi.imgur.com%2FYT1IT3X.jpeg") repeat center center;
    background-size: 200px; /* Mantém o tamanho para repetição */
    background-attachment: fixed; /* Garante que não desapareça ao rolar */
    background-color: var(--light-bg); /* Cor de fundo para preencher áreas não cobertas pela imagem ou para fallback */
    color: var(--dark-text);
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px var(--shadow-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: var(--light-text);
}

.logo-text {
    font-family: 'Allura', cursive; /* Fonte Allura para o logo do cabeçalho */
    font-size: 2.5rem; /* Tamanho do nome da loja no cabeçalho */
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra mais forte para destacar */
    white-space: nowrap; /* Evita quebra de linha em telas pequenas */
}


.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.nav-list a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif; /* Fonte Poppins para o menu superior */
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary-color);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        background-color: var(--secondary-color);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list li {
        text-align: center;
    }

    .nav-list a {
        padding: 0.8rem 0;
        display: block;
    }

    .logo-text {
        font-size: 2.2rem; /* Ajuste para mobile */
    }
}

/* Hero Section */
.hero {
    background: none;
    color: var(--dark-text);
    text-align: center;
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo-container img {
    /* ESTILOS PARA O LOGO GRANDE OVAL NO TOPO */
    height: 250px; /* Altura maior */
    width: 350px;  /* Largura maior para formato oval */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    border: none; /* Remover borda */
    box-shadow: none; /* Remover sombra */
    border-radius: 50%; /* Faz a imagem oval quando largura e altura são diferentes */
    transition: transform 0.3s ease-in-out;
}

.hero-logo-container img:hover {
    transform: scale(1.05); /* Pequeno efeito ao passar o mouse */
}


.hero-slogan {
    font-family: 'Allura', cursive; /* Alterado para Allura */
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--dark-text);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #d697a0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: #724e46;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

/* General Section Styling */
section {
    padding: 4rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    background-color: var(--section-bg);
    position: relative;
    z-index: 1;
}

section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Allura', cursive; /* Alterado para Allura */
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* About Section */
.about-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Categories Section */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background-color: var(--section-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.category-card:hover .mprm-effect-hover-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.category-card h3 {
    font-family: 'Playfair Display', serif; /* Alterado para Playfair Display */
    font-size: 1.8rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.category-card .btn-primary {
    position: relative;
    z-index: 2;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Products Section */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.product-card h3 {
    font-family: 'Allura', cursive; /* Allura para títulos de produtos */
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 1rem 1rem 0.5rem 1rem;
}

.product-card .product-description {
    font-size: 0.95rem;
    color: var(--dark-text);
    padding: 0 1rem;
    flex-grow: 1;
}

.product-card .product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 1rem 1rem 1rem;
    display: block;
}

/* Product Detail Section */
.product-detail-card {
    background-color: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 8px 25px var(--shadow-color);
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
    overflow: hidden;
    padding-bottom: 2rem;
}

.product-detail-card img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.product-detail-card h3 {
    font-family: 'Allura', cursive; /* Allura para título de detalhe de produto */
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 0 2rem 1rem 2rem;
}

.product-detail-card .description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin: 0 2rem 1.5rem 2rem;
}

.product-detail-card .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 2rem 1.5rem 2rem;
}

.product-detail-card .hashtags {
    margin: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-detail-card .hashtags span {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.back-button {
    margin-top: 2rem;
    display: inline-block;
}

/* Contact Section */
.contact-info {
    font-size: 1.2rem;
    line-height: 2;
    margin-top: 3rem;
    color: var(--dark-text);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.5rem;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-message {
    font-family: 'Allura', cursive; /* Allura para mensagens de contato */
    font-size: 1.8rem;
    margin-top: 2rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* REMOVIDOS OS ESTILOS DA IMAGEM DO LOGO NO RODAPÉ */
/* NOVO ESTILO PARA O NOME DA MARCA EM TEXTO NO RODAPÉ */
.footer-brand-name {
    font-family: 'Allura', cursive;
    font-size: 2.2rem; /* Tamanho ajustável para o rodapé */
    color: var(--light-text);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-slogan {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .product-detail-card h3 {
        font-size: 2rem;
    }

    .hero-logo-container img {
        height: 200px; /* Ajuste para telas menores */
        width: 300px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        background-color: var(--secondary-color);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list li {
        text-align: center;
    }

    .nav-list a {
        padding: 0.8rem 0;
        display: block;
    }

    .logo-text {
        font-size: 2.2rem; /* Ajuste para mobile */
    }

    .hero {
        padding: 8rem 0;
    }

    .hero-slogan {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .category-grid, .product-list {
        grid-template-columns: 1fr;
    }

    .about-content, .contact-info {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .product-detail-card h3 {
        font-size: 1.8rem;
    }

    .product-detail-card .description,
    .product-detail-card .price {
        margin: 0 1rem 1rem 1rem;
    }

    .product-detail-card .hashtags {
        margin: 0 1rem;
    }

    .hero-logo-container img {
        height: 150px; /* Ajuste para mobile */
        width: 250px;
    }
    .footer-brand-name {
        font-size: 1.8rem; /* Ajuste para mobile */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0;
    }

    .hero-slogan {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-list a {
        font-size: 1rem;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    .product-card .product-price {
        font-size: 1.2rem;
    }

    .product-detail-card h3 {
        font-size: 1.5rem;
    }

    .hero-logo-container img {
        height: 100px; /* Ajuste para mobile */
        width: 180px;
    }
    .footer-brand-name {
        font-size: 1.5rem; /* Ajuste para mobile */
    }
}