/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #8b4513;
    --accent-color: #ff6b35;
    --dark-color: #2c1810;
    --light-color: #f8f6f0;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #ddd;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #d4af37, #ffd700);
    --gradient-dark: linear-gradient(135deg, #2c1810, #8b4513);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-color);
}

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

/* Header */
.header {
    background: var(--gradient-dark);
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-minimal h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

/* Menu Hambúrguer */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle:hover .hamburger-line {
    background: white;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    position: relative;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.menu-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: flex-start;
}

.menu-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    transform: translateX(10px);
}

.menu-link i {
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
}

.admin-menu-link {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-color);
    margin-top: 1rem;
}

.admin-menu-link:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
    width: 200px;
}

/* Hero Section */
.hero {
    background: var(--gradient-gold);
    color: var(--dark-color);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Logo do Hero */
.hero-logo-container {
    margin-bottom: 1rem;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    max-height: 120px;
    max-width: 300px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.logo-placeholder {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(44, 24, 16, 0.3);
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--dark-color);
}

.logo-icon {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: block;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.logo-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--dark-color);
    margin: 0;
}

/* Nome da Loja */
.store-name-container {
    margin: 1rem 0 2rem 0;
}

.store-name-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-name-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.store-name-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.store-name-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.store-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.store-name-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    gap: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dark-color), transparent);
    border-radius: 1px;
}

.decoration-icon {
    font-size: 1.2rem;
    color: var(--dark-color);
    animation: sparkle 2s ease-in-out infinite;
}

.store-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--dark-color);
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Botões Flutuantes */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1500;
    transition: all 0.3s ease;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.floating-btn:hover {
    transform: scale(1.1);
    width: 180px;
    border-radius: 30px;
    justify-content: flex-start;
    padding-left: 20px;
}

.floating-btn i {
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-text {
    position: absolute;
    left: 70px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 2;
}

.floating-btn:hover .btn-text {
    opacity: 1;
    left: 55px;
}

/* Cores específicas dos botões */
.shopee-btn {
    background: linear-gradient(135deg, #ee4d2d, #ff6b35);
}

.shopee-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #ee4d2d);
    box-shadow: 0 8px 25px rgba(238, 77, 45, 0.4);
}

.shopee-alt-btn {
    background: linear-gradient(135deg, #ff6600, #ff8c00);
}

.shopee-alt-btn:hover {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Animação de pulso para WhatsApp */
.whatsapp-btn {
    animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Botão de Compartilhar - Design Diferenciado */
.share-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.share-btn:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.share-btn:hover::before {
    left: 100%;
}

/* Animação especial para o botão de compartilhar */
.share-btn {
    animation: shareGlow 4s ease-in-out infinite;
}

@keyframes shareGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(102, 126, 234, 0.6);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(102, 126, 234, 0);
    }
}

/* Efeito de entrada */
.floating-btn {
    animation: slideInRight 0.6s ease forwards;
    opacity: 0;
}

.floating-btn:nth-child(1) { animation-delay: 0.1s; }
.floating-btn:nth-child(2) { animation-delay: 0.2s; }
.floating-btn:nth-child(3) { animation-delay: 0.3s; }
.floating-btn:nth-child(4) { animation-delay: 0.4s; }
.floating-btn:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-content {
    margin-top: 1rem;
}

.btn-primary {
    display: inline-block;
    background: var(--dark-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-decoration {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 2rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration i:nth-child(2) {
    animation-delay: -2s;
    margin: 0 1rem;
}

.hero-decoration i:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Seções */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Produtos em Destaque */
.featured-section {
    padding: 4rem 0;
    background: white;
}

.featured-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.carousel-container::-webkit-scrollbar {
    height: 8px;
}

.carousel-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.featured-card {
    min-width: 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Filtros */
.filters-section {
    padding: 3rem 0;
    background: #f9f9f9;
    border-bottom: 1px solid var(--border-color);
}

.filters-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.filters-form input,
.filters-form select {
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-width: 200px;
}

.filters-form input:focus,
.filters-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-search {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.btn-filter,
.btn-clear {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-filter {
    background: var(--gradient-gold);
    color: var(--dark-color);
}

.btn-clear {
    background: var(--text-light);
    color: white;
}

.btn-filter:hover,
.btn-clear:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Grid de Produtos */
.products-section {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

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

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

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    color: #ccc;
}

.destaque-badge,
.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.destaque-badge {
    background: var(--gradient-gold);
    color: var(--dark-color);
}

.promo-badge {
    background: var(--accent-color);
    top: 45px;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.product-brand {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.product-volume {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-gender {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-old {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.price-new {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.discount {
    background: var(--accent-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-hidden {
    margin-bottom: 1.5rem;
}

.contact-for-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
    width: 100%;
}

.contact-for-price:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

.contact-for-price i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.btn-details {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--dark-color);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* No Products */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-main h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.footer-main p {
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 1.5rem auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-color);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.close:active {
    transform: scale(0.95);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .logo-minimal h1 {
        font-size: 1.3rem;
    }
    
    .menu-link {
        font-size: 1.1rem;
        min-width: 200px;
        padding: 0.8rem 1.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .logo-image {
        max-height: 100px;
        max-width: 250px;
    }
    
    .logo-title {
        font-size: 1.5rem;
    }
    
    .logo-placeholder {
        padding: 1.5rem;
    }
    
    .store-name-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .store-name {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .store-tagline {
        font-size: 1rem;
    }
    
    .decoration-line {
        width: 40px;
    }
    
    /* Ajustar botões flutuantes para tablet */
    .floating-buttons {
        right: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .floating-btn:hover {
        width: 160px;
    }
    
    /* Garantir visibilidade em tablets */
    .floating-btn:active {
        transform: scale(0.95);
    }
    
    .hero-decoration {
        display: none;
    }
    
    .filters-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
    }
    
    .filters-form input,
    .filters-form select {
        min-width: auto;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }
    
    .close {
        right: 0.5rem;
        top: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .store-name-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .store-name {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .store-tagline {
        font-size: 0.9rem;
    }
    
    .decoration-line {
        width: 30px;
    }
    
    .store-name-decoration {
        gap: 0.5rem;
    }
    
    /* Ajustar botões flutuantes para mobile - manter na lateral */
    .floating-buttons {
        right: 8px;
        gap: 8px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .floating-btn:hover {
        width: 45px;
        transform: scale(1.15);
        border-radius: 50%;
        padding-left: 0;
        justify-content: center;
    }
    
    .floating-btn:hover .btn-text {
        opacity: 0;
    }
    
    .btn-text {
        display: none;
    }
    
    /* Tooltip para mobile */
    .floating-btn:active::after {
        content: attr(title);
        position: absolute;
        right: 55px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 1000;
        animation: tooltipFadeIn 0.3s ease;
    }
    
    @keyframes tooltipFadeIn {
        from { opacity: 0; transform: translateY(-50%) translateX(10px); }
        to { opacity: 1; transform: translateY(-50%) translateX(0); }
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        min-width: 250px;
    }
}

/* Animações de carregamento */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

.slide-up {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Telas muito pequenas (smartphones pequenos) */
@media (max-width: 360px) {
    .floating-buttons {
        right: 5px;
        gap: 6px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-btn:hover {
        width: 40px;
        transform: scale(1.1);
    }
    
    /* Ajuste dos tooltips para telas pequenas */
    .floating-btn:active::after {
        font-size: 11px;
        padding: 6px 10px;
        right: 50px;
    }
}

/* Modal de Compartilhamento */
.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.share-modal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideInUp 0.4s ease;
}

.share-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-modal-header h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-modal-header i {
    color: #667eea;
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.share-modal-body {
    padding: 1.5rem 2rem 2rem;
}

.share-modal-body p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: center;
}

.share-url-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.5rem;
}

.share-url-container input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.copy-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.share-option:hover::before {
    left: 100%;
}

.share-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-option.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Notificações */
.share-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10001;
    min-width: 300px;
    animation: slideInNotification 0.4s ease;
}

.share-notification.success {
    border-left: 4px solid #10b981;
}

.share-notification.success i {
    color: #10b981;
}

.share-notification.error {
    border-left: 4px solid #ef4444;
}

.share-notification.error i {
    color: #ef4444;
}

.share-notification i {
    font-size: 1.2rem;
}

.share-notification span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInNotification {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsividade para Modal */
@media (max-width: 768px) {
    .share-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .share-modal-header,
    .share-modal-body {
        padding: 1.5rem;
    }
    
    .share-options {
        gap: 0.75rem;
    }
    
    .share-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .share-url-container {
        flex-direction: column;
    }
    
    .copy-btn {
        justify-content: center;
    }
}
