/*
 * Metric-compatible fallback fonts (font-display: swap + size-adjust)
 * These @font-face overrides use system fonts sized/adjusted to closely match
 * DM Sans and Inter, so the page layout does not shift when web fonts arrive.
 * Generated using https://meowni.ca/font-style-matcher/ and Fontaine technique.
 */

/* DM Sans fallback — calibrated against Arial */
@font-face {
    font-family: "DM Sans Fallback";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: local("Arial");
    ascent-override: 94.56%;
    descent-override: 23.71%;
    line-gap-override: 0%;
    size-adjust: 101.88%;
}

/* Inter fallback — calibrated against Arial */
@font-face {
    font-family: "Inter Fallback";
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: local("Arial");
    ascent-override: 90.20%;
    descent-override: 22.48%;
    line-gap-override: 0%;
    size-adjust: 107.64%;
}

/* Montserrat fallback — calibrated against Arial */
@font-face {
    font-family: "Montserrat Fallback";
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: local("Arial");
    ascent-override: 85.00%;
    descent-override: 21.80%;
    line-gap-override: 0%;
    size-adjust: 113.00%;
}

:root {
    --primary-color: #501b4a;         /* Deep purple from açaí */
    --primary-light: #7a00df;
    --primary-dark: #3a1135;
    --accent-color: #f5b041;          /* Gold/yellow accent */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #fafafa;
    --bg-white: rgb(247, 244, 238);
    --menu-bg: rgb(247, 244, 238);
    --notice-height: 38px;

    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Scroll Reveal & Smooth Transition Engine */
.reveal,
.why-card,
.product-card,
.gallery-item,
.compliance-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal.active,
.why-card.active,
.product-card.active,
.gallery-item.active,
.compliance-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
}

.glass-dark {
    background: rgba(80, 27, 74, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(80, 27, 74, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Maintenance Notification Bar */
.notification-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--notice-height);
    background: linear-gradient(135deg, #501b4a 0%, #3a1135 100%);
    color: #ffffff;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(245, 176, 65, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    font-size: 0.88rem;
    font-family: var(--font-body);
}

.notification-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.notification-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.notification-icon {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.notification-text {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.notification-close {
    position: absolute;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    transition: var(--transition);
}

.notification-close:hover {
    color: var(--accent-color);
    transform: scale(1.15);
}

/* Header */
header {
    position: fixed;
    top: var(--notice-height, 38px);
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease, padding 0.3s ease, background 0.3s ease;
    padding: 20px 0;
}

body.no-notice header {
    top: 0;
}

header.scrolled {
    background: rgba(247, 244, 238, 0.96);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header.scrolled .nav-list li a {
    color: var(--primary-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    transition: var(--transition);
    filter: drop-shadow(0 0 25px rgba(88, 0, 46, 0.3));
    animation: floatLogo 5s ease-in-out infinite;
}

.logo img:hover {
    filter: drop-shadow(0 0 35px rgba(155, 93, 229, 0.9));
}

header.scrolled .logo img {
    height: 50px;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list li a {
    color: rgba(80, 27, 74, 0.85);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

header.scrolled .nav-list li a {
    text-shadow: none;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-list li a:hover::after {
    width: 100%;
}

header.scrolled .nav-list li a::after {
    background-color: var(--primary-color);
}

.nav-list li a.nav-btn-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-shadow: none !important;
    box-shadow: 0 4px 14px rgba(80, 27, 74, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-list li a.nav-btn-highlight:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 0, 223, 0.4);
}

.nav-list li a.nav-btn-highlight::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

header.scrolled .hamburger span {
    background-color: var(--primary-color);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg picture,
.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ================================================================
   HERO TEXT — formatação da capa do catálogo
   ================================================================ */
.cover-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 20px;
}

.cover-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: hsl(42, 40%, 65%);
    border: 1px solid hsl(42, 40%, 65%);
    padding: .35rem 1.2rem;
    border-radius: 999px;
}

.cover-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: #2a0c1a;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.cover-title em {
    font-style: italic;
    color: hsl(145, 25%, 48%);
    display: block;
    font-size: 0.92em;
    letter-spacing: 0.01em;
}

.cover-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(.85rem, 2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .80);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.cover-divider {
    width: 48px;
    height: 1.5px;
    background: linear-gradient(90deg, hsl(42, 50%, 58%), hsl(145, 25%, 48%));
    border-radius: 2px;
    margin: 0.25rem auto 0.1rem;
    opacity: 0.85;
}

.cover-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    font-weight: 400;
    color: rgba(42, 12, 26, 0.78);
    max-width: 440px;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

.desktop-text {
    display: inline;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: .5rem;
}

.cover-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(80, 27, 74, 0.3);
}

.cover-cta:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cover-cta-outline {
    background-color: #fafbf599;
    color: rgba(80, 27, 74, 0.85);
    border: 2px solid rgba(80, 27, 74, 0.85);
    box-shadow: none;
}

.cover-cta-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    border-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


.subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

/* ================================================================
   BRAND INTRO (copiado do catálogo – Nossa História)
   ================================================================ */
.brand-intro {
    background: #ffffff;
    padding: clamp(4rem, 10vw, 10rem) 1.5rem;
}

.brand-intro.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-intro.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.brand-intro-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.brand-intro-photo {
    position: relative;
}

.brand-intro-photo img,
.video-wrapper {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(61, 26, 94, .15);
    transform: rotate(-2deg);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    overflow: hidden;
    background: #1a0b2e;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 380px;
}

.brand-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.brand-intro-photo:hover img,
.brand-intro-photo:hover .video-wrapper {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 45px 110px rgba(80, 27, 74, .25);
}

.photo-caption {
    position: absolute;
    bottom: -1.5rem;
    left: 2rem;
    background: hsl(275, 45%, 12%);
    color: #ffffff;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .08em;
    padding: .65rem 1.4rem;
    border-radius: 999px;
    box-shadow: 0 10px 40px hsla(275, 45%, 10%, 0.05);
}

.section-label-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: hsl(145, 28%, 48%);
    margin-bottom: .9rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.section-label-cat::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: hsl(145, 28%, 48%);
    border-radius: 2px;
    flex-shrink: 0;
}

.brand-intro-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    color: hsl(275, 12%, 13%);
    line-height: 1.08;
    margin-bottom: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-em {
    font-style: italic;
    color: hsl(275, 32%, 28%);
    display: block;
}

.brand-intro-p {
    font-family: 'Montserrat', sans-serif;
    color: hsl(275, 6%, 40%);
    font-size: .92rem;
    margin-bottom: 1.2rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .brand-intro-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .brand-intro-photo img {
        height: 350px;
        transform: rotate(0deg);
    }

    .photo-caption {
        position: static;
        display: inline-block;
        margin-top: 2rem;
    }
}

/* About Section */
.about {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.subtitle-dark {
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li span {
    color: var(--primary-color);
    font-weight: bold;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* Products */
.products {
    background-color: #fff;
    padding: 100px 20px;
}

.section-header {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 700;
}

.section-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    color: hsl(275, 6%, 42%);
    letter-spacing: 0.01em;
    line-height: 1.8;
    max-width: 520px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(80, 27, 74, 0.08);
    border-color: var(--primary-light);
}

.card-img-placeholder {
    width: 100%;
    height: 230px;
    background: radial-gradient(circle at center, #ffffff 0%, #f6effa 100%);
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(80, 27, 74, 0.08);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8), 0 8px 24px rgba(80, 27, 74, 0.06);
    position: relative;
    transition: var(--transition);
}

.product-card:hover .card-img-placeholder {
    box-shadow: inset 0 0 25px #ffffff, 0 16px 36px rgba(80, 27, 74, 0.15);
    border-color: rgba(80, 27, 74, 0.22);
}

.card-img-placeholder picture,
.product-modal-img-wrap picture,
.product-detail-img-box picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.card-img-placeholder img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.45s ease;
    filter: drop-shadow(0 10px 18px rgba(61, 26, 94, 0.16));
    image-rendering: -webkit-optimize-contrast;
}

.product-card:hover .card-img-placeholder img {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 18px 28px rgba(80, 27, 74, 0.26));
}

.product-card p {
    text-align: left;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.badge-teal {
    background: #008080;
}

.badge-purple {
    background: #4a148c;
}

.badge-gold {
    background: #f5b041;
}

.badge-pink {
    background: #e91e63;
}

.product-specs {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    color: #555;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--primary-color);
}

.btn-card-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    margin-top: 8px;
}

.btn-card-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-card:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(80, 27, 74, 0.25);
    color: #ffffff;
}

.product-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Partnership Form */
.partnership {
    padding: 100px 20px;
    background: url('../images/Fundo.jpg') center/cover fixed;
    position: relative;
}

.partnership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.partnership-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: left;
}

.partnership-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.partnership-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    margin-bottom: 28px;
    opacity: 0.88;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    display: flex;
    gap: 15px;
}

.partner-form input,
.partner-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    margin-bottom: 15px;
    resize: vertical;
}

.partner-form input:focus,
.partner-form textarea:focus {
    outline: 2px solid var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 24px 20px 15px;
    font-size: 0.82rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 1.8fr 1.8fr 1.2fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 15px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    height: 42px;
    margin: 0 auto 6px;
    display: block;
}

.footer-links h3,
.footer-contact h3 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 0.92rem;
    font-weight: 600;
}

.footer-links p,
.footer-contact p {
    font-size: 0.82rem;
    line-height: 1.4;
    opacity: 0.8;
}

.social-links {
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.social-links a {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.85;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom {
    font-size: 0.72rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   WhatsApp Floating Button (Desktop)
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 12px 22px 12px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulseWhatsApp 2.5s infinite;
}

.whatsapp-float i {
    font-size: 1.8rem;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
    color: #ffffff;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 25px rgba(37, 211, 102, 0.45);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.45);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.45);
    }
}

/* ================================================================
   RESPONSIVE DESIGN SYSTEM (Desktop, Tablet & Mobile)
   ================================================================ */

/* ── 1. TABLET & SMALL DESKTOP (max-width: 1024px) ────────────── */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 24px;
    }

    .logo img {
        height: 65px;
    }

    .brand-intro-inner {
        gap: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* ── 2. TABLET & MOBILE BREAKPOINT (max-width: 768px) ─────────── */
@media (max-width: 768px) {

    /* Header & Navigation */
    header {
        background: rgba(247, 244, 238, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 12px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    header.scrolled {
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
        filter: none;
    }

    header.scrolled .logo img {
        height: 45px;
    }

    .hamburger {
        display: flex;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(247, 244, 238, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 10px 25px 20px 25px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        border-bottom: 3px solid var(--primary-color);
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-list.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(80, 27, 74, 0.08);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list li a {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--primary-color);
        text-shadow: none;
    }

    .nav-list li a::after {
        display: none;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: calc(100dvh - var(--notice-height, 38px));
        height: auto;
        padding: 130px 16px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #faf5ed;
        position: relative;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .hero-bg img,
    .hero-bg picture {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .cover-content {
        gap: 0.5rem;
        padding: 22px 18px 20px;
        width: 92%;
        max-width: 360px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.95);
        box-shadow: 0 10px 30px rgba(80, 27, 74, 0.15);
        text-align: center;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero h1,
    .cover-title {
        font-size: 2.5rem;
        line-height: 1.15;
        color: #3e1637;
        text-shadow: none;
        margin-bottom: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .cover-title em {
        display: inline;
        font-style: italic;
        color: hsl(145, 30%, 40%);
        font-size: 1em;
    }

    .desktop-br {
        display: none;
    }

    .cover-divider {
        margin: 0.2rem auto;
        width: 38px;
        height: 1.5px;
    }

    .cover-subtitle {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #4a2143;
        padding: 0;
        max-width: 100%;
    }

    .desktop-text {
        display: none;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 8px;
        margin-top: 0.35rem;
    }

    .cover-cta {
        flex: 1;
        width: auto;
        padding: 10px 8px;
        font-size: 0.78rem;
        font-weight: 600;
        border-radius: 50px;
        justify-content: center;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(80, 27, 74, 0.2);
    }

    .cover-cta i {
        font-size: 0.82rem;
    }

    .cover-cta-outline {
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
        border: 1.5px solid var(--primary-color);
    }

    /* Brand Intro / Nossa História */
    .brand-intro {
        padding: 3.5rem 1.25rem;
    }

    .brand-intro-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .brand-intro-photo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 450px;
        order: -1;
    }

    .brand-intro-photo img,
    .video-wrapper {
        width: 100%;
        height: auto;
        min-height: unset;
        aspect-ratio: 16 / 9;
        transform: rotate(0deg);
        border-radius: 16px;
        display: block;
        margin: 0 auto;
        object-fit: cover;
    }

    .photo-caption {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 1rem auto 0;
        display: inline-block;
        font-size: 0.78rem;
        text-align: center;
    }

    .brand-intro-h2 {
        font-size: clamp(2rem, 6.5vw, 3rem);
        margin-bottom: 1.2rem;
    }

    /* Products Section */
    .products {
        padding: 60px 15px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 35px;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 480px;
    }

    .product-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-card .card-img-placeholder {
        margin: 0 auto 20px;
    }

    .product-card .product-specs {
        width: 100%;
        text-align: left;
    }

    .product-card p {
        text-align: left;
    }

    /* Partnership / Form */
    .partnership {
        padding: 60px 15px;
        background: #faf5ed url('../images/Fundo_mobile.jpg') center/cover no-repeat scroll;
    }

    .partnership-content {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .partnership-content h2 {
        font-size: 1.8rem;
    }

    .input-group {
        flex-direction: column;
        gap: 15px;
    }

    .partner-form input {
        font-size: 16px;
        /* Evita auto-zoom do Safari no iOS */
        padding: 14px 16px;
    }

    /* Footer */
    footer {
        padding: 24px 16px 14px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
        text-align: left;
        margin-bottom: 16px;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }

    .footer-logo img {
        height: 38px;
        margin-bottom: 4px;
    }

    .footer-links h3,
    .footer-contact h3 {
        margin-bottom: 4px;
        font-size: 0.88rem;
    }

    .footer-links p,
    .footer-contact p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 6px;
    }

    .social-links a {
        font-size: 1.15rem;
    }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-float .whatsapp-text {
        display: none;
    }
}

/* ── 3. EXTRA SMALL MOBILE (max-width: 480px) ─────────────────── */
@media (max-width: 480px) {
    .hero {
        padding: 120px 12px 25px;
    }

    .cover-content {
        padding: 18px 14px 16px;
        max-width: 320px;
    }

    .cover-title {
        font-size: clamp(1.15rem, 5vw, 1.45rem);
    }

    .cover-subtitle {
        font-size: 0.78rem;
    }

    .hero-buttons {
        gap: 6px;
    }

    .cover-cta {
        padding: 9px 6px;
        font-size: 0.75rem;
    }

    .brand-intro {
        padding: 2.8rem 1rem;
    }

    .brand-intro-h2 {
        font-size: 1.85rem;
    }

    .product-card h3 {
        font-size: 1.25rem;
    }

    .partnership-content {
        padding: 24px 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}

/* ================================================================
   COMPLIANCE SECTION (Qualidade e Conformidade)
   ================================================================ */
.compliance-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0b2e 100%);
    padding: clamp(4rem, 10vw, 8rem) 1.5rem;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 196, 66, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.compliance-section::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(122, 0, 223, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Scroll reveal for compliance */
.compliance-section.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.compliance-section.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.compliance-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.compliance-label {
    color: hsl(145, 35%, 60%) !important;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    display: block;
}

.compliance-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 3.5rem;
    line-height: 1.2;
}

.compliance-em {
    color: hsl(145, 30%, 58%);
    font-style: italic;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.compliance-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.4s ease, transform 0.4s ease;
}

.compliance-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.compliance-item i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    display: block;
}

.compliance-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    font-family: var(--font-heading);
}

.compliance-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-family: var(--font-body);
}

/* Responsive – tablet */
@media (max-width: 900px) {
    .compliance-h2 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        margin-bottom: 2.5rem;
    }

    .compliance-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

/* Responsive – mobile */
@media (max-width: 768px) {
    .compliance-section {
        padding: clamp(3rem, 8vw, 5rem) 1rem;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .compliance-item {
        padding: 2rem 1.5rem;
    }

    .compliance-h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

/* ================================================================
   POR QUE ESCOLHER PURAVITA SECTION
   ================================================================ */
.why-us-section {
    background: linear-gradient(180deg, #faf6f2 0%, #f4ece4 100%);
    padding: clamp(4rem, 9vw, 8rem) 1.5rem;
    position: relative;
    overflow: hidden;
}

.why-us-section.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.why-us-section.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-us-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.why-us-header .section-label-cat {
    justify-content: center;
}

.why-us-header .section-label-cat::before {
    display: inline-block;
}

.why-us-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.why-em {
    font-style: italic;
    color: hsl(145, 30%, 40%);
}

.why-us-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: hsl(275, 8%, 38%);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 27, 74, 0.08);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(80, 27, 74, 0.04);
}

.why-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(122, 0, 223, 0.25);
    box-shadow: 0 20px 45px rgba(80, 27, 74, 0.12);
}

.why-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #501b4a;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 8px 20px rgba(80, 27, 74, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover .why-icon-box {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 25px rgba(122, 0, 223, 0.35);
}

.why-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.25;
}

.why-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: hsl(275, 6%, 42%);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.why-card-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(145, 35%, 35%);
    background: rgba(118, 196, 66, 0.12);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.why-card-badge i {
    font-size: 0.7rem;
}

/* Stats Highlight Strip */
.why-us-stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 2.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(58, 17, 53, 0.25);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 3.5rem 1.25rem;
    }

    .why-us-header {
        margin-bottom: 2.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-card {
        padding: 1.8rem 1.5rem;
    }

    .why-us-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }
}

/* ================================================================
   GALERIA DE FOTOS SECTION
   ================================================================ */
.gallery-section {
    background: #ffffff;
    padding: clamp(4rem, 9vw, 8rem) 1.5rem;
    position: relative;
}

.gallery-section.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-section.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.gallery-header .section-label-cat {
    justify-content: center;
}

.gallery-header .section-label-cat::before {
    display: inline-block;
}

.gallery-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gallery-em {
    font-style: italic;
    color: hsl(145, 30%, 40%);
}

.gallery-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: hsl(275, 6%, 42%);
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(58, 17, 53, 0.08);
    background: var(--primary-dark);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 8, 28, 0.92) 0%, rgba(30, 8, 28, 0.3) 60%, transparent 100%);
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    opacity: 0.9;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.gallery-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* Responsive Galeria */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 3.5rem 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .gallery-item {
        aspect-ratio: 16 / 10;
    }
}

/* ================================================================
   FLOATING LANGUAGE SWITCHER (Botão Suspenso de Tradução)
   ================================================================ */
.floating-lang-switcher {
    position: fixed;
    top: calc(var(--notice-height, 38px) + 20px);
    right: 20px;
    z-index: 1005;
    transition: top 0.3s ease;
}

body.no-notice .floating-lang-switcher {
    top: 20px;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(80, 27, 74, 0.2);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(80, 27, 74, 0.15);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lang-toggle-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(80, 27, 74, 0.25);
    border-color: var(--primary-light);
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-code {
    letter-spacing: 0.05em;
}

.lang-arrow {
    font-size: 0.75rem;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.floating-lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 140px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(80, 27, 74, 0.15);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(58, 17, 53, 0.2);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.floating-lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: rgba(80, 27, 74, 0.08);
    color: var(--primary-light);
}

.lang-option.active {
    background: var(--primary-color);
    color: #ffffff;
}

.lang-name {
    flex-grow: 1;
}

/* Mobile adjust for floating lang switcher */
@media (max-width: 768px) {
    .floating-lang-switcher {
        top: calc(var(--notice-height, 38px) + 14px);
        right: 70px;
    }

    body.no-notice .floating-lang-switcher {
        top: 14px;
    }

    .lang-toggle-btn {
        padding: 6px 12px;
        font-size: 0.82rem;
    }
}

/* ================================================================
   PRODUCT MODAL
   ================================================================ */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.product-modal-content {
    background: #fff;
    width: 90%;
    max-width: 620px;
    max-height: 90vh;
    border-radius: 16px;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(80, 27, 74, 0.25);
}

.product-modal-overlay.active .product-modal-content {
    transform: translateY(0);
}

.product-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.product-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.product-modal-header {
    background: var(--primary-color, #501b4a);
    color: #fff;
    padding: 24px 30px;
    border-radius: 16px 16px 0 0;
}

.product-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Playfair Display', 'DM Sans', serif;
    color: #fff;
}

.product-modal-subtitle {
    margin: 6px 0 0 0;
    font-size: 0.93rem;
    opacity: 0.85;
}

.product-modal-body {
    padding: 28px 30px;
    color: #333;
    font-family: 'Inter', 'Montserrat', sans-serif;
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-modal-body p {
    margin-bottom: 12px;
}

.product-modal-body h3 {
    color: var(--primary-color, #501b4a);
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
}

.product-modal-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-modal-body li {
    margin-bottom: 8px;
}

.product-modal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 0.9rem;
}

.product-modal-table th,
.product-modal-table td {
    border: 1px solid #e0d8e8;
    padding: 10px 14px;
    text-align: left;
}

.product-modal-table th {
    background-color: #f5f0fc;
    font-weight: 700;
    color: var(--primary-color, #501b4a);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-modal-table tbody tr:hover td {
    background-color: #fdf8ff;
}

.product-modal-img-wrap {
    width: 100%;
    height: 220px;
    background: radial-gradient(circle at center, #ffffff 0%, #f8f4fb 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 16px;
    border: 1px solid rgba(80, 27, 74, 0.08);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8), 0 6px 18px rgba(80, 27, 74, 0.05);
}

.product-modal-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 12px 24px rgba(61, 26, 94, 0.18));
    image-rendering: -webkit-optimize-contrast;
}

/* Product Card cursor */
.product-card { cursor: pointer; }

/* ================================================================
   DEDICATED PRODUCT PAGES (SEO & Google Indexing)
   ================================================================ */
.product-detail-section {
    padding: 140px 0 80px;
    background: radial-gradient(circle at 10% 20%, rgba(80, 27, 74, 0.03) 0%, transparent 60%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
                #faf8f5;
    min-height: 80vh;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-nav ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.breadcrumb-nav li + li::before {
    content: "/";
    margin-right: 8px;
    color: #bbb;
}

.breadcrumb-nav a {
    color: var(--primary-color, #501b4a);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent-color, #d4af37);
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: #888;
}

/* Main Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: start;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(80, 27, 74, 0.08);
    border: 1px solid rgba(80, 27, 74, 0.08);
    margin-bottom: 60px;
}

/* Media Column */
.product-detail-media {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-detail-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 480px;
    background: radial-gradient(circle at center, #ffffff 0%, #f7f2fa 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(80, 27, 74, 0.1);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.9), 0 10px 30px rgba(80, 27, 74, 0.06);
    position: relative;
    overflow: hidden;
}

.product-detail-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(61, 26, 94, 0.22));
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-detail-img-box:hover img {
    transform: scale(1.06) translateY(-6px);
}

.product-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.product-seal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f4ecf8;
    color: var(--primary-color, #501b4a);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(80, 27, 74, 0.12);
}

/* Info Column */
.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-category {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color, #d4af37);
    margin-bottom: 8px;
}

.product-detail-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: var(--primary-color, #501b4a);
    line-height: 1.25;
    margin-bottom: 12px;
}

.product-detail-subtitle {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.5;
}

.product-detail-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-detail-description p {
    margin-bottom: 14px;
}

.product-detail-features {
    margin-bottom: 28px;
}

.product-detail-features h2,
.product-detail-features h3 {
    font-size: 1.2rem;
    color: var(--primary-color, #501b4a);
    margin-bottom: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    border-bottom: 2px solid rgba(80, 27, 74, 0.1);
    padding-bottom: 8px;
}

.product-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.product-detail-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Call to Action Box */
.product-cta-box {
    margin-top: 30px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(80, 27, 74, 0.05) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(80, 27, 74, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-cta-btn-primary {
    flex: 1;
    min-width: 220px;
    background: linear-gradient(135deg, var(--primary-color, #501b4a), #6d2465);
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(80, 27, 74, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(80, 27, 74, 0.35);
}

.product-cta-btn-whatsapp {
    flex: 1;
    min-width: 220px;
    background: #25D366;
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-cta-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    background: #20bd5a;
}

/* Related Products */
.related-products-section {
    margin-top: 60px;
    text-align: center;
}

.related-products-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: var(--primary-color, #501b4a);
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 30px;
    }
    
    .product-detail-media {
        position: static;
    }

    .product-detail-title {
        font-size: 1.7rem;
    }

    .product-cta-buttons {
        flex-direction: column;
    }
}
