*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da marca */
    --cinza_texto: #2f2f2f;
    --azul: #14324e;
    --azul-dark: #0d2234;
    --azul-light: #1e4a70;
    --verde: #91a090;
    --verde-dark: #6b7d6a;
    --cinza_marca_rodape: #808285;
    --branco_texto: #ffffff;

    /* Utilitários */
    --bg: #ffffff;
    --bg-light: #f5f6f7;
    --border: #e5e5e5;
    --radius: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--cinza_texto);
    background: var(--bg);
}

/* ── Announcement Bar ── */
.announcement-bar {
    background: var(--azul);
    color: var(--branco_texto);
    text-align: center;
    padding: 20px 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
}

/* ── Site Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.site-header.hide {
    transform: translateY(-100%);
}

.header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 64px 48px;
}

.logo-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    cursor: pointer;
}

.logo-wrap a {
    display: block;
    pointer-events: auto;
}

.logo-img {
    height: 164px;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.85;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cinza_texto);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.icon-btn:hover {
    background: var(--bg-light);
}

.cart-icon-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    background: var(--verde);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 48px;
    border-top: 1px solid var(--border);
    color: var(--cinza_marca_rodape);
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--cinza_texto);
    background: transparent;
}

.search-bar.hidden {
    display: none;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 48px;
    border-top: 1px solid var(--border);
}

.nav-link {
    text-decoration: none;
    color: var(--cinza_texto);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
    background: #e8edf2;
}

.nav-link.active {
    background: var(--azul);
    color: var(--branco_texto);
}

/* Entrada de página */
main {
    animation: fadeUp 0.2s ease;
}

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

/* ── HERO ── */
.hero {
    min-height: 520px;
    background-image: url('./images/BANNER.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.hero-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero-card h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--azul);
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-card p {
    color: var(--cinza_marca_rodape);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-block;
    background: var(--azul);
    color: var(--branco_texto);
    text-decoration: none;
    padding: 12px 34px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--azul-dark);
}

/* Features */
.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 60px 80px;
    background: var(--bg-light);
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 20px rgba(20, 50, 78, 0.1);
    border-color: var(--verde);
}

.feature-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--azul);
}

.feature-card p {
    font-size: 14px;
    color: var(--cinza_marca_rodape);
    line-height: 1.55;
}

/* ── Shared Section Titles ── */
.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--cinza_texto);
}

.section-title span {
    color: var(--azul);
}

.section-sub {
    text-align: center;
    font-size: 16px;
    color: var(--cinza_marca_rodape);
    margin-bottom: 40px;
}

/* ── Highlights Section ── */
.highlights-section {
    padding: 64px 80px;
    background: var(--bg);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.highlights-cta {
    text-align: center;
}

/* ── Testimonials Section ── */
.testimonials-section {
    padding: 64px 80px;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(20, 50, 78, 0.1);
    border-color: var(--verde);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--cinza_texto);
    line-height: 1.65;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--azul);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--cinza_texto);
}

.testimonial-date {
    font-size: 12px;
    color: var(--cinza_marca_rodape);
}

/* ── Social Proof Popup ── */
.social-proof-popup {
    position: fixed;
    bottom: 80px;
    left: 24px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2500;
    max-width: 280px;
    border-left: 3px solid var(--verde);
    transform: translateX(calc(-100% - 24px));
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    pointer-events: none;
}

.social-proof-popup.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.sp-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--verde);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.sp-text {
    flex: 1;
    min-width: 0;
}

.sp-name {
    font-size: 12px;
    color: var(--cinza_marca_rodape);
    margin-bottom: 2px;
}

.sp-product {
    font-size: 13px;
    font-weight: 700;
    color: var(--cinza_texto);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cinza_marca_rodape);
    font-size: 13px;
    padding: 2px 4px;
    flex-shrink: 0;
    transition: color 0.2s;
    line-height: 1;
}

.sp-close:hover {
    color: var(--cinza_texto);
}

/* ── CATALOG ── */
.catalog-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px;
}

.catalog-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
    color: var(--cinza_texto);
}

.catalog-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--cinza_marca_rodape);
}

.filters-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.filter-dropdown {
    position: relative;
}

.filter-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--cinza_texto);
    padding: 4px 0;
    font-family: inherit;
}

.filter-btn:hover {
    color: var(--azul);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 160px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.filter-dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--cinza_texto);
    cursor: pointer;
}

.filters-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-select {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    color: var(--cinza_texto);
}

.product-count {
    color: var(--cinza_marca_rodape);
    white-space: nowrap;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(20, 50, 78, 0.12);
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    padding: 16px;
    line-height: 1.35;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.savings-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--verde);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-info {
    padding: 14px 14px 16px;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--cinza_texto);
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-current {
    color: var(--azul);
    font-weight: 700;
    font-size: 15px;
}

.price-original {
    color: var(--cinza_marca_rodape);
    font-size: 13px;
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    background: var(--azul);
    color: var(--branco_texto);
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.btn-add-cart:hover {
    background: var(--azul-dark);
}

/* ── PRODUCT DETAIL PAGE ── */
.product-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 48px 64px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cinza_marca_rodape);
    margin-bottom: 28px;
}

.breadcrumb a {
    color: var(--cinza_marca_rodape);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--azul);
}

.breadcrumb span {
    color: var(--cinza_texto);
}

.product-main-grid {
    display: grid;
    grid-template-columns: 52% 1fr;
    gap: 56px;
    margin-bottom: 64px;
}

/* Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-main-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
    text-align: center;
    padding: 24px;
    line-height: 1.3;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
}

.gallery-thumb {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    cursor: pointer;
    border: 2.5px solid transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    padding: 6px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    transition: border-color 0.2s, transform 0.15s;
}

.gallery-thumb:hover {
    transform: scale(1.04);
}

.gallery-thumb.active {
    border-color: var(--azul);
}

/* Product Info Column */

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stars {
    color: #f5a623;
    font-size: 16px;
    letter-spacing: 1px;
}

.review-count {
    font-size: 13px;
    color: var(--cinza_marca_rodape);
    text-decoration: underline;
    cursor: pointer;
}

.product-detail-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--cinza_texto);
    line-height: 1.3;
    margin-bottom: 16px;
}

.detail-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.detail-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--azul);
}

.detail-orig-price {
    font-size: 16px;
    color: var(--cinza_marca_rodape);
    text-decoration: line-through;
}

.detail-save-badge {
    background: var(--verde);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

.detail-promo-bar {
    background: #eef3f8;
    border: 1px solid #ccdaea;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--azul);
    margin-bottom: 10px;
    text-align: center;
}

.detail-countdown-bar {
    background: #f7f5ef;
    border: 1px solid #e0d8c8;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--cinza_texto);
    margin-bottom: 20px;
    text-align: center;
}

.detail-countdown-bar strong {
    color: var(--azul);
    font-size: 16px;
}

/* Bundle Options */
.bundle-options-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.bundle-option {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.bundle-option.selected {
    border-color: var(--azul);
    background: #f0f4f8;
}

.bundle-option input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--azul);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.bundle-option-body {
    flex: 1;
    min-width: 0;
}

.bundle-option-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--cinza_texto);
    margin-bottom: 2px;
}

.bundle-option-sub {
    font-size: 12px;
    color: var(--cinza_marca_rodape);
}

.bundle-option-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.bundle-thumb {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    font-size: 7px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.bundle-option-price {
    text-align: right;
    flex-shrink: 0;
}

.bundle-price-main {
    font-size: 16px;
    font-weight: 800;
    color: var(--azul);
    display: block;
}

.bundle-price-orig {
    font-size: 12px;
    color: var(--cinza_marca_rodape);
    text-decoration: line-through;
    display: block;
}

.bundle-badge {
    position: absolute;
    top: -10px;
    right: 14px;
    background: var(--verde);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-badge.best {
    background: var(--azul);
}

/* Add to cart detail button */
.btn-detail-cart {
    width: 100%;
    background: var(--azul);
    color: var(--branco_texto);
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.btn-detail-cart:hover {
    background: var(--azul-dark);
}

/* Payment icons */
.payment-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.pay-icon {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--cinza_marca_rodape);
    background: #fafafa;
}

/* Product Description Section */
.product-description-section {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    margin-bottom: 48px;
}

.product-description-section h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--azul);
    margin-bottom: 16px;
}

.product-description-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cinza_texto);
    margin-bottom: 16px;
}

.product-description-section .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.product-description-section .feature-list li {
    font-size: 15px;
    color: var(--cinza_texto);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cta-box {
    background: #eef3f8;
    border-left: 4px solid var(--azul);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 24px;
}

.cta-box p {
    margin: 0;
    font-weight: 600;
    color: var(--azul);
}

/* Reviews Section */
.product-reviews-section {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    margin-bottom: 48px;
}

.product-reviews-section > h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--cinza_texto);
    margin-bottom: 28px;
}

.reviews-summary {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.score-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 100px;
}

.score-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--azul);
    line-height: 1;
}

.score-stars {
    color: #f5a623;
    font-size: 20px;
    letter-spacing: 2px;
}

.score-label {
    font-size: 13px;
    color: var(--cinza_marca_rodape);
}

.score-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--cinza_texto);
}

.breakdown-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    background: #f5a623;
    border-radius: 4px;
}

.btn-write-review {
    background: var(--azul);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    align-self: flex-start;
}

.btn-write-review:hover {
    background: var(--azul-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--azul);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--cinza_texto);
}

.review-stars {
    color: #f5a623;
    font-size: 13px;
    margin-bottom: 8px;
}

.review-text {
    font-size: 14px;
    color: var(--cinza_texto);
    line-height: 1.55;
    margin-bottom: 10px;
}

.review-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--cinza_marca_rodape);
}

.review-helpful {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 12px;
    color: var(--cinza_texto);
}

/* Featured Collection */
.featured-collection-section {
    border-top: 1px solid var(--border);
    padding: 40px 0 0;
}

.featured-collection-section h2 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
    color: var(--cinza_texto);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── WhatsApp Button ── */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 24px;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background: #1db954;
}

/* ── Contact Extra Sections ── */
.contact-sections {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px 64px;
}

.contact-section-block {
    border-top: 1px solid var(--border);
    padding: 36px 0;
}

.contact-section-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 14px;
}

.contact-section-block p {
    font-size: 15px;
    color: var(--cinza_texto);
    line-height: 1.7;
}

.contact-section-block ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 12px;
}

.contact-section-block li {
    font-size: 15px;
    color: var(--cinza_texto);
    line-height: 1.6;
}

/* ── FAQ Accordion ── */
.faq-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 64px 48px 80px;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 44px;
    color: var(--cinza_texto);
}

.faq-section h2 span {
    color: var(--azul);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--cinza_texto);
    font-family: inherit;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--azul);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--cinza_marca_rodape);
    transition: transform 0.25s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--cinza_marca_rodape);
    line-height: 1.7;
}

/* ── CONTACT ── */
.contact-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--azul);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    color: var(--cinza_texto);
    transition: border-color 0.2s;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--azul);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--azul);
    color: var(--branco_texto);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.btn-submit:hover {
    background: var(--azul-dark);
}

.contact-info-section p {
    color: var(--cinza_marca_rodape);
    line-height: 1.65;
    margin-bottom: 28px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-list li {
    font-size: 15px;
    color: var(--cinza_texto);
}

/* ── FOOTER ── */
.footer {
    background: var(--azul);
    color: var(--branco_texto);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 48px;
}

.footer-col-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 64px;
    object-fit: contain;
    align-self: flex-start;
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
}

.footer-newsletter-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--branco_texto);
}

.footer-newsletter-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter-form input {
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-newsletter-form input:focus {
    border-color: var(--verde);
}

.footer-newsletter-form button {
    background: var(--branco_texto);
    color: var(--azul);
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}

.footer-newsletter-form button:hover {
    opacity: 0.9;
}

.footer-col-about h3,
.footer-col-links h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--branco_texto);
    margin-bottom: 14px;
}

.footer-col-about p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
}

.footer-col-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 18px 48px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-payment-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.foot-pay {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ── CART SIDEBAR ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.cart-overlay.hidden {
    display: none;
}

.cart-modal {
    background: #fff;
    width: 380px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cinza_texto);
}

.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--cinza_marca_rodape);
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.close-btn:hover {
    background: var(--bg-light);
    color: var(--cinza_texto);
}

.cart-items {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: var(--cinza_marca_rodape);
    margin-top: 48px;
    font-size: 15px;
}

.cart-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 6px;
    line-height: 1.3;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--cinza_texto);
}

.cart-item-price {
    font-size: 13px;
    color: var(--azul);
    font-weight: 700;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cinza_marca_rodape);
    font-size: 15px;
    padding: 4px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #c00;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--cinza_texto);
}

.btn-checkout {
    width: 100%;
    background: var(--azul);
    color: var(--branco_texto);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.btn-checkout:hover {
    background: var(--azul-dark);
}

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--azul);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 4px 12px rgba(20, 50, 78, 0.35);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--azul-dark);
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 28px;
    right: 88px;
    background: var(--verde-dark);
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3000;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
    max-width: 320px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .product-grid,
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 48px 40px;
    }

    .highlights-section,
    .testimonials-section {
        padding: 48px 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .highlights-section,
    .testimonials-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-sections {
        padding: 0 20px 48px;
    }

    .faq-section {
        padding: 48px 20px 64px;
    }

    .faq-section h2 {
        font-size: 28px;
    }
    .header-top {
        padding: 12px 20px;
    }

    .logo-wrap {
        position: static;
        transform: none;
    }

    .logo-img {
        height: 100px;
    }

    .hero {
        justify-content: center;
        padding: 40px 24px;
    }

    .hero-card {
        padding: 36px 28px;
    }

    .hero-card h1 {
        font-size: 22px;
    }

    .product-grid,
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .catalog-wrap,
    .product-page-container {
        padding: 32px 20px;
    }

    .catalog-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 32px;
    }

    .footer-bottom {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 24px;
    }

    .features-section {
        padding: 40px 20px;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 12px;
    }

    .highlights-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-proof-popup {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 70px;
    }

    .product-grid,
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

    .cart-modal {
        width: 100vw;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    .toast {
        right: 16px;
        bottom: 74px;
    }
}
