/* RESET & PALETA DE GRIFE */
:root {
    --bg-color: #FDFBF7; /* Areia/Off-White muito sofisticado */
    --text-color: #2A2522; /* Chumbo/Marrom bem escuro (Luxo) */
    --border-color: #E8E3DA; /* Cinza quente para bordas */
    --discount-color: #2A2522; /* Tons sóbrios até para desconto */
    --gray: #F4EFEB; /* Fundo suave alternativo */
    
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}
.font-serif { font-family: var(--font-serif); }

a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* HEADER */
.header {
    border-bottom: 1px solid rgba(232, 227, 218, 0.5);
    position: sticky;
    top: 0;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    transition: var(--transition-smooth);
}
.header.scrolled {
    background: rgba(253, 251, 247, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    height: 90px;
    transition: var(--transition-smooth);
    max-width: 1400px;
    margin: 0 auto;
}
.header.scrolled .header-container {
    height: 75px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
}
.left-nav {
    justify-content: flex-start;
}
.right-nav {
    justify-content: flex-end;
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.25rem;
    transition: opacity 0.3s;
}
.nav-link:hover {
    opacity: 0.7;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nav-link:hover::after {
    width: 100%;
}
.logo {
    flex: 1;
    display: flex;
    justify-content: center;
}
.logo a {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: var(--font-serif);
}
.icon-btn {
    color: var(--text-color);
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
    position: relative;
}
.icon-btn:hover { opacity: 0.6; }
.mobile-menu-btn {
    display: none;
}
.bag-btn {
    margin-left: 1rem;
}
.bag-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #D4AF37;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* BOTÕES GLOBAIS DE ALTO PADRÃO */
.btn-primary-solid {
    display: inline-block;
    background: var(--text-color);
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(42, 37, 34, 0.15);
}
.btn-primary-solid:hover {
    background: #111;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 37, 34, 0.25);
}
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 1.2rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}
.btn-outline:hover {
    background: var(--text-color);
    color: #fff;
}

/* HERO FULLSCREEN (GRIFE INTERNACIONAL) */
.hero-fullscreen {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 2rem;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(20,18,17,0.75) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-subtitle-light {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}
.hero-title-light {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
}
.hero-title-light em {
    font-style: italic;
    color: #E8E3DA;
}
.hero-text-light {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin-bottom: 3rem;
    max-width: 600px;
}
.hero-actions-center {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}
.btn-light-solid {
    display: inline-block;
    background: #fff;
    color: var(--text-color);
    padding: 1.2rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-light-solid:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.btn-light-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 1.2rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: var(--transition-smooth);
}
.btn-light-outline:hover {
    background: #fff;
    color: var(--text-color);
}

/* CATALOGO CLEAN (SIMÉTRICO) */
.catalog-showcase {
    padding: 6rem 4rem 10rem 4rem;
    background: var(--bg-color);
}
.catalog-header {
    text-align: center;
    margin-bottom: 5rem;
}
.catalog-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
    font-weight: 300;
}
.catalog-grid-symmetrical {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card-clean {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.4s ease;
}
.product-card-clean:hover {
    transform: translateY(-8px);
}
.product-img-clean {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}
.product-img-clean img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card-clean:hover .product-img-clean img {
    transform: scale(1.05);
}
.product-info-clean {
    text-align: center;
    padding: 0 1rem;
}
.product-info-clean h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}
.product-card-clean:hover .product-info-clean h3 {
    color: #8B7355;
}
.product-desc-clean {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.price-clean {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-color);
    font-weight: 500;
}
.badge-off, .badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 6px 12px;
    letter-spacing: 2px;
    z-index: 3;
    text-transform: uppercase;
}
.badge-off { background: var(--text-color); }
.badge-new { background: #8B7355; }
.catalog-footer {
    text-align: center;
    margin-top: 5rem;
}

/* FOOTER PROFISSIONAL */
.footer-pro {
    background: var(--text-color);
    color: #fff;
    padding: 6rem 2rem 2rem 2rem;
}
.footer-pro-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 5rem;
}
.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
.footer-col p, .footer-col ul li {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: none;
}
.footer-col ul li a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-pro-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

/* SECTIONS (WHY US, ABOUT, FAQ) */
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    font-family: var(--font-serif);
}

/* ABOUT US PREMIUM (A Essência + Benefícios) */
.about-us-premium {
    padding: 8rem 4rem;
    background: var(--bg-color);
}
.about-premium-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}
.about-premium-image {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.about-premium-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.05);
    pointer-events: none;
}
.about-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}
.about-premium-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-editorial-header {
    margin-bottom: 4rem;
}
.eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 2rem;
    color: #888;
}
.editorial-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: left;
}
.editorial-title em {
    font-style: italic;
    color: #999;
}
.editorial-text {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 90%;
    margin: 0 0 1.5rem 0;
    font-weight: 300;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.benefit-card {
    display: flex;
    flex-direction: column;
}
.benefit-card svg {
    color: #D4AF37;
    width: 28px;
    height: 28px;
    margin-bottom: 1rem;
    stroke-width: 1.5px;
}
.benefit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #777;
}

/* STORE LOCATION (NOVIDADE) */
.store-location {
    padding: 6rem 4rem;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}
.location-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 6rem;
}
.location-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}
.location-image img {
    width: 100%;
    height: auto;
    display: block;
}
.location-details {
    flex: 1;
}
.address-card {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.address-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.address-item svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
    color: var(--text-color);
    margin-top: 2px;
}
.address-item strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
.address-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* FAQ */
.faq-section {
    padding: 6rem 4rem;
    background: var(--gray);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}
.faq-item summary {
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    outline: none;
    font-family: var(--font-serif);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 300;
}
.faq-item[open] summary::after { content: '-'; }
.faq-item p {
    margin-top: 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

/* REAL FEEDBACKS (Marquee) */
.real-feedbacks {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-color), #F8F5F0);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}
.feedbacks-header {
    text-align: center;
    margin-bottom: 4rem;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    padding: 3rem 0;
}
.marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.25rem)); }
}
.feedback-card-text {
    flex: 0 0 380px;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
    border: 1px solid rgba(232, 227, 218, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    transform: scale(0.98);
    position: relative;
    overflow: hidden;
}
.feedback-card-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.08); /* Very transparent gold */
    line-height: 1;
    z-index: 0;
}
.feedback-card-text:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: #D4AF37;
}
.feedback-meta-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.feedback-stars {
    color: #D4AF37; /* Gold */
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.feedback-verified {
    font-size: 0.75rem;
    color: #6B8E23;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.feedback-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    font-family: var(--font-serif);
    position: relative;
    z-index: 2;
}
.feedback-author-name {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    text-align: left;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

/* RESPONSIVO MOBILE */
@media (max-width: 1024px) {
    .hero-fullscreen { min-height: 80vh; }
    .hero-title-light { font-size: 4rem; }
    .location-container { flex-direction: column; gap: 3rem; }
    .catalog-grid-symmetrical { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 768px) {
    .header-container { padding: 0 1.5rem; height: 75px; }
    .header-nav .nav-link { display: none; }
    .left-nav, .right-nav { flex: 0; }
    .logo { flex: 1; margin-left: 0; }
    .logo a { font-size: 1.1rem; letter-spacing: 3px; }
    .mobile-menu-btn { display: flex; }
    .bag-btn { margin-left: 0; }
    
    .hero-title-light { font-size: 3rem; }
    .hero-actions-center { flex-direction: column; width: 100%; }
    .hero-actions-center a { width: 100%; text-align: center; }
    
    .editorial-title { font-size: 2.8rem; }
    
    .about-premium-container { flex-direction: column; gap: 4rem; }
    .about-editorial-header .editorial-title { text-align: center; font-size: 3rem; }
    .about-editorial-header .eyebrow, .about-editorial-header .editorial-text { text-align: center; margin-left: auto; margin-right: auto; }
    .benefits-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .benefit-card { align-items: center; text-align: center; }
    
    .about-us-premium, .catalog-showcase, .real-feedbacks, .faq-section, .store-location { padding: 4rem 1.5rem; }
    
    .catalog-header { margin-bottom: 3rem; }
    .catalog-grid-symmetrical { grid-template-columns: 1fr; gap: 3rem; }
    
    .section-title { font-size: 2.2rem; margin-bottom: 2.5rem; }
    .feedback-card-text { flex: 0 0 320px; padding: 2rem 1.5rem; }
    
    .footer-pro { padding: 4rem 1.5rem 2rem 1.5rem; }
    .footer-pro-container { grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
}

/* ANIMAÇÕES DE ROLAGEM (REVEAL) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(253, 251, 247, 0.98);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-content {
    text-align: center;
    width: 100%;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}
.close-menu-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mobile-nav-link {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.whatsapp-link {
    color: #D4AF37;
    font-weight: bold;
    margin-top: 1rem;
}