/* 
    DSN LOJA DISNEYLANDIA - ULTIMATE PORTAL STYLE (ANGEL ULTRA-PARITY)
    - Full Responsivity
    - Hover Interaction Systems
    - Centralized Editorial Layout
*/

:root {
    --bg-color: #FFFFFF;
    --text-color: #000000;
    --accent-color: #F8F8F8;
    --border-color: #EEEEEE;
    --muted-color: #777777;
    --gold-accent: #C5A059; /* Luxury accent */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-editorial: 'Playfair Display', serif; /* Luxury Serif for DLZ-style feel */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1600px; /* Wider container for premium feel */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 5%;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 4%;
    }
}

/* Benefit Bar */
.benefit-bar {
    background: #fbfbfb;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
}

.benefit-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    font-size: 1.1rem;
    color: #111;
}

.benefit-item span {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.25em;
}

/* Header & Mobile Menu */
.top-navigation-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 2000;
    transition: all 0.3s ease;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.top-navigation-wrapper.home-transparent {
    position: absolute;
}

.top-navigation-wrapper.home-transparent.scrolled {
    position: fixed;
}

.top-navigation-wrapper.home-transparent:not(.scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.promo-bar {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.5s ease;
    overflow: hidden;
    height: auto;
    max-height: 40px;
}

.top-navigation-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.top-navigation-wrapper.scrolled .promo-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.top-navigation-wrapper.home-transparent:not(.scrolled) header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    max-width: 1600px;
    margin: 0 auto;
    transition: padding 0.4s ease;
}

.top-navigation-wrapper.scrolled .nav-container {
    padding: 12px 5%;
}

.logo img {
    height: 24px;
    display: block;
    transition: 0.3s ease;
    filter: brightness(0); /* Força a logo a ser SEMPRE preta por padrão (legibilidade nos cabeçalhos brancos) */
}

.top-navigation-wrapper.home-transparent:not(.scrolled) .logo img {
    filter: brightness(0) invert(1); /* Torna a logo branca apenas quando a home estiver transparente ANTES de rolar */
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #000;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    opacity: 0.7;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--text-color);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.top-navigation-wrapper.home-transparent:not(.scrolled) .nav-links a {
    color: #fff;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
}

.nav-actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-actions i {
    color: #000;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.top-navigation-wrapper.home-transparent:not(.scrolled) .nav-actions i {
    color: #fff;
}

.nav-actions i:hover {
    color: var(--muted-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 1.5px;
    background: #000;
    margin: 5px 0;
    transition: 0.4s;
}

.top-navigation-wrapper.home-transparent:not(.scrolled) .hamburger span {
    background: #fff;
}

/* Hero Slider (Swiper) */
#hero {
    height: 80vh;
    min-height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

@media (max-width: 768px) {
    #hero {
        height: 60vh;
        min-height: 400px;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-img {
    transform: scale(1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-family: var(--font-heading);
    font-weight: 300;
    margin: 20px 0;
    letter-spacing: -2px;
    line-height: 1;
}

#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2100;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 100px 40px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
}

#mobile-menu.active {
    right: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.3));
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.moment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1080px;
    margin: 42px auto 0;
}

.moment-item {
    min-height: 380px;
    border-radius: 18px;
}

.moment-item[style] {
    aspect-ratio: 0.82 !important;
}

.moment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moment-item div {
    left: 24px !important;
    bottom: 24px !important;
}

.moment-item h3 {
    font-size: 1.15rem !important;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-img-box {
    position: relative;
    aspect-ratio: 0.75;
    overflow: hidden;
    background: #F2F2F2;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-img-box img.secondary-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.05);
}

.product-card:hover .product-img-box img.main-img {
    opacity: 0;
}

.product-card:hover .product-img-box img.secondary-img {
    opacity: 1;
    transform: scale(1.08);
}

.btn-buy-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    opacity: 0;
}

.product-card:hover .btn-buy-hover {
    transform: translateY(0);
    opacity: 1;
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 25px 0;
}

.p-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.p-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #111;
}

.p-price {
    font-family: var(--font-editorial);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gold-accent);
}

/* Seção de Depoimentos */
.testimonials-section {
    background: #fbfbfb;
    padding: 120px 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.testimonial-card i {
    font-size: 1.5rem;
    color: #ccc;
    display: block;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0 auto 20px;
}

.testimonial-card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--muted-color);
}

/* Seção FAQ */
.faq-section {
    padding: 120px 0;
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 25px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.category-hero {
    padding-top: 150px;
}

@media (max-width: 768px) {
    .category-hero {
        padding-top: 100px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.map-container {
    height: 500px;
    background: #eee;
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-link {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.brand-story {
    padding-top: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.story-card,
.contact-panel,
.contact-hero {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    border: 1px solid #ece7df;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.06);
}

.story-card {
    padding: 32px;
}

.story-card h2,
.contact-panel h2 {
    font-family: var(--font-editorial);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 18px;
}

.story-card p,
.contact-panel p,
.contact-copy p {
    color: #555;
    font-size: 1rem;
}

.contact-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    padding: 32px;
    border-radius: 28px;
}

.contact-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.95;
    margin-bottom: 18px;
}

.contact-actions {
    margin-top: 28px;
}

.contact-visual {
    min-height: 420px;
    border-radius: 22px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-panel {
    padding: 32px;
    border-radius: 24px;
}

.contact-info-list {
    margin-top: 28px;
}

.contact-info-list p + p {
    margin-top: 14px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--muted-color);
    font-size: 1rem;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

.faq-item.active i {
    transform: rotate(180deg);
}

.p-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-color);
    display: block;
}

.p-name {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
}

.p-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2b2b2b;
}

/* Social Instagram Grid */
.social-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .social-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.social-item {
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.social-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.btn-outline-white {
    display: inline-block;
    padding: 18px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: var(--transition-smooth);
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
}

.btn-banner-whats {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 20px 45px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 35px;
    transition: var(--transition-smooth);
}

.btn-banner-whats:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Sticky Mobile Contact Bar */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    z-index: 2000;
    padding: 12px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .sticky-mobile-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
}

.sticky-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sticky-bar-btn.whats {
    background: #25D366;
}

/* Product Badge Refinement */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    padding: 6px 14px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* WhatsApp Online Indicator */
.whats-online-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #25D366;
    margin-bottom: 10px;
}

.whats-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
}

.whats-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Page Loading Bar */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-accent);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

/* Floating Promo Ribbon */
.promo-ribbon {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: var(--gold-accent);
    color: #fff;
    padding: 10px 30px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 1500;
    cursor: pointer;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .promo-ribbon { display: none; }
}

/* Scroll Reveal Tweaks */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.master-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent 28%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 42px;
    padding-bottom: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    font-weight: 700;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: #aaa;
    position: relative;
    padding-left: 0;
}

.footer-col ul a:hover {
    color: #fff;
}

/* Logo Centralizada no Rodapé */
.footer-logo-center {
    text-align: center;
    padding: 42px 0 36px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.footer-logo-center img {
    height: 58px;
    filter: brightness(0) invert(1); /* Logo Branca sobre Fundo Preto */
    opacity: 0.95;
    margin: 0 auto;
}

.footer-bottom {
    padding: 18px 0 34px;
    border-top: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.payment-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-row i {
    font-size: 1.2rem;
    color: #b3b3b3;
}

.trust-badge {
    padding: 10px 16px;
    border: 1px solid #333;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(255,255,255,0.03);
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.06);
}

.master-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.master-footer .container {
    position: relative;
    z-index: 2;
}

.btn-buy-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 16px;
    background: #000;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover .btn-buy-hover {
    transform: translateY(0);
}

.product-card:hover .product-img-box img {
    transform: scale(1.05);
}

/* Content Alignments (Centralization) */
.editorial-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.editorial-row.reverse {
    flex-direction: row-reverse;
}

.editorial-text {
    flex: 1;
}

.editorial-img {
    flex: 1;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Instagram Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

/* Moment Items Interaction */
.moment-item:hover img {
    transform: scale(1.1);
}

.moment-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: 1;
}

.moment-item div {
    z-index: 2;
}

/* Newsletter Refinement */
.newsletter-section input:focus {
    border-bottom-color: #fff;
}

/* Animations (Reveal Up) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsivity */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }

    .editorial-row {
        flex-direction: column !important;
        gap: 40px;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-padding {
        padding: 60px 0;
    }

    .footer-grid, .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 100px;
    }

    #hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .moment-grid {
        grid-template-columns: 1fr !important;
        max-width: 100%;
    }

    .moment-item,
    .moment-item[style] {
        min-height: 300px;
        aspect-ratio: auto !important;
    }

    .benefit-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 30px 20px;
    }

    .benefit-item {
        width: 100%;
    }

    .btn-buy-hover {
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: rgba(0,0,0,0.8);
        padding: 10px;
        font-size: 0.6rem;
    }

    .top-navigation-wrapper {
        position: sticky;
        top: 0;
    }

    .promo-bar {
        font-size: 0.55rem !important;
        padding: 8px !important;
        letter-spacing: 0.1em !important;
    }

    .nav-container {
        padding: 10px 20px !important;
    }

    .logo img {
        height: 18px !important;
    }
    
    .master-footer {
        padding: 56px 20px 20px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .payment-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        justify-content: center;
    }

    /* Content push to avoid header overlap on mobile */
    main {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix for horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


/* Banner WhatsApp Addition */
.whatsapp-banner {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.whatsapp-banner h2 {
    font-size: 2rem;
    font-family: var(--font-editorial);
    font-weight: 400;
    margin-bottom: 15px;
}

.whatsapp-banner p {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-banner-whats {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-banner-whats:hover {
    background: #25D366;
    color: #fff;
}


/* Botao Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}


/* SEO Landing Pages */
.internal-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.internal-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.internal-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.internal-hero .hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--font-heading);
    font-weight: 300;
    margin-top: 15px;
    letter-spacing: -1px;
}

.category-showcase .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.collection-subtitle {
    max-width: 720px;
    margin: 18px auto 0;
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.84);
}

.category-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.category-copy h2 {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1;
    margin: 14px 0 18px;
}

.category-copy p {
    max-width: 680px;
    color: #555;
    font-size: 1rem;
}

.category-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-feature-card {
    min-height: 100%;
    padding: 24px 22px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
    border: 1px solid #ebe4da;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.category-feature-card strong {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.category-feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.category-service-band {
    background: linear-gradient(135deg, #0f0f0f 0%, #1f1c19 100%);
    color: #fff;
}

.category-service-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 28px;
    align-items: center;
}

.category-service-inner h2 {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1;
    margin-top: 14px;
}

.category-service-inner p {
    color: rgba(255,255,255,0.78);
    font-size: 0.98rem;
    line-height: 1.8;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 1.8rem;
    font-family: var(--font-editorial);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 30px;
}

.seo-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 18px 45px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #25D366;
    color: #fff;
}

.btn-primary i {
    margin-right: 8px;
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1s forwards;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text:nth-child(2) {
    animation-delay: 0.3s;
}


/* ===== MOBILE ENHANCEMENTS ===== */

@media (max-width: 768px) {
    /* Footer grid stacks vertically */
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    /* WhatsApp Banner mobile */
    .whatsapp-banner {
        padding: 60px 20px;
    }

    .whatsapp-banner h2 {
        font-size: 1.5rem;
    }

    .btn-banner-whats {
        padding: 12px 30px;
        font-size: 0.65rem;
    }

    /* Category hero */
    .category-hero {
        padding-top: 80px !important;
    }

    .category-hero h1 {
        font-size: 1.8rem !important;
    }

    /* Internal hero for SEO pages */
    .internal-hero {
        height: 40vh;
        min-height: 280px;
    }

    .internal-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    /* SEO content */
    .seo-content h2 {
        font-size: 1.3rem;
    }

    .seo-content p {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 0.65rem;
    }

    .category-intro,
    .category-service-inner {
        grid-template-columns: 1fr !important;
    }

    .category-feature-grid {
        grid-template-columns: 1fr !important;
    }

    .collection-subtitle {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .category-showcase .hero-content {
        padding: 0 18px;
    }

    /* Editorial row on mobile */
    .editorial-row {
        margin-bottom: 40px !important;
    }

    .editorial-text h2 {
        font-size: 1.5rem;
    }

    /* Product info smaller */
    .product-info {
        padding: 12px 0;
    }

    .p-name {
        font-size: 0.92rem;
    }

    .p-category {
        font-size: 0.6rem;
    }

    .p-price {
        font-size: 0.8rem;
    }

    /* Contact grid */
    .contact-grid {
        gap: 40px !important;
    }

    .story-grid,
    .contact-hero {
        grid-template-columns: 1fr !important;
    }

    .contact-visual {
        min-height: 280px;
    }

    .map-container {
        height: 250px !important;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .testimonial-card {
        padding: 25px;
    }

    /* Moment grid */
    .moment-grid {
        gap: 15px !important;
    }

    /* Footer logo */
    .footer-logo-center {
        padding: 40px 0;
    }

    .footer-logo-center img {
        height: 42px;
    }

    /* Section padding compact */
    .section-padding {
        padding: 50px 4% !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    }

    .category-label {
        font-size: 0.55rem;
    }

    .whatsapp-banner h2 {
        font-size: 1.2rem;
    }

    .whatsapp-banner p {
        font-size: 0.65rem;
    }
}

/* Trust Bar Minimal */
.trust-bar-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: #fff;
    border: 1px solid #eee;
    margin-top: -50px;
    position: relative;
    z-index: 100;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333;
}

.trust-item i {
    color: var(--gold-accent);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .trust-bar-minimal {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-top: 0;
        padding: 25px;
    }
}

/* Category Pills */
.category-pills-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-pills-wrapper::-webkit-scrollbar {
    display: none;
}

.pill {
    padding: 10px 25px;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    white-space: nowrap;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.pill:hover, .pill.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 768px) {
    .category-pills-wrapper {
        justify-content: flex-start;
        padding-left: 5%;
        padding-right: 5%;
    }
}
