/* Reset e Variáveis */
:root {
    --color-bg-dark: #0f1115;
    --color-bg-announcement: #000000;
    --color-white: #ffffff;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #666666;
    --color-text-light: #e0e0e0;
    --color-accent-gold: #e2c073;
    --color-border: #eaeaea;
    --color-search-bg: #f5f5f5;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Barra de Anúncios */
.announcement-bar {
    background-color: var(--color-bg-announcement);
    color: var(--color-white);
    font-size: 12px;
    padding: 8px 0;
}

.announcement-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-left, .announcement-right {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.announcement-bar i {
    font-size: 16px;
}

/* Header */
.header {
    background-color: var(--color-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.logo a {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #000;
    line-height: 1;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #888;
    text-align: right;
    margin-top: 4px;
}

.search-wrapper {
    flex: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: var(--color-search-bg);
    border-radius: 50px;
    padding: 8px 20px;
    position: relative;
    border: 1px solid transparent;
    transition: var(--transition);
}

.search-form:focus-within {
    border-color: #ddd;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.search-icon {
    color: #999;
    font-size: 18px;
}

.search-form input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    width: 100%;
    font-size: 14px;
    color: var(--color-text-primary);
    outline: none;
}

.btn-search {
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-search:hover {
    background-color: #333;
}

.main-nav ul {
    display: flex;
    gap: 24px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--color-text-primary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.btn-cart {
    position: relative;
    font-size: 24px;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Banner */
.hero-banner {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 60px 0 60px;
    min-height: 400px;
}

.breadcrumb {
    font-size: 12px;
    color: #888;
    margin-bottom: 40px;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    margin: 0 6px;
}

.breadcrumb .current {
    color: #bbb;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(90deg, #d4af37 0%, #f3e5ab 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #a0aab5;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-description strong {
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333;
}

.btn-primary:hover {
    background-color: #2a2a2a;
    border-color: #555;
    transform: translateY(-2px);
}

.whatsapp-float:hover {
    background-color: #20ba56;
    transform: translateY(-2px);
}

/* ==========================================================================
   PRODUCT PAGE (DETALHES DO PRODUTO)
   ========================================================================== */

.product-page-section {
    padding: 40px 0;
    background-color: #fafafa;
}
.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.product-gallery {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.product-gallery img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.product-info {
    display: flex;
    flex-direction: column;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}
.product-rating i {
    color: #f5c518;
    font-size: 14px;
}
.product-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 16px;
}
.product-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.badge-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.badge-tag i { font-size: 14px; }
.badge-tag.gray { background: #f0f0f0; color: #555; }
.badge-tag.orange { background: #fff4e5; color: #d35400; }
.badge-tag.red { background: #feebeb; color: #c0392b; }

.product-pricing-box {
    margin-bottom: 24px;
}
.price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
    display: block;
}
.price-current {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.price-unit {
    font-size: 13px;
    font-weight: 500;
    color: #888;
}
.price-savings {
    font-size: 13px;
    color: #111;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.price-pix {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}
.price-pix strong { color: #111; }

.product-kits {
    margin-bottom: 30px;
}
.product-kits-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}
.kits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.kit-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    position: relative;
    transition: var(--transition);
}
.kit-card:hover {
    border-color: #999;
}
.kit-card.selected {
    border: 2px solid #111;
    background: #fafafa;
}
.kit-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
}
.kit-badge.orange { background: #ff7000; }
.kit-qty {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}
.kit-price {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 2px;
}
.kit-unit {
    font-size: 11px;
    color: #888;
}
.kit-savings {
    font-size: 11px;
    color: #27ae60;
    font-weight: 600;
    margin-top: 4px;
}

.product-flavors {
    margin-bottom: 30px;
}
.flavor-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}
.flavor-title span { color: #888; font-weight: 400; }
.flavors-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.flavor-btn {
    border: 1px solid #eaeaea;
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: var(--transition);
}
.flavor-btn:hover {
    border-color: #111;
    color: #111;
}
.flavor-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.product-actions-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #eaeaea;
    background: #fff;
    border-radius: 8px;
    height: 48px;
}
.qty-btn {
    width: 40px;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
}
.qty-input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    outline: none;
}
.total-calc {
    margin-left: auto;
    text-align: right;
}
.total-calc span {
    font-size: 12px;
    color: #888;
    display: block;
}
.total-calc strong {
    font-size: 20px;
    font-weight: 800;
    color: #111;
}
.btn-buy, .btn-offer {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.btn-offer {
    background: #111;
    color: #fff;
}
.btn-offer:hover { background: #222; }
.btn-buy {
    background: #000;
    color: #fff;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
.trust-item {
    border: 1px solid #eaeaea;
    background: #fff;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.trust-item i { font-size: 20px; color: #555; }
.trust-item span { font-size: 10px; font-weight: 700; color: #111; line-height: 1.2; }
.trust-item small { font-size: 9px; color: #888; }

.shipping-calc {
    border: 1px solid #eaeaea;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
}
.shipping-calc label {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.shipping-input-group {
    display: flex;
    gap: 10px;
}
.shipping-input-group input {
    flex: 1;
    border: 1px solid #eaeaea;
    background: #f9f9f9;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
}
.shipping-input-group button {
    background: #111;
    color: #fff;
    border: none;
    padding: 0 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.product-bottom-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 30px;
}
.product-content-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.product-content-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}
.product-content-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}
.product-content-box strong { color: #111; }
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.specs-list li {
    font-size: 14px;
    color: #555;
}
.specs-list strong {
    color: #111;
}

@media (max-width: 900px) {
    .product-main-grid {
        grid-template-columns: 1fr;
    }
    .trust-badges-grid {
        grid-template-columns: 1fr 1fr;
    }
    .product-bottom-grid {
        grid-template-columns: 1fr;
    }
    .kits-grid {
        grid-template-columns: 1fr;
    }
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #333;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: #666;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background-color: #fafafa;
    padding: 80px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.feature-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-color: #ddd;
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 28px;
    color: var(--color-text-primary);
}

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

.feature-content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Product Showcase Section (Independent) */
.psv-showcase-section {
    background-color: #050505;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}
.psv-showcase-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}
.psv-showcase-wrapper {
    position: relative;
}
.psv-showcase-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.psv-showcase-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}
.psv-prev-btn {
    left: 40px;
}
.psv-next-btn {
    right: 40px;
}
.psv-showcase-track {
    cursor: grab;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 40px calc(50vw - 175px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.psv-showcase-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.psv-showcase-track::-webkit-scrollbar {
    display: none;
}
.psv-showcase-slide {
    flex: 0 0 350px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    scroll-snap-align: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    opacity: 0.4;
    transform: scale(0.85);
    background: #111;
}
.psv-showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.psv-showcase-slide.is-active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* SEO Section */
.seo-section {
    padding: 80px 0;
    background-color: #fff;
}
.seo-container {
    margin: 0 auto;
}
.seo-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.seo-grid-reverse {
    grid-template-columns: 0.9fr 1.1fr;
    margin-bottom: 0; /* Last item */
}
.seo-image-right img,
.seo-image-left img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.seo-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #111;
}
.seo-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #222;
}
.seo-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}
.seo-section strong {
    color: #111;
}
.seo-list {
    margin-bottom: 24px;
}
.seo-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.seo-list i {
    font-size: 18px;
    color: #333;
    margin-top: 2px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #fafafa;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-section h2 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #111;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.faq-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    border: none;
    color: #222;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover {
    color: #000;
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 18px;
}
.faq-contact-box {
    background: #f0f0f0;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 12px;
}
.contact-box-left h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}
.contact-box-left p {
    font-size: 13px;
    color: #666;
}

/* Policy Section */
.policy-section {
    padding: 60px 0 100px;
    background: #fff;
}
.policy-container {
    max-width: 800px;
    margin: 0 auto;
}
.policy-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #111;
}
.policy-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}
.policy-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
    list-style-type: disc;
}
.policy-content li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}
.about-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.about-subtitle {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666;
    display: block;
    margin-bottom: 16px;
}
.about-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}
.about-header p {
    font-size: 16px;
    color: #777;
    line-height: 1.6;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.about-card, .about-large-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 40px;
}
.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}
.about-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
.about-large-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}
.about-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}
.about-benefits-list li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}
.about-benefits-list i {
    font-size: 20px;
    color: #222;
}

/* Footer */
.footer {
    background-color: #050505;
    color: #fff;
    padding: 60px 0 20px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-brand {
    flex: 1;
    max-width: 320px;
}
.footer-brand h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}
.age-warning {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}
.age-warning .badge {
    background: #1a1a1a;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    color: #aaa;
}
.footer-links-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul a {
    font-size: 13px;
    color: #888;
}
.footer-col ul a:hover {
    color: #fff;
}
.footer-contact p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 16px;
    line-height: 1.5;
}
.footer-contact span {
    font-size: 10px;
    color: #666;
    letter-spacing: 1px;
}
.footer-accordions {
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}
.footer-accordion-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}
.footer-accordion-item a {
    color: #888;
    font-weight: 500;
}
.footer-trust {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    gap: 20px;
}
.trust-badge {
    flex: 1;
    text-align: center;
    background: #0f0f0f;
    padding: 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.trust-badge i {
    font-size: 18px;
    color: #fff;
}
.footer-bottom {
    text-align: left;
    font-size: 12px;
    color: #555;
    padding-top: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text-primary);
    cursor: pointer;
}

/* --- CATALOG / PRODUCTS PAGE --- */
.page-header {
    background-color: #fafafa;
    padding: 60px 0 40px;
    border-bottom: 1px solid #eee;
}
.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}
.page-header p {
    font-size: 16px;
    color: var(--color-text-secondary);
}

.catalog-section {
    padding: 60px 0 100px;
    background-color: #fcfcfc;
}
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.product-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-puffs {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}
.product-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.4;
}
.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.product-price {
    font-size: 20px;
    font-weight: 800;
    color: #111;
}
.product-badge {
    background-color: #f0f0f0;
    color: #555;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Responsividade Básica */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        padding: 20px;
        z-index: 100;
        border-top: 1px solid #eaeaea;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .header-container {
        position: relative;
        flex-wrap: wrap;
        gap: 10px;
    }
    .search-wrapper {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    .hide-mobile {
        display: none;
    }
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .announcement-bar .container {
        flex-direction: column;
        gap: 5px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .faq-accordion {
        grid-template-columns: 1fr;
    }
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .seo-grid-reverse {
        grid-template-columns: 1fr;
    }
    .seo-image-right,
    .seo-image-left {
        order: -1; /* Puts image above text on mobile */
    }
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .psv-showcase-slide {
        flex: 0 0 260px;
        height: 380px;
    }
    .psv-showcase-track {
        padding: 40px calc(50vw - 130px);
        gap: 20px;
    }
    .psv-showcase-btn {
        display: none;
    }

    .faq-contact-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .about-grid, .about-benefits-list {
        grid-template-columns: 1fr;
    }
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links-grid {
        flex-direction: column;
        gap: 30px;
    }
    .footer-trust {
        flex-direction: column;
    }
}
