/* Configurações Globais */
:root {
    --degrade-rosa: linear-gradient(135deg, #ff85b2 0%, #ff4081 100%);
    --rosa-claro: #fff0f5;
    --texto-escuro: #4a4a4a;
    --branco: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--rosa-claro);
    color: var(--texto-escuro);
}

/* Navbar Fixa e Moderna */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    padding: 20px 0;
    transition: 0.4s all ease;
    background: transparent; /* Começa transparente no topo */
}

/* Efeito ao rolar a página */
.navbar.scroll {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ff4081;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-logo span { color: #4a4a4a; font-weight: 300; }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
}

.nav-links li { position: relative; margin-left: 30px; }

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

/* Dropdown Elegante */
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 10px;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content, 
.user-area:hover .dropdown-content { display: block; animation: slideUp 0.3s ease; }

.dropdown-content a {
    padding: 10px 20px;
    display: block;
    font-weight: 400;
}

.dropdown-content a:hover { background: #fff0f5; color: #ff4081; }

/* Botão de Login Especial */
.btn-nav-login {
    background: linear-gradient(135deg, #ff85b2 0%, #ff4081 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}

/* Estilo Mobile */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background: #ff4081; margin: 5px 0; border-radius: 3px; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav-links {
        display: none; /* Esconde o menu */
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; }
}

/* Correção do Dropdown no Mobile */
@media (max-width: 768px) {
    .dropdown-content {
        position: static; /* Remove o absolute */
        box-shadow: none;
        background: #fdfdfd;
        display: none; /* Escondido por padrão */
        width: 100%;
        padding-left: 20px;
    }
    
    /* Quando a classe 'show' for adicionada via JS, mostra o dropdown */
    .dropdown-content.show {
        display: block;
    }

    .dropdown a.dropbtn::after {
        content: ' ▼';
        font-size: 10px;
    }
}
/* Header de 500px Centralizado */
.main-header {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1519751138087-5bf79df62d5b?auto=format&fit=crop&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay para dar leitura ao texto no header */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* Clareia a imagem de fundo */
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 60px;
    border-radius: 20px;
    border: 2px solid var(--branco);
}

.header-content h1 {
    font-size: 3rem;
    color: #ff4081;
    margin: 0;
}

/* Grade de Produtos (4 por linha) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.categoria-slider {
    display: flex;
    overflow-x: hidden; /* Esconde a barra para o JS controlar */
    gap: 20px;
    padding: 20px 0;
}

.produto-card:hover {
    transform: translateY(-5px);
}

.btn-comprar {
    width: 100%;
    background: var(--degrade-rosa);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

/* Container que segura as setas e o slider */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.categoria-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden; /* Esconde a barra de rolagem */
    scroll-behavior: smooth;
    width: 100%;
    padding: 20px 0;
}

/* Estilo das Setas com o Degradê que você pediu */
.seta-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff85b2 0%, #ff4081 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.seta-slider:hover {
    transform: translateY(-50%) scale(1.1);
}

.seta-esq { left: -22px; }
.seta-dir { right: -22px; }

/* Forçar 4 produtos por linha */
.produto-card {
    flex: 0 0 calc(25% - 15px); /* Ocupa exatamente 25% da largura menos o gap */
    background: var(--branco);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* Ajuste para telas pequenas (Celulares) */
@media (max-width: 768px) {
    .produto-card {
        /* Ocupa 75% da tela para mostrar que existem mais produtos à direita */
        flex: 0 0 75%; 
        margin-right: 15px; /* Espaçamento entre os cards no celular */
    }

    .produto-galeria {
        height: 200px; /* Reduz um pouco a altura no celular para melhor ergonomia */
    }
}

/* Ajuste para telas maiores (Desktop) */
@media (min-width: 769px) {
    .produto-card {
        /* Seus 25% originais para telas grandes */
        flex: 0 0 calc(25% - 15px);
    }
}
.img-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

/* Carrinho Lateral */
.cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 350px; height: 100%;
    background: #fff;
    z-index: 3000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(100%); /* Escondido */
    display: flex;
    flex-direction: column;
}

.cart-drawer.active { transform: translateX(0); }

#cart-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2900;
}

.cart-header {
    padding: 20px;
    background: var(--degrade-rosa);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.cart-body { padding: 20px; flex-grow: 1; overflow-y: auto; }

.cart-footer { padding: 20px; border-top: 1px solid #eee; }

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.btn-finalizar {
    width: 100%;
    background: #2ecc71; /* Verde para converter a venda */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-finalizar:hover { background: #27ae60; }

/* Estado Inicial: Escondido à direita */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100vh; /* Altura total da tela */
    background: #fff;
    z-index: 3000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    
    /* Move o carrinho 100% para fora da tela (para a direita) */
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    display: flex;
    flex-direction: column;
}

/* Estado Ativo: Desliza para dentro da tela */
.cart-drawer.active {
    transform: translateX(0); /* Volta para a posição original */
}

/* Overlay (Fundo escuro quando o carrinho abre) */
#cart-overlay {
    display: none; /* Começa escondido */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2900;
    backdrop-filter: blur(2px); /* Efeito UX de desfoque no fundo */
}

/* O container da foto no card */
.produto-galeria {
    width: 100%;
    height: 250px; /* Altura fixa para manter o padrão */
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
}

/* A imagem em si */
.produto-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* O segredo para não achatar */
    object-position: center;
    transition: transform 0.5s ease;
}

/* Efeito de zoom suave ao passar o mouse */
.produto-card:hover .produto-galeria img {
    transform: scale(1.08);
}

.seta-foto {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}

.produto-card:hover .seta-foto { opacity: 1; }

.acoes-card {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-ver-mais {
    flex: 3;
    background: #f0f2f5;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-carrinho-curto {
    flex: 1;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* Container do Modal */
.modal-container {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 4000;
    padding: 20px;
    align-items: center; 
    justify-content: center;
    overflow-y: auto;
}

.modal-content-detalhes {
    background: white;
    width: 85%;
    max-width: 900px;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    animation: zoomIn 0.3s ease;
    margin: auto;
}

/* Ajustes Desktop para Mobile */
@media (max-width: 768px) {
    .modal-content-detalhes { padding: 20px; }
    
    .detalhes-flex-wrapper {
        flex-direction: column; /* Empilha no mobile */
        gap: 20px;
    }
    
    #detalhe-nome { font-size: 1.6rem; }
}

.detalhes-grid {
    display: flex;
    gap: 30px;
}

.detalhes-foto { flex: 1; }
.detalhes-foto img { width: 100%; border-radius: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.detalhes-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }

#detalhe-nome { color: #2d3436; font-size: 2rem; margin-bottom: 5px; }
.detalhe-categoria { color: #ff4081; font-weight: bold; font-size: 0.9rem; margin-bottom: 20px; display: block; }
#detalhe-descricao { color: #636e72; line-height: 1.6; margin-bottom: 30px; }

.detalhe-preco-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

#detalhe-preco { font-size: 1.8rem; font-weight: 800; color: #2d3436; }

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Botão fechar minimalista */
.fechar-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none; /* Remove o fundo */
    border: none;     /* Remove a borda */
    font-size: 32px;
    color: #bbb;      /* Cor discreta */
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    z-index: 10;
}

.fechar-modal:hover {
    color: #ff4081; /* Cor de destaque ao passar o mouse */
    transform: rotate(90deg); /* Efeito inovador de rotação */
}

/* Garante que o conteúdo do modal não seja clicável como o fundo */
.modal-content-detalhes {
    position: relative;
    /* ... resto do seu código ... */
}

.detalhes-grid { display: flex; gap: 40px; align-items: flex-start; }

.detalhes-foto-container { flex: 1.2; position: relative; }
.detalhes-foto-container img { width: 100%; border-radius: 15px; transition: 0.5s; }

.detalhes-texto { flex: 1; display: flex; flex-direction: column; }

#detalhe-nome { font-size: 2.2rem; color: #333; margin-bottom: 5px; }
.detalhe-tag { background: #fff0f5; color: #ff4081; padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: bold; align-self: flex-start; margin-bottom: 15px; }

.detalhe-scroll { max-height: 150px; overflow-y: auto; margin-bottom: 20px; padding-right: 10px; }
#detalhe-descricao { line-height: 1.6; color: #666; font-size: 14px; }

.detalhe-preco-box { margin-bottom: 25px; border-bottom: 2px dashed #eee; padding-bottom: 15px; }
#detalhe-preco { font-size: 2.5rem; font-weight: 800; color: #2d3436; display: block; }

/* Design da Caixa de Frete */
.frete-box { background: #f9f9f9; padding: 15px; border-radius: 12px; margin-bottom: 20px; }
.frete-box label { font-size: 13px; font-weight: bold; color: #444; margin-bottom: 8px; display: block; }
.frete-input-group { display: flex; gap: 5px; }
.frete-input-group input { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 8px; outline: none; }
.frete-input-group button { background: #333; color: white; border: none; padding: 10px 15px; border-radius: 8px; cursor: pointer; transition: 0.3s; }
.frete-input-group button:hover { background: #ff4081; }

#resultado-frete { margin-top: 10px; font-size: 13px; color: #2ecc71; font-weight: bold; }

.btn-comprar-modal { 
    background: var(--gradient); 
    color: white; border: none; padding: 18px; 
    border-radius: 12px; font-size: 1.1rem; font-weight: bold; 
    cursor: pointer; box-shadow: 0 10px 20px rgba(255, 64, 129, 0.2); 
}
.card-frete {
    background: #e3f2fd; /* Azul clarinho remetendo a entrega */
    border-left: 4px solid #2196f3;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    animation: fadeIn 0.4s ease;
}

.frete-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 11px; text-transform: uppercase; color: #1976d2; font-weight: bold; }

.frete-valores p { margin: 5px 0; font-size: 14px; color: #333; display: flex; justify-content: space-between; }

.detalhes-miniaturas {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.mini-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #eee;
    transition: 0.2s;
}

.mini-thumb:hover {
    border-color: #ff4081;
    transform: scale(1.1);
}

/* Sidebar Minimalista */
.carrinho-sidebar {
    position: fixed;
    top: 0; right: -320px;
    width: 320px; height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    z-index: 3000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column;
}

.carrinho-sidebar.active { right: 0; }

.carrinho-header {
    padding: 25px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.header-content h3 { margin: 0; font-size: 1.1rem; color: #333; }
.header-content span { font-size: 0.8rem; color: #ff4081; font-weight: 500; }

.carrinho-corpo {
    flex: 1; overflow-y: auto; padding: 20px;
    scrollbar-width: thin;
}

/* Card de Item no Carrinho */
.item-carrinho-render {
    display: flex; gap: 12px; margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

.item-carrinho-render img {
    width: 60px; height: 60px; border-radius: 12px;
    object-fit: cover; background: #f9f9f9;
}

.item-info-detalhe h4 { font-size: 0.9rem; margin: 0 0 5px; color: #444; }
.item-info-detalhe .preco-unit { font-size: 0.85rem; font-weight: bold; color: #333; }

.qtd-selector {
    display: flex; align-items: center; gap: 10px; margin-top: 8px;
    background: #f5f5f5; width: fit-content; border-radius: 20px; padding: 2px 8px;
}

.qtd-selector button {
    border: none; background: none; cursor: pointer; font-weight: bold; padding: 2px 5px;
}

/* Rodapé "Finalizar" */
.footer-carrinho {
    padding: 25px; background: #fff;
    border-top: 1px solid #f5f5f5;
}

.total-box {
    display: flex; justify-content: space-between; margin-bottom: 15px;
}

.total-box .valor { font-size: 1.3rem; font-weight: 800; color: #333; }
.aviso-entrega { font-size: 0.75rem; color: #999; text-align: center; margin-bottom: 15px; }

.btn-finalizar-whats {
    width: 100%; padding: 16px; border-radius: 15px;
    background: #25d366; color: white; border: none;
    font-weight: bold; font-size: 0.95rem; cursor: pointer;
    transition: 0.3s;
}

.btn-finalizar-whats:hover { background: #1eb957; transform: translateY(-2px); }

/* Estado Vazio */
.carrinho-vazio {
    text-align: center; margin-top: 50px;
}
.carrinho-vazio .icon { font-size: 3rem; display: block; margin-bottom: 10px; }
/* Ícone na Navbar */
.cart-icon-container {
    position: relative;
    cursor: pointer;
    font-size: 24px;
    margin-right: 20px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #ff4081;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* Corpo do carrinho */
.carrinho-corpo { flex: 1; overflow-y: auto; padding: 20px; }

.item-carrinho-render {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.footer-carrinho { padding: 20px; border-top: 2px solid #eee; }

.total-box {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

#cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1999;
}

#cart-overlay.active { display: block; }

.btn-finalizar-whats {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* Etiqueta de status do carrinho (Ex: 2 itens selecionados) */
.badge-status {
    display: inline-block;
    background: #fff0f5; /* Um rosa bem clarinho, quase branco */
    color: #ff4081; /* O rosa principal dos laços */
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 10px;
    border-radius: 50px; /* Formato de pílula */
    margin-top: 5px;
    border: 1px solid rgba(255, 64, 129, 0.1);
}

/* Ajuste no título para não brigar com a badge */
.titulo-modal {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
}

/* Efeito sutil ao passar o mouse nos itens do carrinho */
.item-carrinho-render:hover {
    background: #fdfdfd;
    transform: translateX(-5px);
    transition: 0.3s;
}

.nav-logo span { color: #ff4081; font-weight: 300; margin: 0 3px; }
/* Importando fontes elegantes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;600&display=swap');

.interative-header {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff; /* Fundo limpo para destacar a arte */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none; /* Esconde o cursor padrão para usar um customizado pelo JS */
}

#headerCanvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.header-overlay-ch {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
    z-index: 2;
}

.header-content-ch {
    position: relative;
    z-index: 3;
    text-align: center;
    perspective: 1000px; /* Necessário para o efeito 3D no JS */
}

/* Logo Camada sobre Camada com Brilho Suave */
.logo-ch-layered {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: #333;
    position: relative;
    margin: 0;
    letter-spacing: -2px;
}

/* Efeito Neon Soft Rosa na Logo */
.logo-ch-layered::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    color: #ff4081;
    opacity: 0.5;
    filter: blur(10px);
    z-index: -1;
    animation: neonPulse 3s infinite alternate;
}

/* Slogan com Efeito de Digitação */
.typing-slogan {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 2px;
    overflow: hidden; /* Esconde o texto que ainda não foi "digitado" */
    border-right: 2px solid #ff4081; /* O cursor de digitação */
    white-space: nowrap; /* Impede que o texto quebre linha */
    margin: 20px auto 0;
    width: 0; /* Começa com largura zero */
    animation: typing 3.5s steps(40, end) forwards, blink-cursor 0.75s step-end infinite;
}

/* Animações CSS3 */
@keyframes neonPulse {
    from { filter: blur(10px); opacity: 0.5; }
    to { filter: blur(15px); opacity: 0.8; }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; } /* Ajuste a porcentagem baseada no tamanho do texto */
}

@keyframes blink-cursor {
    from, to { border-color: transparent; }
    50% { border-color: #ff4081; }
}

.main-footer {
    background-color: #fdfafb; /* O off-white suave que usamos no header */
    padding: 80px 20px 30px;
    border-top: 1px solid rgba(255, 64, 129, 0.1);
    font-family: 'Poppins', sans-serif;
    color: #555;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-column h3 {
    color: #ff4081;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #ff4081;
    margin: 0 5px;
    font-style: italic;
}

.footer-column p {
    line-height: 1.8;
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #777;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ff4081;
    padding-left: 5px;
}

/* Ícones Sociais */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.1);
    transition: 0.3s;
}

.social-links a:hover {
    background: #ff4081;
    transform: translateY(-3px);
}

/* Rodapé Final */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #999;
}

.payments span {
    font-size: 1.5rem;
    margin-left: 15px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}

.payments span:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Container do Modal */
.modal-container {
    display: none; position: fixed; z-index: 9999;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(74, 28, 44, 0.6); /* Rosa escuro translúcido */
    backdrop-filter: blur(8px); align-items: center; justify-content: center;
}

.modal-content-detalhes {
    background: #fdfafb; width: 90%; max-width: 1000px;
    border-radius: 30px; position: relative; overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Estrutura Flex */
.detalhes-flex-wrapper { display: flex; flex-wrap: wrap; }

/* Galeria */
.detalhes-galeria { flex: 1.2; min-width: 350px; padding: 20px; background: #fff; }

.foto-principal-view { 
    width: 100%; height: 450px; border-radius: 20px; 
    overflow: hidden; margin-bottom: 15px; 
}

.foto-principal-view img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.detalhes-miniaturas { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; }

.miniatura-item { 
    width: 70px; height: 70px; border-radius: 10px; 
    cursor: pointer; object-fit: cover; border: 2px solid transparent; 
    transition: 0.3s; 
}
.miniatura-item:hover, .miniatura-item.active { border-color: #ff4081; transform: translateY(-2px); }

/* Lado do Texto */
.detalhes-info { 
    flex: 1; padding: 40px; display: flex; 
    flex-direction: column; justify-content: space-between; 
}

.badge-artesanal { color: #ff4081; font-size: 12px; font-weight: bold; letter-spacing: 1px; }

.info-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin: 10px 0; color: #333; }

.detalhe-preco-wrapper { margin-bottom: 30px; }
#detalhe-preco { font-size: 2rem; font-weight: bold; color: #ff4081; }
.parcelamento { font-size: 14px; color: #888; margin: 0; }

.detalhe-scroll-descricao { max-height: 180px; overflow-y: auto; margin-bottom: 30px; }
.detalhe-scroll-descricao h3 { font-size: 14px; text-transform: uppercase; color: #555; margin-bottom: 10px; }
.detalhe-scroll-descricao p { line-height: 1.6; color: #666; font-size: 0.95rem; }

/* Botões */
.detalhes-acoes { display: flex; flex-direction: column; gap: 12px; }

.btn-comprar-modal {
    background: #ff4081; color: white; border: none; padding: 18px;
    border-radius: 15px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.btn-whatsapp-modal {
    background: #25d366; color: white; border: none; padding: 15px;
    border-radius: 15px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.btn-comprar-modal:hover, .btn-whatsapp-modal:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Responsividade */
@media (max-width: 768px) {
    .detalhes-flex-wrapper { flex-direction: column; }
    .detalhes-galeria { min-width: 150px; }
    .foto-principal-view { height: 300px; }
}

