/* ============================================ */
/* MMG ARTS - ESTILO PRINCIPAL                   */
/* Paleta Candy Colors utilizada:               */
/* Rosa pastel #F8C8DC                          */
/* Lilás claro #DCC6F5                          */
/* Azul bebê #CBE7FF                            */
/* Verde menta #D8F3DC                          */
/* Amarelo baunilha #FFF3B0                     */
/* Branco #FFFFFF                               */
/* Cinza suave #F5F5F5                          */
/* ============================================ */

/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #FFFFFF;
    color: #555;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== CORES PRINCIPAIS ===== */
:root {
    --rosa: #F8C8DC;
    --lilas: #DCC6F5;
    --azul-bebe: #CBE7FF;
    --verde-menta: #D8F3DC;
    --amarelo: #FFF3B0;
    --branco: #FFFFFF;
    --cinza: #F5F5F5;
    --texto: #8B6B8B;
    --texto-escuro: #6B4E6B;
    --sombra: 0 10px 30px rgba(0,0,0,0.05);
    --sombra-hover: 0 15px 40px rgba(0,0,0,0.1);
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: #6B4E6B;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #6B4E6B;
}

.logo h1 span {
    color: #F8C8DC;
}

.logo p {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* ===== HEADER ===== */
.top-bar {
    background-color: var(--rosa);
    padding: 8px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #6B4E6B;
    font-weight: 500;
}

.main-header {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid var(--cinza);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    flex: 1;
    max-width: 400px;
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid var(--cinza);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--rosa);
    box-shadow: 0 0 0 3px rgba(248,200,220,0.2);
}

.search-box button {
    background: var(--rosa);
    border: none;
    padding: 0 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    background: var(--lilas);
}

.header-actions {
    display: flex;
    gap: 25px;
}

.icon-link {
    text-decoration: none;
    color: #6B4E6B;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
}

.icon-link:hover {
    color: var(--rosa);
}

.icon-link i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--rosa);
    color: #6B4E6B;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ===== MENU NAVEGAÇÃO ===== */
.main-nav {
    background: white;
    border-bottom: 1px solid var(--cinza);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 15px 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #6B4E6B;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--rosa);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: var(--sombra);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li:hover {
    background: var(--cinza);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6B4E6B;
    cursor: pointer;
    padding: 10px;
}

/* ===== BANNER PRINCIPAL ===== */
.hero-banner {
    background: linear-gradient(135deg, var(--lilas) 0%, var(--azul-bebe) 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #6B4E6B;
}

.highlight {
    color: var(--rosa);
    font-weight: 700;
}

.hero-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #8B6B8B;
}

.btn-primary {
    display: inline-block;
    background: var(--rosa);
    color: #6B4E6B;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #F4B6D0;
}

.hero-decoration {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.6);
}

/* ===== CATEGORIAS ===== */
.categories {
    padding: 60px 0;
    background: var(--cinza);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header p {
    color: #999;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.category-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--sombra);
}

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

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-card h3 {
    margin-bottom: 10px;
}

/* ===== PRODUTOS ===== */
.featured-products {
    padding: 60px 0;
}

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

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--amarelo);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-rating {
    color: #FFB800;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-rating span {
    color: #999;
    margin-left: 5px;
}

.product-description {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

.product-price {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
    margin-right: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B4E6B;
}

.btn-add-cart {
    width: 100%;
    background: var(--verde-menta);
    border: none;
    padding: 12px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: #C4E8CB;
    transform: scale(1.02);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--amarelo) 0%, var(--rosa) 100%);
    padding: 50px 20px;
    text-align: center;
    margin: 40px 0;
}

.promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.btn-secondary {
    display: inline-block;
    background: var(--branco);
    color: #6B4E6B;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== DEPOIMENTOS ===== */
.testimonials {
    padding: 60px 0;
    background: var(--cinza);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--sombra);
}

.testimonial-card i.fa-star {
    color: #FFB800;
    margin: 0 2px;
}

.testimonial-card p {
    margin: 20px 0;
    font-style: italic;
}

.client-info strong {
    color: #6B4E6B;
}

/* ===== INSTAGRAM FEED ===== */
.instagram-feed {
    padding: 60px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.insta-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 2rem;
    color: white;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-instagram:hover {
    transform: translateY(-2px);
}

.insta-btn {
    text-align: center;
}

/* ===== RODAPÉ ===== */
footer {
    background: #6B4E6B;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: white;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--rosa);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--rosa);
}

.payment-icons i {
    font-size: 2rem;
    margin-right: 10px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== WHATSAPP FLUTUANTE ===== */
/* Para mudar o número: edite o link href no index.html */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b859;
}

.whatsapp-float span {
    display: none;
}

.whatsapp-float:hover span {
    display: inline;
    position: absolute;
    right: 70px;
    background: black;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--sombra);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-banner h2 {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .main-header .container {
        flex-direction: column;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}