﻿/* ================================================
   Fernanda Semijoias - Loja CSS
   Fiel ao layout do modelo modelos/index.html
   Cores: #6607A5 (primary) e #C680E3 (light)
   Font: Inter
   ================================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background: #f6f6f8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* === Variables === */
:root {
    --primary: #6607A5;
    --primary-light: #C680E3;
    --primary-10: rgba(102, 7, 165, 0.1);
    --primary-90: rgba(102, 7, 165, 0.9);
    --bg-light: #f6f6f8;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-base: #334155;
    --text-muted: #475569;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --radius: 0.25rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-full: 9999px;
    --star: #eab308;
}

/* === Layout Helpers === */
.section-padding {
    padding: 3rem 1rem;
}
@media (min-width: 1024px) {
    .section-padding {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.section-padding-lg {
    padding: 5rem 1rem;
}
@media (min-width: 1024px) {
    .section-padding-lg {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
    background: var(--bg-white);
    padding: 0.75rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
}
@media (min-width: 1024px) {
    .site-header {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
}
.site-logo img {
    max-height: 60px;
}
.site-logo-text {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.site-logo-text small {
    display: block;
    font-weight: 400;
    font-style: italic;
    font-size: 0.7em;
    color: var(--text-muted);
}
.site-nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
}
.site-nav > a,
.site-nav .nav-dropdown-toggle {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}
.site-nav > a:hover,
.site-nav .nav-dropdown-toggle:hover {
    color: var(--primary);
}

/* -- Nav Dropdown (Desktop) -- */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    cursor: pointer;
}
.nav-dropdown-toggle .nav-arrow {
    font-size: 1.125rem;
    transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-base);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    background: var(--primary-10);
    color: var(--primary);
}
.nav-promo-link {
    border-top: 1px dashed #eee;
    margin-top: 4px;
    padding-top: 8px !important;
    color: #e74c3c !important;
    font-weight: 600 !important;
}
.nav-promo-link:hover {
    background: #fef2f2 !important;
    color: #c0392b !important;
}
@media (min-width: 768px) {
    .site-nav { display: flex; }
}

/* -- Mobile Dropdown -- */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.mobile-dropdown-toggle .mobile-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}
.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--bg-light);
}
.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}
.mobile-dropdown-menu li a {
    padding-left: 3rem !important;
    font-size: 0.875rem !important;
    color: var(--text-muted) !important;
    position: relative;
}
.mobile-dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    transform: translateY(-50%);
}
.mobile-menu-nav li a i {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: var(--primary-light);
    width: 1.25rem;
    text-align: center;
}

.header-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 1rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .header-right { gap: 2rem; }
}

.header-search {
    display: none;
    position: relative;
    min-width: 10rem;
    max-width: 16rem;
    height: 2.5rem;
}
.header-search-form {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}
.header-search .search-icon-wrap {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.75rem;
    color: var(--text-light);
    pointer-events: none;
    width: 2.5rem;
    z-index: 1;
}
.header-search input {
    width: 100%;
    height: 2.5rem;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    font-size: 0.875rem;
    padding: 0 0.5rem 0 2.5rem;
    color: var(--text-dark);
    outline: none;
}
.header-search input::placeholder { color: var(--text-light); }
.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.header-search-btn:hover { opacity: 0.85; }
.header-search-btn .material-symbols-outlined { font-size: 1.15rem; }
@media (min-width: 640px) {
    .header-search { display: flex; flex-direction: column; }
    .btn-search-toggle { display: none !important; }
}

/* === Mobile Search Bar (dropdown abaixo do header) === */
.btn-search-toggle {
    display: flex;
    border: none;
    cursor: pointer;
}
.mobile-search-bar {
    display: none;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1rem;
    position: sticky;
    top: 60px;
    z-index: 98;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: searchSlideDown 0.25s ease-out;
}
.mobile-search-bar.active {
    display: block;
}
@keyframes searchSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mobile-search-form {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    height: 2.5rem;
    position: relative;
}
.mobile-search-icon {
    position: absolute;
    left: 0.75rem;
    color: var(--text-light);
    font-size: 1.25rem;
    pointer-events: none;
}
.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 0.5rem 0 2.5rem;
    height: 100%;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
}
.mobile-search-input::placeholder {
    color: var(--text-light);
}
.mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.mobile-search-btn:hover { opacity: 0.85; }
.mobile-search-btn .material-symbols-outlined { font-size: 1.15rem; }
@media (min-width: 640px) {
    .mobile-search-bar { display: none !important; }
}

.header-btns {
    display: flex;
    gap: 0.5rem;
}
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    height: 2.5rem;
    width: 2.5rem;
    background: var(--bg-light);
    color: var(--text-muted);
    transition: background 0.2s;
    font-size: 1.25rem;
}
.btn-icon:hover {
    background: var(--border);
}

.btn-carrinho {
    position: relative;
}

.btn-usuario {
    position: relative;
}
.usuario-status-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.usuario-status-badge.logado {
    background: #22c55e;
}
.usuario-status-badge.deslogado {
    background: #ef4444;
}

.carrinho-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.carrinho-badge-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    margin-left: 6px;
    padding: 0 5px;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    color: var(--text-dark);
    padding: 14px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary);
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification .material-symbols-outlined {
    color: #27ae60;
    font-size: 1.3rem;
}

/* ── Botão Finalizar Compra flutuante (topo direita) ── */
.finalizar-fab {
    position: fixed;
    top: 82px;
    right: 1.5rem;
    z-index: 48;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--primary) 0%, #8b2fc9 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.55rem 1.2rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 14px rgba(102, 7, 165, 0.3);
    transition: all 0.3s ease;
    animation: fabSlideDown 0.35s ease-out;
}
.finalizar-fab:hover {
    box-shadow: 0 6px 20px rgba(102, 7, 165, 0.45);
    color: #fff;
    padding-bottom: 0.7rem;
}
.finalizar-fab .material-symbols-outlined {
    font-size: 1.15rem;
}
.finalizar-fab-label {
    line-height: 1;
}
.finalizar-fab-qtd {
    background: rgba(255,255,255,0.25);
    min-width: 1.35rem;
    height: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}
@keyframes fabSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
@media (max-width: 768px) {
    .site-logo-text {
        display: none;
    }
    .finalizar-fab {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 0.75rem 1.2rem;
        font-size: 0.8rem;
        justify-content: center;
        box-shadow: 0 -4px 14px rgba(102, 7, 165, 0.3);
        animation: fabSlideUp 0.35s ease-out;
    }
}
@keyframes fabSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* Quick cart button on product cards */
.btn-quick-cart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.25s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(102,7,165,0.3);
}

.btn-quick-cart .material-symbols-outlined {
    font-size: 1.1rem;
}

.rel-card-img:hover .btn-quick-cart,
.product-card-img:hover .btn-quick-cart {
    opacity: 1;
    transform: translateY(0);
}

.btn-quick-cart:hover {
    background: #5206a0;
    transform: scale(1.1);
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.5rem;
    color: var(--text-dark);
}
@media (min-width: 768px) {
    .menu-toggle { display: none; }
}

/* === Mobile Menu === */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 85%; max-width: 360px;
    background: var(--bg-white);
    z-index: 100;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
    font-size: 1.25rem;
    color: var(--text-muted);
    padding: 0.5rem;
}
.mobile-menu-nav {
    padding: 1rem 0;
}
.mobile-menu-nav li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-base);
    transition: background 0.2s, color 0.2s;
}
.mobile-menu-nav li a:hover {
    background: var(--bg-light);
    color: var(--primary);
}
.mobile-menu-social {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
}
.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--primary);
    font-size: 1rem;
    transition: background 0.2s;
}
.mobile-menu-social a:hover {
    background: var(--primary-10);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    padding: 1.5rem 1rem;
}
@media (min-width: 1024px) {
    .hero-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.hero-inner {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    gap: 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-xl);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    border-radius: var(--radius-xl);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 42rem;
}
.hero-content h1 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
    .hero-content h1 { font-size: 3.75rem; }
}
.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    font-weight: 400;
    margin-top: 1rem;
}
@media (min-width: 1024px) {
    .hero-content p { font-size: 1.25rem; }
}
.hero-content .btn-hero {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    font-size: 1rem;
}
.hero-content .btn-hero:hover {
    background: var(--primary-90);
    transform: scale(1.05);
}

/* Hero Slider */
.hero-slider {
    position: relative;
}
.hero-slide {
    display: none;
}
.hero-slide.active {
    display: block;
}
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.hero-dot.active {
    background: #fff;
}
.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}
.hero-arrow {
    pointer-events: auto;
    width: 2.5rem; height: 2.5rem;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}
.hero-arrow:hover {
    background: rgba(255,255,255,0.4);
}

/* ========================================
   FEATURED COLLECTIONS
   ======================================== */
.collections-section {
    padding: 3rem 1rem;
}
@media (min-width: 1024px) {
    .collections-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.collections-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.collections-header h2 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.collections-nav {
    display: flex;
    gap: 0.5rem;
}
.collections-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.collections-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-10);
}
.collections-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    border-color: var(--border);
    color: var(--text-muted);
    background: var(--bg-white);
}
.collections-arrow .material-symbols-outlined {
    font-size: 1.25rem;
}
.collections-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.25rem;
}
.collections-carousel::-webkit-scrollbar {
    display: none;
}
.collections-carousel .collection-card {
    flex: 0 0 calc(100% - 0rem);
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .collections-carousel .collection-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}
@media (min-width: 1024px) {
    .collections-carousel .collection-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}
.collection-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 4/5;
    background: var(--border);
}
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.collection-card:hover img {
    transform: scale(1.10);
}
.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.collection-card-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}
.collection-card-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.products-section {
    padding: 3rem 1rem;
    background: var(--bg-white);
}
@media (min-width: 1024px) {
    .products-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.products-section h2 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.5rem;
}
@media (min-width: 768px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 1.5rem;
        row-gap: 2.5rem;
    }
}
.product-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.product-card-img {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .product-card-img img {
    transform: scale(1.05);
}
.product-card-img .placeholder-icon {
    font-size: 3rem;
    color: var(--text-lighter);
}
.product-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.product-badge.promo {
    background: #dc2626;
    color: #fff;
}
.product-badge.new {
    background: var(--primary);
    color: #fff;
}
.product-btn-cart {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
}
.product-card:hover .product-btn-cart {
    opacity: 1;
}
.product-info p.product-name {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.3;
}
.product-info p.product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9375rem;
}
.product-info .price-old {
    color: var(--text-lighter);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.8125rem;
    margin-right: 0.4rem;
}

/* ========================================
   QUALITY / FEATURES
   ======================================== */
.features-section {
    padding: 5rem 1rem;
    background: var(--border-light);
}
@media (min-width: 1024px) {
    .features-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}
@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.feature-icon {
    height: 4rem;
    width: 4rem;
    background: var(--primary-10);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}
.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}
.feature-item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    max-width: 320px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: 5rem 1rem;
}
@media (min-width: 1024px) {
    .testimonials-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.testimonials-section .section-heading {
    text-align: center;
    margin-bottom: 3rem;
}
.testimonials-section .section-heading h2 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.testimonial-stars {
    display: flex;
    color: var(--star);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: var(--border);
    overflow: hidden;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-author-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-dark);
}
.testimonial-author-label {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter-section {
    padding: 6rem 1rem;
    background: var(--primary);
    color: #fff;
    text-align: center;
}
@media (min-width: 1024px) {
    .newsletter-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.newsletter-inner {
    max-width: 42rem;
    margin: 0 auto;
}
.newsletter-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.newsletter-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1rem;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
@media (min-width: 640px) {
    .newsletter-form { flex-direction: row; }
}
.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    outline: none;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}
.newsletter-form input:focus {
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}
.newsletter-form button {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    transition: background 0.2s;
    font-size: 1rem;
    white-space: nowrap;
}
.newsletter-form button:hover {
    background: var(--border-light);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--bg-white);
    padding: 3rem 1.25rem 2rem;
    border-top: 1px solid var(--border);
}
@media (min-width: 1024px) {
    .site-footer {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (max-width: 767px) {
    .footer-grid > .footer-col:first-child {
        text-align: center;
        padding-bottom: 1.5rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-light);
    }
    .footer-grid > .footer-col:first-child .footer-brand {
        justify-content: center;
    }
    .footer-grid > .footer-col:first-child .footer-social {
        justify-content: center;
    }
    .footer-grid > .footer-col:first-child .footer-dev-by {
        justify-content: center;
    }
    .footer-col {
        border-bottom: 1px solid var(--border-light);
        padding: 0.75rem 0;
    }
    .footer-col:last-child {
        border-bottom: none;
    }
    .footer-col h4 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        margin-bottom: 0;
        padding: 0.5rem 0;
        user-select: none;
        -webkit-user-select: none;
    }
    .footer-col h4::after {
        content: '\e5cf';
        font-family: 'Material Symbols Outlined';
        font-size: 1.25rem;
        color: var(--text-muted);
        transition: transform 0.3s ease;
    }
    .footer-col.active h4::after {
        transform: rotate(180deg);
    }
    .footer-col .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0;
    }
    .footer-col.active .footer-links {
        max-height: 300px;
        padding: 0.5rem 0 0.25rem;
    }
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.footer-brand .icon {
    color: var(--primary);
    font-size: 1.5rem;
}
.footer-brand h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}
.footer-brand img {
    max-height: 50px;
}
.footer-brand-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.2;
}
.footer-brand-text small {
    display: block;
    font-weight: 400;
    font-style: italic;
    font-size: 0.7em;
    color: var(--text-muted);
}
.footer-col p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.footer-dev-by {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-dev-by a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}
.footer-dev-by a:hover {
    opacity: 0.75;
}
.footer-dev-by img {
    height: 18px;
    width: auto;
    vertical-align: middle;
}
.footer-col h4 {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links li a,
.footer-links li span {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: var(--primary);
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    background: var(--primary-10);
    color: var(--primary);
    font-size: 1.05rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: var(--text-light);
    transition: color 0.2s;
}
.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 90;
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ========================================
   SOBRE / ABOUT
   ======================================== */
.about-section {
    padding: 5rem 1rem;
    background: var(--border-light);
}
@media (min-width: 1024px) {
    .about-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.about-text .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.about-text .divider {
    width: 3rem;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--border);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary-10), rgba(198,128,227,0.1));
}
.about-image-placeholder i {
    font-size: 4rem;
}
.about-image-placeholder h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
    padding: 3rem 1rem;
    background: var(--bg-white);
}
@media (min-width: 1024px) {
    .contact-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.contact-section .section-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.contact-section .section-heading h2 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 700;
}
.contact-section .section-heading p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    overflow: hidden;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: repeat(4, 1fr); }
}
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0.75rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--bg-white);
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 0;
    overflow: hidden;
}
.contact-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}
.contact-item .feature-icon {
    height: 3rem;
    width: 3rem;
    font-size: 1.25rem;
}
.contact-item h4 {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}
.contact-item small {
    color: var(--text-muted);
    font-size: 0.8125rem;
    word-break: break-all;
    overflow-wrap: anywhere;
    max-width: 100%;
}

/* ========================================
   EMPTY STATE
   ======================================== */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-lighter);
}
.empty-state i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* ========================================
   SOBRE INFO CARDS
   ======================================== */
.about-info-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}
.about-info-item strong {
    color: var(--primary);
}
.about-info-item span {
    color: var(--text-muted);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--text-lighter); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* ========================================
   ACEITE DE TERMOS / PRIVACIDADE
   ======================================== */
.aceite-termos-group {
    margin-top: 0.75rem;
}
.aceite-termos-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
}
.aceite-termos-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-top: 2px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    background: #fff;
}
.aceite-termos-label input[type="checkbox"]:checked {
    background: var(--primary, #6607A5);
    border-color: var(--primary, #6607A5);
}
.aceite-termos-label input[type="checkbox"]:checked::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.aceite-termos-label input[type="checkbox"]:focus {
    outline: 2px solid rgba(102,7,165,0.3);
    outline-offset: 2px;
}
.aceite-termos-label a {
    color: var(--primary, #6607A5);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}
.aceite-termos-label a:hover {
    color: var(--primary-light, #C680E3);
}

/* ========================================
   LGPD COOKIE BAR
   ======================================== */
.lgpd-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(20, 20, 30, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid var(--primary, #6607A5);
    padding: 1.25rem 1rem;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    animation: lgpdSlideUp 0.5s ease-out;
}
@keyframes lgpdSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes lgpdSlideDown {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}
.lgpd-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.lgpd-cookie-text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 280px;
}
.lgpd-cookie-text i {
    font-size: 1.5rem;
    color: var(--primary-light, #C680E3);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.lgpd-cookie-text p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.lgpd-cookie-text a {
    color: var(--primary-light, #C680E3);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.lgpd-cookie-text a:hover {
    color: #fff;
}
.lgpd-cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.lgpd-btn {
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.lgpd-btn-accept {
    background: var(--primary, #6607A5);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102,7,165,0.35);
}
.lgpd-btn-accept:hover {
    background: var(--primary-light, #C680E3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,7,165,0.45);
}
.lgpd-btn-essential {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.25);
}
.lgpd-btn-essential:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
@media (max-width: 640px) {
    .lgpd-cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    .lgpd-cookie-text {
        flex-direction: column;
        align-items: center;
    }
    .lgpd-cookie-text p {
        font-size: 0.85rem;
    }
    .lgpd-cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .lgpd-btn {
        width: 100%;
    }
}
