/* ============================================================
   THE WIZARD CARAVAN — Stylesheet
   Paleta: marrom profundo, dourado envelhecido, creme antigo
   Tipografia: Cinzel (display), Cormorant Garamond (corpo), Outfit (UI)
   ============================================================ */

/* ---------- VARIÁVEIS ---------- */
:root {
    /* Cores principais */
    --color-bg: #f4ead5;            /* creme antigo */
    --color-bg-warm: #ede0c4;       /* creme mais quente */
    --color-dark: #1f1812;          /* marrom quase preto (footer/cards) */
    --color-dark-2: #2a1f17;        /* marrom escuro alternativo */
    --color-brown: #5a3d24;         /* marrom médio */
    --color-brown-light: #7a5a30;   /* marrom claro (ícones) */
    --color-gold: #c89b5a;          /* dourado envelhecido */
    --color-gold-light: #d9b478;    /* dourado claro */
    --color-accent: #b8742c;        /* laranja queimado (botões) */
    --color-accent-hover: #9c5e1f;
    --color-text: #2a1f17;
    --color-text-muted: #5a4a38;
    --color-text-light: #f4ead5;
    
    /* Tipografia */
    --font-display: 'Cinzel', 'Trajan Pro', serif;
    --font-body: 'Cormorant Garamond', 'Garamond', serif;
    --font-ui: 'Outfit', 'Helvetica Neue', sans-serif;
    
    /* Espaçamento */
    --container-max: 1280px;
    --section-padding: clamp(3rem, 7vw, 6rem);
    --container-padding: clamp(1rem, 4vw, 2rem);
    
    /* Outros */
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --shadow-lg: 0 20px 60px rgba(31, 24, 18, 0.25);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- UTILITIES ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}
.eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-brown);
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 2rem; height: 1px;
    background: var(--color-brown);
}
.eyebrow--light { color: var(--color-gold); }
.eyebrow--light::before { background: var(--color-gold); }

.ornament {
    color: var(--color-gold);
    font-size: 1.2em;
    margin: 0 1rem;
    opacity: 0.7;
}

/* ---------- BOTÕES ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 1rem 2rem;
    transition: all var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}
.btn--primary {
    background: var(--color-accent);
    color: var(--color-text-light);
}
.btn--primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 116, 44, 0.35);
}
.btn--ghost {
    background: var(--color-dark);
    color: var(--color-text-light);
    border-color: var(--color-dark);
}
.btn--ghost:hover {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}
.btn i { width: 1rem; height: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.3s ease, padding 0.3s ease;
}
.header--scrolled {
    background: rgba(20, 14, 8, 0.92);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0;
}
.header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.logo__badge {
    width: 72px; height: 72px;
    flex-shrink: 0;
    position: relative;
}
.logo__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: filter var(--transition), transform var(--transition);
}
.logo:hover .logo__img {
    filter: drop-shadow(0 2px 14px rgba(200, 155, 90, 0.5));
    transform: rotate(-3deg);
}
.logo__text {
    font-family: var(--font-display);
    color: var(--color-gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.logo__line1 { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--color-text-light); opacity: 0.85; }
.logo__line2 { font-size: 1.4rem; font-weight: 600; letter-spacing: 0.05em; color: var(--color-gold-light); }
.logo__line3 { font-size: 1rem; font-weight: 500; letter-spacing: 0.05em; color: var(--color-text-light); opacity: 0.9; }
.logo__text--footer { color: var(--color-gold); text-shadow: none; }
.logo__text--footer .logo__line1,
.logo__text--footer .logo__line2,
.logo__text--footer .logo__line3 { color: inherit; opacity: 1; }

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav__link {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.icon-btn {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    color: var(--color-text-light);
    position: relative;
    transition: color var(--transition);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.icon-btn:hover { color: var(--color-gold); }
.icon-btn i { width: 22px; height: 22px; }
.cart-count {
    position: absolute;
    top: 6px; right: 4px;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.menu-toggle { display: none; color: var(--color-text-light); }
.menu-toggle i { width: 28px; height: 28px; }

/* Menu mobile */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(85%, 360px);
    height: 100vh;
    background: var(--color-dark);
    z-index: 200;
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.mobile-menu.is-open { right: 0; }
.mobile-menu__close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    color: var(--color-gold);
}
.mobile-menu__close i { width: 28px; height: 28px; }
.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-menu__nav a {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    color: var(--color-text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(200, 155, 90, 0.2);
}
.mobile-menu__nav a:hover { color: var(--color-gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-text-light);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero.jpg');
    background-size: cover;
    background-position: 65% center;
    z-index: 1;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(20, 14, 8, 0.72) 0%,
            rgba(20, 14, 8, 0.50) 30%,
            rgba(20, 14, 8, 0.15) 55%,
            rgba(20, 14, 8, 0.0) 75%),
        linear-gradient(180deg,
            rgba(20, 14, 8, 0.55) 0%,
            rgba(20, 14, 8, 0.15) 10%,
            transparent 18%,
            transparent 85%,
            rgba(20, 14, 8, 0.35) 100%);
    z-index: 2;
}
.hero__content {
    position: relative;
    z-index: 3;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 8rem var(--container-padding) 4rem;
    width: 100%;
}
.hero__eyebrow {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    color: var(--color-gold-light);
    margin-bottom: 1rem;
    font-weight: 400;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.2vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 18px rgba(0,0,0,0.6);
    max-width: 520px;
}
.hero__divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    max-width: 460px;
}
.hero__divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.hero__divider i { width: 16px; height: 16px; }
.hero__desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 460px;
    line-height: 1.65;
    margin-bottom: 2rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ============================================================
   OUR STORY
   ============================================================ */
.story {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    position: relative;
}
.story::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(200, 155, 90, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(200, 155, 90, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.story__grid {
    display: grid;
    grid-template-columns: 190px minmax(280px, 1.25fr) minmax(0, 2.1fr);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: center;
    position: relative;
}
.story__mandala {
    color: var(--color-brown-light);
    opacity: 0.85;
}
.mandala-svg { width: 100%; height: auto; }
.story__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}
.story__title em,
.story__title-accent {
    font-style: normal;
    color: var(--color-accent);
    font-weight: 500;
    font-family: var(--font-display);
    font-size: 1em;
    letter-spacing: 0.02em;
    display: inline-block;
}
.story__para {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}
.story__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.5rem, 1vw, 1rem);
}
.pillar {
    text-align: center;
    color: var(--color-text-muted);
    padding: 0 1.5rem;
    position: relative;
}
.pillar + .pillar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(122, 90, 48, 0.25) 25%,
        rgba(122, 90, 48, 0.25) 75%,
        transparent 100%);
}
.pillar__icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    color: var(--color-brown);
}
.pillar h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.pillar p {
    font-size: 0.95rem;
    max-width: 220px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================================
   TREASURES
   ============================================================ */
.treasures {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
    color: var(--color-text-light);
    position: relative;
}
.treasures::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 0%, rgba(200, 155, 90, 0.1), transparent 70%);
    pointer-events: none;
}
.treasures__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
    text-transform: uppercase;
}
.treasures__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
.treasure-card {
    text-align: center;
    transition: transform var(--transition);
}
.treasure-card:hover { transform: translateY(-6px); }
.treasure-card__img {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(200, 155, 90, 0.2);
    transition: border-color var(--transition);
}
.treasure-card:hover .treasure-card__img { border-color: var(--color-gold); }
/* Imagens individuais dos produtos */
.treasure-card__img--jewelry    { background-image: url('assets/images/treasures/jewelry.jpg?v=20260514-5'); background-size: cover; background-position: center; }
.treasure-card__img--textiles   { background-image: url('assets/images/treasures/textiles.jpg?v=20260514-6'); background-size: cover; background-position: center; }
.treasure-card__img--ceremonial { background-image: url('assets/images/treasures/ceremonial.jpg'); background-size: cover; background-position: center; }
.treasure-card__img--art        { background-image: url('assets/images/treasures/art.jpg?v=20260514-4'); background-size: cover; background-position: center; }
.treasure-card__img--ritual     { background-image: url('assets/images/treasures/ritual.jpg?v=20260514-3'); background-size: cover; background-position: center; }
/* Categorias removidas (mantidas para reuso futuro): */
.treasure-card__img--ceramics   { background-image: url('assets/images/treasures/ceramics.jpg'); background-size: cover; background-position: center; }
.treasure-card__img--crystals   { background-image: url('assets/images/treasures/crystals.jpg'); background-size: cover; background-position: center; }

.treasure-card h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    color: var(--color-text-light);
    margin-bottom: 0.4rem;
    font-weight: 500;
    line-height: 1.25;
    min-height: 2.5em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}
.shop-link {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.shop-link i { width: 0.9rem; height: 0.9rem; }

/* ============================================================
   LATEST JOURNEY
   ============================================================ */
.journey {
    padding: var(--section-padding) 0;
    background: var(--color-bg-warm);
}
.journey__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
    color: var(--color-dark);
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
    text-transform: uppercase;
}
.journey__carousel {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
.journey-stop {
    text-align: center;
    transition: transform var(--transition);
}
.journey-stop:hover { transform: scale(1.05); }
.journey-stop__img {
    width: 80px; height: 80px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background-size: 180% auto;
    background-position: center center;
    border: 2px solid var(--color-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Cada cidade usa sua imagem individual */
.journey-stop__img--cusco      { background-image: url('assets/images/journey/cusco.jpg'); }
.journey-stop__img--urubamba   { background-image: url('assets/images/journey/urubamba.jpg'); }
.journey-stop__img--iquitos    { background-image: url('assets/images/journey/iquitos.jpg'); }
.journey-stop__img--leticia    { background-image: url('assets/images/journey/leticia.jpg'); }
.journey-stop__img--puno       { background-image: url('assets/images/journey/puno.jpg'); }
.journey-stop__img--copacabana { background-image: url('assets/images/journey/copacabana.jpg'); }
.journey-stop__img--lapaz      { background-image: url('assets/images/journey/lapaz.jpg'); }
.journey-stop__img--uyuni      { background-image: url('assets/images/journey/uyuni.jpg'); }
.journey-stop__img--atacama    { background-image: url('assets/images/journey/atacama.jpg'); }

.journey-stop h5 {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
    line-height: 1.2;
}
.journey-stop p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}
.journey__center { text-align: center; }

/* ============================================================
   VALORES
   ============================================================ */
.values {
    padding: 3rem 0;
    background: var(--color-dark);
    color: var(--color-text-light);
    position: relative;
}
.values::before, .values::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 280px;
    opacity: 0.55;
    background-image: url('assets/images/decoration/leaf-branch.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}
.values::before { left: clamp(0.5rem, 2vw, 1.5rem); }
.values::after  { right: clamp(0.5rem, 2vw, 1.5rem); transform: translateY(-50%) scaleX(-1); }
.values .container { position: relative; z-index: 2; }
.values__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
.value {
    text-align: center;
    color: var(--color-text-light);
}
.value__icon {
    width: 40px; height: 40px;
    margin: 0 auto 0.75rem;
    color: var(--color-gold);
}
.value h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.value p {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.85;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
    background: var(--color-bg-warm);
    padding: 2.5rem 0;
}
.newsletter__inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 2rem;
}
.newsletter__badge { width: 80px; height: 80px; }
.newsletter__text h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.newsletter__text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    max-width: 300px;
}
.newsletter__form {
    display: flex;
    gap: 0;
    min-width: 380px;
}
.newsletter__form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(122, 90, 48, 0.3);
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
}
.newsletter__form input:focus {
    outline: none;
    border-color: var(--color-accent);
}
.newsletter__social {
    display: flex;
    gap: 0.85rem;
}
.newsletter__social a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    color: var(--color-dark);
    border-radius: 50%;
    transition: all var(--transition);
}
.newsletter__social a:hover {
    background: var(--color-dark);
    color: var(--color-gold);
}
.newsletter__social i { width: 20px; height: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-dark);
    color: var(--color-text-light);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}
.footer::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(280px, 35vw, 460px);
    height: clamp(110px, 14vw, 160px);
    background-image: url('assets/images/decoration/footer-landscape.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
}
.footer .container { position: relative; z-index: 2; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.footer__brand .logo__text { 
    font-size: 1.2em;
}
.footer__col h5 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.footer__col a {
    display: block;
    font-size: 0.95rem;
    color: rgba(244, 234, 213, 0.7);
    padding: 0.35rem 0;
    transition: color var(--transition);
}
.footer__col a:hover { color: var(--color-gold); }
.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 155, 90, 0.15);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(244, 234, 213, 0.5);
}

/* ============================================================
   ANIMAÇÕES (sutis, sem esconder conteúdo antes da animação)
   ============================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero__content > * { animation: fadeIn 1s both; }
.hero__title { animation-delay: 0.2s; }
.hero__desc { animation-delay: 0.4s; }

/* ============================================================
   RESPONSIVO — TABLET (até 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .nav__list { gap: 1.25rem; }
    .nav__link { font-size: 0.7rem; }
    .logo__line2 { font-size: 1.2rem; }
    
    .story__grid {
        grid-template-columns: 150px 1fr;
        gap: 2rem;
        align-items: start;
    }
    .story__pillars {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
        padding-top: 2.5rem;
        border-top: 1px solid rgba(122, 90, 48, 0.2);
        margin-top: 1rem;
    }
    
    .treasures__grid { grid-template-columns: repeat(5, 1fr); gap: 0.9rem; }
    .journey__carousel {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem 1rem;
    }
    .values__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    
    .newsletter__inner {
        grid-template-columns: auto 1fr;
        grid-template-areas: 
            "badge text"
            "form form"
            "social social";
        gap: 1.5rem;
    }
    .newsletter__badge { grid-area: badge; }
    .newsletter__text { grid-area: text; }
    .newsletter__form { grid-area: form; min-width: 0; }
    .newsletter__social { grid-area: social; justify-content: center; }
    
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVO — MOBILE (até 768px)
   ============================================================ */
@media (max-width: 768px) {
    body { font-size: 16px; }
    
    /* Header */
    .nav { display: none; }
    .menu-toggle { display: grid; place-items: center; }
    .logo__badge { width: 56px; height: 56px; }
    .logo__line1 { font-size: 0.6rem; }
    .logo__line2 { font-size: 1.05rem; }
    .logo__line3 { font-size: 0.8rem; }
    .icon-btn { width: 36px; height: 36px; }
    
    /* Hero */
    .hero { min-height: 90vh; }
    .hero__overlay {
        background: linear-gradient(180deg,
            rgba(20, 14, 8, 0.35) 0%,
            rgba(20, 14, 8, 0.55) 60%,
            rgba(20, 14, 8, 0.7) 100%);
    }
    .hero__content { padding: 6rem 1.25rem 3rem; }
    .hero__title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .hero__divider { max-width: 100%; }
    .hero__desc { font-size: 1rem; }
    
    /* Story */
    .story__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .story__mandala {
        max-width: 140px;
        margin: 0 auto;
    }
    .story__pillars {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }
    .pillar + .pillar::before { display: none; }
    .pillar { padding: 0; }
    
    /* Treasures */
    .treasures__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    
    /* Journey - scroll horizontal */
    .journey__carousel {
        grid-template-columns: none;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        margin-left: calc(-1 * var(--container-padding));
        margin-right: calc(-1 * var(--container-padding));
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
        -webkit-overflow-scrolling: touch;
    }
    .journey-stop {
        flex: 0 0 auto;
        width: 110px;
        scroll-snap-align: center;
    }
    .journey-stop__img { width: 80px; height: 80px; }
    
    /* Valores */
    .values__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
    .values { padding: 2.5rem 0; }
    
    /* Newsletter */
    .newsletter__inner {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "badge"
            "text"
            "form"
            "social";
        text-align: center;
        gap: 1.25rem;
    }
    .newsletter__badge { margin: 0 auto; }
    .newsletter__text p { margin: 0 auto; }
    .newsletter__form {
        flex-direction: column;
        gap: 0.75rem;
    }
    .newsletter__form input { width: 100%; }
    .newsletter__form .btn { justify-content: center; }
    .newsletter__social { justify-content: center; }
    
    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Botões */
    .btn { padding: 0.85rem 1.5rem; font-size: 0.72rem; }
}

/* Reduzir motion para quem prefere */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
