/* CSS extraído do index.html */
:root {
    --roxo-escuro: #4b1c71;
    --roxo-medio: #8e24aa;
    --rosa: #d81b60;
    --rosa-bebe: #f8b7d8;
    --verde-whatsapp: #25D366;
    --azul-claro: #4cade2;
    --rosa-botao: #f975a3;
    --branco: #ffffff;
    --cinza-claro: #f8f8f8;
    --dourado: #FFD700;
    --mobile: 576px;
    --tablet: 768px;
    --desktop: 992px;
    --topbar-height: 54px;
}

/* Brands Section (Marcas) */
.brands-section { padding: 40px 15px; background: var(--branco); }
.brands-container { max-width: 1200px; margin: 0 auto; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.brand-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-card:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,0.06); }
.brand-card h3 { margin-bottom: 6px; font-size: 1.05rem; color: var(--roxo-escuro); }
.brand-card p { color: #5a4e70; font-size: 0.95rem; }


/* Trust badges (security seals) - discreet footer style */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 16px 0 8px;
}
.trust-badges picture { display: inline-flex; align-items: center; }
.trust-badge {
    height: 28px;
    width: auto;
    opacity: 0.78;
    filter: grayscale(100%) contrast(1.05);
    transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}
.trust-badge:hover {
    opacity: 0.95;
    filter: grayscale(0%) contrast(1.1);
    transform: translateY(-1px);
}
@media (max-width: 576px) {
    .trust-badge { height: 22px; }
    .trust-badges { gap: 10px; padding: 14px 0 6px; }
}

/* ===== Blog (masonry + colapso) ===== */
.blog-section { padding: 40px 15px; }
.blog-container { max-width: 1200px; margin: 0 auto; }
.blog-masonry { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 14px; }
.blog-masonry.collapsed .blog-card:nth-child(n+5) { display: none; }
.blog-card { background: #fff; border: 1px solid #eee3ff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 16px rgba(0,0,0,0.05); }
.blog-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.blog-content { padding: 12px; }
.blog-actions { text-align: center; margin-top: 16px; }

@media (max-width: 992px) { .blog-masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .blog-masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .blog-masonry { grid-template-columns: 1fr; } }

/* ===== Blog Article (páginas internas) ===== */
.blog-article {
    max-width: 880px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    padding: 24px;
}
@media (min-width: 768px) { .blog-article { padding: 36px; } }
.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
    color: #211233; /* contraste mais alto */
    margin-bottom: 6px;
}
@media (min-width: 992px) { .article-header h1 { font-size: 2.4rem; } }
.article-meta {
    color: #7a6a92;
    font-size: 0.92rem;
    margin-bottom: 12px;
}
.article-hero {
    width: 100%;
    border-radius: 14px;
    display: block;
    margin: 12px 0 8px;
}
.article-body {
    color: #3a2d52;
    font-size: 1.05rem;
    line-height: 1.75;
}
.article-body h2 {
    font-family: 'Montserrat', serif;
    color: #2a1742;
    margin-top: 26px;
    margin-bottom: 10px;
    font-size: 1.35rem;
}
.article-body p { margin: 10px 0 14px; }
.article-img {
    width: 100%;
    border-radius: 12px;
    margin: 8px 0 18px;
    display: block;
}
.article-body a {
    color: var(--rosa);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.article-body a:hover { filter: brightness(1.1); }
.article-body blockquote {
    margin: 18px 0;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(75,28,113,0.06), rgba(75,28,113,0.03));
    border-left: 4px solid var(--rosa);
    border-radius: 10px;
    color: #2a1742;
    font-weight: 600;
}

/* Carousel Dots (shared) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}
.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
}
.carousel-dot.active { background: rgba(0,0,0,0.65); }

/* Hide arrows on small screens */
@media (max-width: 576px) {
    .nov-btn, .best-btn { display: none; }
}

/* Bestsellers Section (Carousel) */
.bestsellers-section {
    background-color: var(--branco);
    padding: 40px 15px;
}

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

.bestsellers-carousel { position: relative; scroll-snap-type: x mandatory; }
.best-viewport { overflow: hidden; }
.best-track { display: flex; gap: 16px; scroll-behavior: smooth; }

.best-card {
    background: var(--cinza-claro);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    min-width: calc(25% - 12px);
    max-width: calc(25% - 12px);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    min-height: 420px; /* garante área suficiente para descrição + botão */
}

.best-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 */
    overflow: hidden;
    background: #fff;
}

.best-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease;
}
.best-img.secondary { opacity: 0; }
.best-img-wrap:hover .best-img.secondary { opacity: 1; }
.best-img-wrap:hover .best-img.primary { opacity: 0; }

.best-info { padding: 12px 14px 16px; display: flex; flex-direction: column; }
.best-info h3 {
    font-size: 1.02rem; color: var(--roxo-escuro); margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    line-clamp: 2; /* compat */
    min-height: 2.6em; /* reserva para 2 linhas */
}
.best-stars { color: var(--dourado); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 6px; }
.best-info .rating-badge, .best-stars { min-height: 1.2rem; }
.best-desc {
    font-size: 0.92rem; color: #555; margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    line-clamp: 3; /* compat */
    min-height: 3.9em; /* reserva para 3 linhas */
}
.best-price { font-weight: 700; color: var(--rosa); margin-bottom: 10px; min-height: 1.4rem; display: inline-flex; align-items: baseline; gap: 8px; }

.best-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.6); color: #fff; border: 1px solid rgba(255,255,255,0.4);
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 2; box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
}
.best-btn:hover { background: rgba(0,0,0,0.75); }
.best-btn.prev { left: 6px; }
.best-btn.next { right: 6px; }
.best-btn:active { transform: translateY(-50%) scale(0.9); }

@media (max-width: 992px) {
    .best-card { min-width: calc(33.333% - 11px); max-width: calc(33.333% - 11px); }
}
@media (max-width: 768px) {
    .nov-btn, .best-btn { width: 34px; height: 34px; }
    .best-card { min-width: calc(50% - 8px); max-width: calc(50% - 8px); min-height: 380px; }
}
@media (max-width: 480px) {
    .best-card { min-width: calc(50% - 8px); max-width: calc(50% - 8px); min-height: 340px; }
}

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #333;
    line-height: 1.8;
    background-color: var(--cinza-claro);
    font-size: 16px;
}

/* Minimal topbar with logo */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(31, 15, 44, 0.22);
    backdrop-filter: blur(6px);
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    height: var(--topbar-height);
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr auto auto; /* esquerda (spacer), centro (logo), direita (busca compacta) */
    align-items: center;
    position: relative; /* permite centralização absoluta da logo */
}

.topbar-logo {
    display: block;
    height: auto;
    max-height: calc(var(--topbar-height) - 12px);
    width: auto;
    max-width: 180px;
}

.topbar-right { display: flex; justify-content: flex-end; align-items: center; justify-self: end; }
.topbar-left { display: flex; align-items: center; }
.topbar-center { position: absolute; left: 50%; transform: translateX(-50%); z-index: 1; }

h1, h2, h3, h4 {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--roxo-escuro);
    line-height: 1.3;
}

h1 {
    font-size: 2rem;
    font-family: Arial, sans-serif;
    color: var(--branco);
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--verde-whatsapp);
    color: var(--branco);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

/* Garantir que nunca sublinhe em nenhum estado do link */
.whatsapp-float,
.whatsapp-float:visited,
.whatsapp-float:hover,
.whatsapp-float:focus,
.whatsapp-float:active {
    text-decoration: none;
    color: var(--branco);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(20px + var(--topbar-height)) 15px 20px;
    background-color: #1f0f2c;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Elegant overlay + responsive image (webp fallback) */
    background-image: 
      linear-gradient(180deg, rgba(31,15,44,0.6) 0%, rgba(31,15,44,0.75) 50%, rgba(31,15,44,0.9) 100%),
      url('../img/capa.jpg');
}

/* Decorative wave at bottom of hero */
.wave-separator {
    position: absolute;
    left: 0; right: 0; bottom: -1px; /* overlap 1px to avoid gap */
    width: 100%;
    height: 120px;
    line-height: 0;
    overflow: hidden;
    z-index: 1; /* behind hero content */
    pointer-events: none; /* avoid blocking CTA clicks */
}
.wave-separator svg { display: block; width: 100%; height: 100%; }
.wave-separator path {
    fill: var(--branco, #ffffff); /* solid white wave with fallback */
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Ajuste específico para mobile em portrait */
@media (max-width: 768px) and (orientation: portrait) {
    .video-container iframe {
        width: 177.78vh;
        height: 100vh;
        min-width: 100%;
        min-height: 100%;
    }

    .hero-content {
        padding: 20px;
        max-width: 95%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--branco);
    padding: 28px 24px;
    max-width: 900px;
    background-color: transparent;
    backdrop-filter: none;
    border-radius: 12px;
    animation: fadeIn 1s ease-in-out;
}

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

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.hero-logo {
    display: inline-block;
    margin-bottom: 12px;
    height: auto;
}

.hero-content p {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Hero highlights */
.hero-highlights {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 10px;
}

.hero-highlight {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 3; /* ensure CTA above wave */
}

/* Search form (hero) */
.search-form {
    margin: 14px auto 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 720px;
}
.search-form--topbar { margin: 0; max-width: 360px; width: 100%; }
.search-form--topbar .search-wrap { width: 100%; }
.search-wrap { position: relative; }
.search-form input[type="search"] {
    flex: 1 1 360px;
    min-width: 260px;
    max-width: 360px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.5);
    outline: none;
    background: rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(4px);
}
.search-form--topbar input[type="search"] { flex: 1 1 auto; min-width: 0; padding-right: 40px; }
.search-icon-btn {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px; border-radius: 999px;
    border: none; background: transparent; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.search-icon-btn:hover { filter: brightness(1.2); }
.autocomplete-list {
    display: none; position: absolute; left: 0; right: 0; top: calc(100% + 6px);
    background: rgba(31,15,44,0.96); color: #fff; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.25); z-index: 1200;
    overflow: hidden; max-height: 320px; overflow-y: auto;
}
.autocomplete-item { padding: 10px 12px; cursor: pointer; font-size: 0.92rem; }
.autocomplete-item:hover, .autocomplete-item.active { background: rgba(255,255,255,0.12); }
.search-form input[type="search"]::placeholder { color: rgba(255,255,255,0.85); }
.search-form button { white-space: nowrap; }

.cta-button {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    font-family: Arial, sans-serif;
}

.primary-button {
    background-color: var(--azul-claro);
    color: var(--branco);
    animation: pulse 2s infinite;
}

.primary-button:hover {
    background-color: #3a8bc8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 173, 226, 0.3);
}

.secondary-button {
    background-color: var(--verde-whatsapp);
    color: var(--branco);
}

.secondary-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.tertiary-button {
    background-color: var(--rosa-botao);
    color: var(--branco);
}

.tertiary-button:hover {
    background-color: #e66797;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 117, 163, 0.3);
}

/* Buy button padrão para cards de produtos */

.buy-button {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 10px auto 0;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.3px;
    border: 0;
    color: var(--branco);
    /* Gradiente alinhado à paleta (rosa -> roxo) */
    background: linear-gradient(90deg, var(--rosa) 0%, var(--roxo-medio) 60%, var(--roxo-escuro) 100%);
    box-shadow: 0 8px 20px rgba(181, 31, 157, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    font-size: 0.85rem;
    text-align: center;
}

/* Ícone SVG de carrinho no botão */
.buy-button::before {
    content: '';
    display: inline-block;
    width: 16px; height: 16px;
    margin-right: 8px;
    vertical-align: -2px;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    filter: brightness(0) saturate(100%) invert(100%);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="white"><path d="M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2S15.9 22 17 22s2-.9 2-2-.9-2-2-2zM7.17 14h9.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1 1 0 0 0 21 5H6.21l-.94-2H2v2h2l3.6 7.59-1.35 2.44C5.52 15.37 6.19 16 7 16h12v-2H7.42l.75-1.35z"/></svg>');
}

.buy-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 12px 28px rgba(181, 31, 157, 0.28);
}

/* Microtexto abaixo do botão */
.buy-subtext {
    margin-top: 6px;
    font-size: 0.78rem;
    color: #6b5a84;
    text-align: center;
}

.nov-info .buy-button,
.best-info .buy-button {
    width: 100%;
}

.content-section {
    padding: 40px 15px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in-out;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--rosa), var(--roxo-medio));
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-card {
    background: var(--branco);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
    color: var(--rosa);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.delivery-options {
    background-color: var(--branco);
    border-radius: 12px;
    padding: 20px;
    margin: 40px auto;
    max-width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.delivery-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.delivery-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.delivery-icon {
    font-size: 1.5rem;
    color: var(--roxo-medio);
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
    padding-top: 3px;
}

.delivery-text h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--roxo-escuro);
    margin-bottom: 8px;
}

.lingerie-section {
    background: linear-gradient(135deg, #fdf2ff 0%, #f6e7ff 100%);
    padding: 40px 15px;
    text-align: center;
}

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

.lingerie-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.lingerie-card {
    background: var(--branco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.lingerie-card:hover {
    transform: translateY(-5px);
}

.lingerie-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.reviews-section {
    padding: 40px 15px;
    background-color: var(--branco);
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.review-card {
    background: var(--cinza-claro);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.review-stars {
    color: var(--dourado);
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

.review-text:before {
    content: '"';
    font-size: 3rem;
    color: var(--azul-claro);
    position: absolute;
    left: -15px;
    top: -20px;
    opacity: 0.3;
    font-family: serif;
}

.review-author {
    font-weight: 700;
    color: var(--roxo-escuro);
}

.blog-section {
    padding: 24px 12px;
    background-color: var(--cinza-claro);
    text-align: center;
}

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

.blog-actions {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.blog-masonry {
    column-count: 4;
    column-gap: 12px;
}

/* Collapsed state: show 4 centered cards in a grid */
.blog-masonry.collapsed {
    column-count: initial;
    column-gap: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.blog-masonry.collapsed .blog-card {
    display: block; /* ensure full width inside grid cell */
}

/* Show only first 4 posts when collapsed */
.blog-masonry.collapsed .blog-card:nth-child(n+5) { display: none; }

.blog-card {
    background: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    margin: 0 0 12px;
    break-inside: avoid;
}

.blog-img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 14px;
}

.blog-content h3 {
    color: var(--roxo-escuro);
    margin-bottom: 6px;
    font-size: 1.05rem;
}
.blog-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-content p {
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .blog-masonry { column-count: 3; }
    .blog-masonry.collapsed { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .blog-masonry { column-count: 2; }
    .blog-masonry.collapsed { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .blog-masonry { column-count: 1; }
    .blog-masonry.collapsed { grid-template-columns: 1fr; }
    .blog-img { max-height: 120px; }
}

/* Rating count next to stars */
.rating-count {
    color: #666;
    font-size: 0.85rem;
    margin-left: 2px;
    vertical-align: baseline;
}

/* Place rating numbers right next to stars */
.nov-info .nov-stars,
.best-info .best-stars {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
    line-height: 1;
}

/* Unified rating badge (stars + count) */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.rating-badge .nov-stars,
.rating-badge .best-stars { margin-right: 0; }
.rating-badge .rating-count { margin-left: 0; color: #2f2f2f; font-size: 0.8rem; font-weight: 600; }

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 40px; /* alinhado com o WhatsApp */
    bottom: 110px; /* acima do WhatsApp */
    width: 60px;  /* mesmo tamanho do WhatsApp no desktop */
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.65); /* escurecido para contrastar com o fundo */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 101;
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 2px 2px 12px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.back-to-top:hover { 
    background: rgba(0,0,0,0.78);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
@media (max-width: 576px) {
    .back-to-top { right: 20px; bottom: 90px; width: 50px; height: 50px; }
}

.benefits-section {
    background-color: var(--roxo-escuro);
    color: var(--branco);
    padding: 40px 15px;
}

/* Ensure the section title text is white in the benefits section */
.benefits-section .section-title {
    color: var(--branco);
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-card h3 {
    color: var(--branco);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
}

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

.address-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.address-card {
    background: var(--branco);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.address-card h4 {
    color: var(--roxo-medio);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.map-container {
    margin-top: 15px;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive store video below maps */
.store-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.store-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.press-section {
    background-color: var(--cinza-claro);
    padding: 40px 15px;
}

.press-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.press-logo {
    max-height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.press-logo:hover {
    opacity: 1;
}

/* Cities Served Section */
.cities-section {
    background-color: var(--branco);
    padding: 40px 15px;
}

.cities-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cities-intro {
    margin: 0 auto 20px;
    max-width: 900px;
    color: #4a3a63;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 15px;
    justify-items: center;
}

.city-pill {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(75, 28, 113, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #f9f7fb 100%);
    color: #3b2a52;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.city-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: rgba(75, 28, 113, 0.4);
}

.cities-note {
    margin-top: 20px;
    color: #6b5a84;
}

@media (max-width: 576px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .city-pill {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--rosa), var(--roxo-medio));
    padding: 40px 15px;
    text-align: center;
    color: var(--branco);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-container h2 {
    color: var(--branco);
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px 15px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    flex: 1;
    min-width: 250px;
    outline: none;
}

.newsletter-form button {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background-color: var(--roxo-escuro);
    color: var(--branco);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background-color: var(--roxo-medio);
    transform: translateY(-2px);
}

#newsletterFeedback {
    display: none;
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq-section {
    background-color: var(--branco);
    padding: 60px 15px;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.faq-card {
    background: var(--cinza-claro);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-card h3 {
    color: var(--roxo-escuro);
    font-size: 1.2rem;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-card h3:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--rosa);
}

.faq-card.active h3:after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.faq-card.active .faq-answer {
    display: block;
}

/* Brands Section */
.brands-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
    padding: 60px 15px;
    text-align: center;
}

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

/* Novidades Section (Carousel) */
.novidades-section {
    background-color: var(--branco);
    padding: 40px 15px;
}

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

/* Novidades carousel visible */
.novidades-carousel {
    position: relative;
}
.nov-viewport {
    overflow: hidden;
    scroll-snap-type: x mandatory;
}

.nov-track {
    display: flex;
    gap: 16px;
    scroll-behavior: smooth;
}

.nov-card {
    background: var(--cinza-claro);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    min-width: calc(25% - 12px); /* 4 por vez no desktop */
    max-width: calc(25% - 12px);
    display: flex;
    flex-direction: column;
    min-height: 420px; /* mesma altura dos best cards para alinhamento visual */
}

.nov-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 */
    overflow: hidden;
    background: #fff;
}

.nov-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.nov-img.secondary { opacity: 0; }
.nov-img-wrap:hover .nov-img.secondary { opacity: 1; }
.nov-img-wrap:hover .nov-img.primary { opacity: 0; }

.nov-info {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
}

/* Área de compra no rodapé da informação do card */
.nov-info .buy-area,
.best-info .buy-area {
    margin-top: auto;
    padding-top: 6px;
}

.nov-info h3 {
    font-size: 1.02rem;
    color: var(--roxo-escuro);
    margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    line-clamp: 2; /* compat */
    min-height: 2.6em;
}

.nov-stars {
    color: var(--dourado);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.nov-info .rating-badge, .nov-stars { min-height: 1.2rem; }

.nov-desc {
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    line-clamp: 3; /* compat */
    min-height: 3.9em;
}

.nov-price {
    font-weight: 700;
    color: var(--rosa);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
    min-height: 1.4rem;
}

.nov-price .price-old {
    text-decoration: line-through;
    color: #888;
    font-weight: 500;
    font-size: 0.9rem; /* menor que o preço novo */
}

.nov-price .price-new {
    color: var(--rosa);
    font-weight: 800;
    font-size: 1.05rem; /* levemente maior e em destaque */
}

/* Aplicar o mesmo padrão na seção de mais vendidos */
.best-price {
    font-weight: 700;
    color: var(--rosa);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
.best-price .price-old {
    text-decoration: line-through;
    color: #888;
    font-weight: 500;
    font-size: 0.9rem;
}
.best-price .price-new {
    color: var(--rosa);
    font-weight: 800;
    font-size: 1.05rem;
}

/* Destaque visual quando card está em promoção */
.nov-card.promo, .best-card.promo {
    position: relative;
}
.nov-card.promo::before, .best-card.promo::before {
    content: 'Promoção';
    position: absolute;
    top: 10px; left: -32px;
    transform: rotate(-34deg);
    background: linear-gradient(90deg, #ff6aa6 0%, #ff2f81 100%);
    color: #fff;
    padding: 6px 42px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    z-index: 2;
}

/* Hover nos cards para sensação de elevação */
.nov-card:hover, .best-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Fallback genérico caso price-old/new sejam usados fora dos containers acima */
.price-old { text-decoration: line-through; color: #888; font-weight: 500; font-size: 0.9rem; }
.price-new { color: var(--rosa); font-weight: 800; font-size: 1.05rem; }

/* Mobile: preço antigo em cima e novo embaixo */
@media (max-width: 576px) {
  .nov-price, .best-price { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
}

.nov-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
}

.nov-btn:hover { background: rgba(0,0,0,0.75); }
.nov-btn.prev { left: 6px; }
.nov-btn.next { right: 6px; }

/* Carrossel: Novidades */
.novidades-carousel { position: relative; }
.nov-viewport { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
.nov-track { display: flex; align-items: stretch; gap: 12px; }
.nov-card { flex: 0 0 auto; }

/* Carrossel: Mais Vendidos */
.bestsellers-carousel { position: relative; }
.best-viewport { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
.best-track { display: flex; align-items: stretch; gap: 12px; }
.best-card { flex: 0 0 auto; }

@media (max-width: 992px) {
    .nov-card {
        min-width: calc(33.333% - 11px); /* 3 por vez */
        max-width: calc(33.333% - 11px);
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .nov-card {
        min-width: calc(50% - 8px); /* 2 por vez */
        max-width: calc(50% - 8px);
        min-height: 380px;
    }
}

@media (max-width: 480px) {
    .nov-card {
        min-width: calc(50% - 8px); /* manter 2 por vez no mobile */
        max-width: calc(50% - 8px);
        min-height: 320px;
    }
}

/* Botão 100% em telas pequenas para melhor conversão */
@media (max-width: 576px) {
    .buy-button { max-width: 100%; }
    .topbar-container { padding: 0 10px; grid-template-columns: 1fr auto 1fr; }
    .search-form--topbar { max-width: 100%; }

    /* Topbar: por padrão mostrar só a lupa no mobile */
    .search-form--topbar .search-wrap { position: static; }
    .search-form--topbar input[type="search"] { display: none; }
    .topbar.search-open .search-form--topbar input[type="search"] {
        display: block;
        position: absolute; left: 10px; right: 10px; top: calc(var(--topbar-height) + 6px);
        z-index: 1300;
        min-width: 0; max-width: none; width: auto;
        padding-right: 44px;
        background: rgba(31,15,44,0.9);
        border-color: rgba(255,255,255,0.35);
    }
    .topbar.search-open .autocomplete-list { left: 10px; right: 10px; top: calc(var(--topbar-height) + 46px); }

    /* Hero badges menores para reduzir poluição visual */
    .hero-highlights { gap: 6px; }
    .hero-highlight { font-size: 0.72rem; padding: 4px 8px; }
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.brand-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 180px;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: rgba(0,0,0,0.12);
}

/* Accent bar on top of each brand card */
.brand-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    background: linear-gradient(90deg, var(--rosa) 0%, var(--roxo-medio) 50%, var(--azul-claro) 100%);
    opacity: 0.85;
}

.brand-logo {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 12px;
    filter: grayscale(100%) saturate(0.5);
    opacity: 0.7;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.brand-card:hover .brand-logo {
    filter: none;
    opacity: 1;
    transform: scale(1.03);
}

/* Instagram Section */
.instagram-section {
    padding: 40px 15px;
}
.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
}
.instagram-sub {
    text-align: center;
    color: #6b5a84;
    margin-top: -10px;
}
.instagram-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.ig-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.ig-media {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #eee;
}
.ig-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.ig-card:hover .ig-media img { transform: scale(1.05); }
.ig-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.25s ease;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.ig-card:hover .ig-overlay { opacity: 1; }
.instagram-cta { text-align: center; margin-top: 14px; }

@media (max-width: 992px) {
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .instagram-grid { grid-template-columns: 1fr; }
}

.brand-card h3 {
    color: var(--roxo-escuro);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Hide brand descriptive text by default; reveal on click (open state) */
.brand-card p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(4px);
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
    margin: 0; /* remove default margin to avoid layout shift */
}

.brand-card.open p {
    max-height: 140px; /* enough for 2-3 lines */
    opacity: 1;
    transform: translateY(0);
    margin-top: 6px;
}

/* Subtle hint when closed */
.brand-card:not(.open)::after {
    content: "Clique para ver";
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 11px;
    color: rgba(0,0,0,0.45);
}

/* Best Sellers Section */
.bestsellers-section {
    padding: 60px 15px;
    background-color: var(--branco);
}

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

.bestsellers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.bestseller-card {
    background: var(--cinza-claro);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.bestseller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bestseller-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bestseller-content {
    padding: 20px;
}

.bestseller-content h3 {
    color: var(--roxo-escuro);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.bestseller-price {
    color: var(--rosa);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 10px 0;
}

.bestseller-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--rosa);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.bestseller-button:hover {
    background-color: var(--roxo-medio);
}

/* Selos de Confiança */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.trust-badge {
    height: 50px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
}

/* Contador de Vendas */
.sales-counter {
    background: linear-gradient(135deg, rgba(75,28,113,0.95) 0%, rgba(216,27,96,0.85) 100%);
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    display: block;
    margin: 28px auto 12px;
    font-weight: 700;
    max-width: fit-content;
    box-shadow: 0 8px 22px rgba(75, 28, 113, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sales-counter p {
    font-size: 1.2rem;
    margin: 0;
    letter-spacing: 0.2px;
}

.sales-counter span {
    color: var(--dourado);
    font-weight: 700;
}

footer {
    background-color: var(--roxo-escuro);
    color: var(--branco);
    text-align: center;
    padding: 30px 15px;
    font-size: 0.9rem;
}

/* ===== Cidades (SEO Local) ===== */
.cities-section { padding: 70px 15px 40px; }
.cities-container { max-width: 1100px; margin: 0 auto; }
.cities-intro { max-width: 860px; margin: 8px auto 16px; color: #5b4a7c; }
.cities-cta { text-align: center; }
.brasil-map { display: block; max-width: 680px; width: 100%; margin: 10px auto 18px; filter: drop-shadow(0 10px 26px rgba(0,0,0,0.08)); }
.brasil-map svg { width: 100%; height: auto; display: block; }
/* Cores com maior contraste contra o fundo roxo do site */
.brasil-map .uf { fill: #c6b1ff; stroke: #4b1c71; stroke-width: 1.2; transition: fill .15s ease, stroke .15s ease, filter .15s ease; cursor: pointer; }
.brasil-map .uf:hover { fill: #b28cff; filter: drop-shadow(0 6px 14px rgba(75,28,113,0.22)); }
.brasil-map .uf:focus { outline: none; stroke: #5a28a1; stroke-width: 2; }
.brasil-map .uf-active, .brasil-map .uf.uf-active { fill: var(--map-active-fill, #8e6cf2); stroke: var(--map-active-stroke, #3b1363); }
.brasil-map .uf-disabled { cursor: default; opacity: 0.5; }
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.city-pill { list-style: none; }

/* Estado: destaque laranja para páginas de estado */
body.state-page {
  --map-active-fill: #ff8c00;  /* laranja */
  --map-active-stroke: #cc6e00; /* laranja escuro para borda */
}
.city-pill > a {
  display: block; text-decoration: none; color: #3b1363;
  background: #ffffff; border: 1px solid #e6dcfa; border-radius: 10px;
  padding: 10px 12px; font-weight: 600; font-size: 0.95rem;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease, background .18s ease;
}
.city-pill > a:hover { box-shadow: 0 6px 18px rgba(75,28,113,0.10); transform: translateY(-1px); border-color: #d9ccff; }
.city-pill > a:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(142,108,242,0.18); }

@media (max-width: 992px) { .cities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .cities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cities-grid { grid-template-columns: 1fr; } }

/* Split layout: mapa à esquerda e lista por extenso à direita */
.locais-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: start; }
.locais-col.right { background: #fff; border: 1px solid #eee3ff; border-radius: 12px; padding: 14px; box-shadow: 0 6px 16px rgba(0,0,0,0.05); }
.state-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
.state-item { background: #ffffff; border: 1px solid #eae3ff; border-radius: 10px; padding: 10px 12px; color: #3b1363; font-weight: 600; }
.state-item a { color: inherit; text-decoration: none; }
.state-item:hover { border-color: #d9ccff; box-shadow: 0 6px 14px rgba(75,28,113,0.08); }

/* Grid para dividir a lista de cidades em duas colunas */
.state-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.state-list-grid .state-list { margin: 0; }
/* Caso a página de estado use apenas uma UL, dividimos em 2 colunas automaticamente no lado direito */
.locais-col.right > .state-list { grid-template-columns: 1fr 1fr; }

/* Override para listas com 3 colunas opcionais dentro do bloco da direita */
.locais-col.right > .state-list.state-list--3cols { grid-template-columns: 1fr; }
@media (min-width: 768px) { .locais-col.right > .state-list.state-list--3cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .locais-col.right > .state-list.state-list--3cols { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 576px) {
  .state-list-grid { grid-template-columns: 1fr; }
  .locais-col.right > .state-list { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .locais-split { grid-template-columns: 1fr; }
}

/* Mapa menor em telas menores */
@media (max-width: 768px) {
  .brasil-map { max-width: 520px; }
}
@media (max-width: 576px) {
  .brasil-map { max-width: 360px; }
}

/* Offset da topbar nesta página para evitar sobreposição do primeiro bloco */
body.locais-page .locais-about { margin-top: calc(var(--topbar-height) + 10px); }

/* Galeria Locais com transição blur */
.locais-gallery { padding: 24px 15px; background: linear-gradient(180deg,#fff 0%,#faf7ff 100%); }
.locais-gallery__container { max-width: 1100px; margin: 0 auto; }
.gallery-stage { position: relative; width: 100%; height: 260px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 26px rgba(0,0,0,0.08); }
.gallery-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(12px); opacity: 0; transition: opacity .8s ease, filter .8s ease; }
.gallery-img.active { opacity: 1; filter: blur(0); }
.gallery-caption { margin-top: 10px; color: #5b4a7c; text-align: center; font-size: .95rem; }

@media (min-width: 768px) { .gallery-stage { height: 360px; } }

/* Como funciona + Galeria lado a lado */
.how-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; align-items: start; }
.how-col { background: #fff; border: 1px solid #eee3ff; border-radius: 12px; padding: 16px; box-shadow: 0 6px 16px rgba(0,0,0,0.05); }
.how-col h2 { margin-top: 0; }
.how-col p { color: #4a3a6e; line-height: 1.6; }
.how-col strong { color: #3b1363; }
.how-col ul { margin: 8px 0 10px; padding-left: 18px; }
.how-col ul li { margin: 6px 0; color: #4a3a6e; }
.how-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin: 12px 0 6px; padding: 0; list-style: none; }
.how-item { display: flex; gap: 10px; align-items: flex-start; background: #faf7ff; border: 1px solid #eee3ff; border-radius: 10px; padding: 10px; }
.how-item i { color: #6b42b9; font-size: 18px; line-height: 1; margin-top: 2px; }
.how-item span { color: #4a3a6e; }
.how-note { background: #fff8f2; border: 1px dashed #ffcead; border-radius: 10px; padding: 10px 12px; color: #5c3c1f; margin: 8px 0 4px; }
.how-gallery { padding: 0; }
.how-gallery .gallery-stage { height: auto; aspect-ratio: 3 / 4; }
.how-gallery .gallery-caption { text-align: left; margin: 8px 0 0; font-size: .9rem; }

/* Mobile otimizado para "Compre sem medo" (locais-how) */
@media (max-width: 576px) {
  .locais-how { padding: 14px 12px 6px; }
  .how-split { gap: 10px; }
  .how-col { padding: 12px; }
  .how-col h2.section-title { margin-bottom: 10px; }
  .how-col p { font-size: 0.95rem; line-height: 1.5; }
  .how-list { grid-template-columns: 1fr 1fr; gap: 8px; }
  .how-item { padding: 8px; gap: 8px; }
  .how-item i { font-size: 16px; }
  .how-item span { font-size: 0.92rem; line-height: 1.35; }
  .how-note { padding: 8px 10px; font-size: 0.92rem; }
  .how-gallery .gallery-stage { aspect-ratio: 4 / 5; }
}

/* Miniatura da caixa (embalagem discreta) */
.caixa-thumb { width: 90px; height: auto; border-radius: 10px; float: right; margin: 4px 0 8px 12px; box-shadow: 0 6px 14px rgba(0,0,0,0.10); }

/* Override final para mobile da seção "Compre sem medo": 2 colunas no <=576px */
@media (max-width: 576px) {
  .how-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .how-split { grid-template-columns: 1fr; }
  .how-list { grid-template-columns: 1fr; }
}

/* Melhorias de navegação mobile: espaçamentos e tamanhos acessíveis */
@media (max-width: 576px) {
  .state-item { padding: 9px 10px; font-size: 0.95rem; }
  .locais-benefits__grid { gap: 10px; }
}

/* Rodapé mais elaborado */
.site-footer { background: #1f1033; color: #eae2ff; padding: 36px 15px; margin-top: 20px; }
.site-footer .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 16px; }
.site-footer .footer-inner > div { position: relative; padding-left: 14px; }
.site-footer .footer-inner > div:first-child { padding-left: 0; }
.site-footer .footer-inner > div:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.12); }
.site-footer h4 { color: #fff; margin: 0 0 10px; font-size: 1.05rem; }
.site-footer p, .site-footer a { color: #cfc3f9; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-branding { display: flex; gap: 12px; align-items: center; }
.footer-branding img { width: 48px; height: 48px; object-fit: contain; }
.footer-copy { border-top: 1px solid #3a2958; margin-top: 16px; padding-top: 12px; text-align: center; color: #b7a7e6; font-size: .92rem; }

.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-social a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; }
.footer-social a:hover { background: rgba(255,255,255,0.16); }

/* Bloco central no rodapé para logo e ícones alinhados ao centro */
.footer-center { text-align: center; margin-top: 18px; }
.footer-center .footer-logo-center { width: 140px; height: auto; display: inline-block; }
.footer-social.center { justify-content: center; }

@media (max-width: 992px) { .site-footer .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) {
  .site-footer { padding: 20px 12px; }
  .site-footer .footer-inner { grid-template-columns: 1fr; gap: 10px; }
  .site-footer .footer-inner > div { padding-left: 0; }
  .site-footer .footer-inner > div:not(:first-child) { border-left: 0; }
  .site-footer h4 { font-size: 1rem; margin: 6px 0 8px; }
  .site-footer p, .site-footer a { font-size: 0.92rem; line-height: 1.55; }
  .footer-social { gap: 8px; }
  .footer-social a { width: 32px; height: 32px; }
  .footer-center { margin-top: 12px; }
  .footer-center .footer-logo-center { width: 110px; }
  .footer-copy { margin-top: 12px; padding-top: 8px; font-size: 0.82rem; }
}

/* Lojas (vídeos + mapas) */
.stores-section { padding: 30px 15px 40px; }
.stores-container { max-width: 1100px; margin: 0 auto; }
.stores-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
/* Home: reduzir largura máxima da seção de lojas para voltar ao tamanho anterior */
body:not(.locais-page) .stores-container { max-width: 960px; }
body:not(.locais-page) .store-video::before,
body:not(.locais-page) .store-map::before { padding-top: 45%; }
.store-card { background: #fff; border: 1px solid #eee3ff; border-radius: 14px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); overflow: hidden; }
.store-head { padding: 14px 16px; border-bottom: 1px solid #f0e9ff; }
.store-head h3 { margin: 0; font-size: 1.1rem; color: #3b1363; }
.store-media { display: grid; grid-template-columns: 1fr 1fr; }
.store-video, .store-map { position: relative; width: 100%; }
.store-video::before, .store-map::before { content: ""; display: block; padding-top: 56.25%; }
.store-video iframe, .store-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.store-foot { padding: 10px 16px; border-top: 1px solid #f0e9ff; display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.store-foot a { color: #5a28a1; font-weight: 700; text-decoration: none; }
.store-foot a:hover { text-decoration: underline; }

/* Estados: ajustar rodapé das lojas (abaixo dos mapas) */
body.state-page .store-foot {
  background: var(--roxo-escuro);
  color: #fff;
  border-top: none;
}
body.state-page .store-foot span { color: #fff; }
/* Remover texto/links do rodapé (Falar no WhatsApp) nas páginas de estados */
body.state-page .store-foot a { display: none !important; }

@media (max-width: 992px) { .stores-grid { grid-template-columns: 1fr; } }

/* ===== Locais (página base) ===== */
.locais-hero { padding: 36px 15px 10px; background: linear-gradient(180deg, #f7f3ff 0%, #ffffff 100%); }
.locais-hero__container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.locais-hero__copy { max-width: 900px; text-align: center; }
.locais-hero__copy h1 { font-size: 2rem; margin-bottom: 8px; color: #3b1363; }
.locais-hero__copy p { color: #5b4a7c; font-size: 1.02rem; }
.locais-hero__badges { display: inline-flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.locais-hero__badges span { background: #efe7ff; color: #4b1c71; padding: 6px 10px; border-radius: 999px; font-weight: 600; font-size: 0.85rem; border: 1px solid #d7c7ff; }

.locais-benefits { padding: 26px 15px 8px; }
.locais-benefits__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit { background: #fff; border: 1px solid #eee3ff; border-radius: 12px; padding: 16px; box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.benefit h3 { font-size: 1.02rem; color: #3b1363; margin-bottom: 6px; }
.benefit p { color: #6b5a84; font-size: 0.95rem; }

.map-legend { text-align: center; color: #7a6a92; margin: 8px 0 6px; }

.locais-search { padding: 8px 15px 18px; }
.state-search-wrap { display: flex; justify-content: center; margin: 10px 0 12px; }
.state-search { width: 100%; max-width: 560px; border: 1px solid #e6dcfa; border-radius: 10px; padding: 12px 14px; outline: none; font-size: 1rem; }
.state-search:focus { border-color: #8e6cf2; box-shadow: 0 0 0 3px rgba(142,108,242,0.15); }

.locais-how { padding: 16px 15px 10px; background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%); }
.how-steps { max-width: 780px; margin: 0 auto; color: #5b4a7c; padding-left: 18px; }
.how-steps li { margin: 6px 0; }

.locais-faq { padding: 24px 15px 40px; }
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 10px; }
.faq-list details { background: #fff; border: 1px solid #eee3ff; border-radius: 10px; padding: 10px 14px; box-shadow: 0 6px 16px rgba(0,0,0,0.05); }
.faq-list summary { cursor: pointer; font-weight: 700; color: #3b1363; }
.faq-list p { margin-top: 8px; color: #5b4a7c; }

@media (max-width: 992px) {
  .locais-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .locais-hero__copy h1 { font-size: 1.6rem; }
  .locais-benefits__grid { grid-template-columns: 1fr; }
}

.footer-brand {
    margin-bottom: 10px;
}

.footer-logo {
    height: auto;
    max-width: 200px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    color: var(--branco);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--azul-claro);
}

/* Classes para acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .hero-section {
        height: auto;
        min-height: 420px;
        padding: 24px 12px 110px; /* reduced bottom space, CTA ainda acima da wave */
    }
    .wave-separator { height: 90px; }
    .hero-content p {
        font-size: 0.98rem;
    }

    /* Aproximar CTA da copy no mobile */
    .cta-buttons { margin-top: 12px; }

    .cta-button {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .map-container {
        height: 250px;
    }

    .blog-img {
        height: 150px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

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

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.7rem;
    }

    p {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 30px;
        max-width: 80%;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .about-grid, .lingerie-grid, .reviews-grid, .benefits-grid, .blog-grid, .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .address-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .press-logos {
        gap: 25px;
    }

    .press-logo {
        max-height: 35px;
    }

    .lingerie-img {
        height: 300px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    .hero-content {
        padding: 40px;
        max-width: 800px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .content-section, .lingerie-section, .reviews-section, 
    .benefits-section, .newsletter-section, .blog-section,
    .faq-section, .brands-section, .bestsellers-section {
        padding: 60px 20px;
    }

    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .bestsellers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Keep hero badges on a single line on desktop */
    .hero-highlights { flex-wrap: nowrap; gap: 12px; justify-content: center; }
    .hero-highlight { white-space: nowrap; flex: 0 0 auto; }
}
/* Label discreta para Produtos Mais Vendidos (sem alterar HTML) */
.bestsellers-section .best-img-wrap { position: relative; }

.bestsellers-section .best-img-wrap::after {
  content: 'Mais Vendidos';
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #fff;
  background: linear-gradient(90deg, var(--rosa) 0%, var(--roxo-medio) 100%);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  z-index: 2;
  pointer-events: none; /* no bloqueia cliques */
}

@media (max-width: 360px) {
  .bestsellers-section .best-img-wrap::after {
    padding: 3px 8px;
    font-size: 0.65rem;
  }
}
/* Novidades: desabilitar scroll horizontal manual; usar apenas setas */
.novidades-carousel .nov-viewport {
  overflow: hidden !important;
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}
.novidades-carousel .nov-viewport::-webkit-scrollbar { display: none; }

/* Setas laterais em laranja neon */
.nov-btn {
  background: rgba(255,138,0,0.95) !important; /* neon orange base */
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  box-shadow: 0 0 12px rgba(255,138,0,0.6), 0 6px 16px rgba(0,0,0,0.25) !important;
}
.nov-btn:hover {
  background: rgba(255,160,0,1) !important;
  box-shadow: 0 0 16px rgba(255,160,0,0.85), 0 8px 20px rgba(0,0,0,0.3) !important;
}
/* Mais Vendidos: desabilitar scroll horizontal manual; usar apenas setas */
.bestsellers-carousel .best-viewport {
  overflow: hidden !important;
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}
.bestsellers-carousel .best-viewport::-webkit-scrollbar { display: none; }

/* Setas laterais (Mais Vendidos) em laranja neon */
.best-btn {
  background: rgba(255,138,0,0.95) !important; /* neon orange base */
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  box-shadow: 0 0 12px rgba(255,138,0,0.6), 0 6px 16px rgba(0,0,0,0.25) !important;
}
.best-btn:hover {
  background: rgba(255,160,0,1) !important;
  box-shadow: 0 0 16px rgba(255,160,0,0.85), 0 8px 20px rgba(0,0,0,0.3) !important;
}
