:root {
    --primary: #c5a059;
    --primary-dark: #a68446;
    --secondary: #1a1a1a;
    --accent: #f4f4f4;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-soft: #fafafa;
    --border-color: #eeeeee;
    --success: #27ae60;
    --danger: #e74c3c;

    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', serif;

    --container: 1200px;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
}

header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mobile-toggle {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer {
    position: relative;
    background: linear-gradient(165deg, var(--secondary) 0%, #1a1510 55%, #120f0c 100%);
    color: #fff;
    padding: 56px 0 28px;
    margin-top: 88px;
    overflow: hidden;
    /* Padrão repetido: “fios” ondulados como corda de macramê */
    --footer-rope-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 16'%3E%3Cpath fill='none' stroke='%23d4c4a4' stroke-width='1.75' stroke-linecap='round' d='M0 8 Q9 2 18 8 T36 8 T54 8 T72 8'/%3E%3Cpath fill='none' stroke='%23a09072' stroke-width='1.25' stroke-linecap='round' opacity='.72' d='M0 11 Q9 14 18 11 T36 11 T54 11 T72 11'/%3E%3Cpath fill='none' stroke='%23e8dcc8' stroke-width='0.9' stroke-linecap='round' opacity='.45' d='M0 5 Q9 1 18 5 T36 5 T54 5 T72 5'/%3E%3C/svg%3E");
}

.site-footer .footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90vw, 720px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    pointer-events: none;
}

.footer-top {
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: none;
    position: relative;
}

/* Logo + redes na mesma linha; typewriter fica abaixo — o texto animado não mexe nos ícones */
.footer-top-main {
    width: 100%;
}

.footer-logo-social-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
    flex-wrap: nowrap;
    width: 100%;
}

.footer-logo-cell {
    flex: 1 1 auto;
    min-width: 0;
}

.footer-top::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    background-image: var(--footer-rope-bg);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 88px 20px;
    opacity: 0.9;
    pointer-events: none;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 14px;
    line-height: 0;
}

.footer-logo-img {
    max-height: 58px;
    width: auto;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
}

footer h3.footer-brand {
    font-family: var(--font-display, serif);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    margin: 0 0 10px;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-typewriter {
    margin: 14px 0 0;
    width: 100%;
    min-height: calc(1.55em * 2);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 400;
}

.footer-typewriter::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 2px;
    background: rgba(255, 255, 255, 0.55);
    vertical-align: -2px;
    animation: footer-caret 1s step-end infinite;
}

@keyframes footer-caret {
    50% { opacity: 0; }
}

.footer-social {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.footer-social-link .footer-social-svg {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-social-instagram:hover {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.12);
}

.footer-social-facebook:hover {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.12);
}

.footer-social-youtube:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.footer-social-tiktok:hover {
    color: #25f4ee;
    background: rgba(37, 244, 238, 0.08);
}

.footer-social-pinterest:hover {
    color: #e60023;
    background: rgba(230, 0, 35, 0.1);
}

.footer-social-x:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.footer-social-whatsapp:hover {
    color: #25d366;
    background: rgba(37, 211, 102, 0.12);
}

@media (max-width: 640px) {
    .footer-logo-social-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .footer-logo-cell {
        width: 100%;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        padding-top: 4px;
    }

    .footer-typewriter {
        text-align: center;
        min-height: calc(1.55em * 3);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px 48px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
    opacity: 0.92;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.92rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.82);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-contact li {
    word-break: break-word;
}

.footer-contact-placeholder {
    opacity: 0.65;
    font-size: 0.88rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    padding-top: 32px;
    border-top: none;
    position: relative;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.03em;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 20px;
    background-image: var(--footer-rope-bg);
    background-repeat: repeat-x;
    background-position: center top;
    background-size: 88px 20px;
    opacity: 0.9;
    pointer-events: none;
}

.footer-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    vertical-align: middle;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.product-info {
    padding: 20px;
    text-align: center;
}

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

/* HOME */

.hero {
    background: linear-gradient(180deg, #fcfaf6 0%, #f8f4ed 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-copy {
    max-width: 580px;
}

.hero-kicker,
.section-kicker {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 20px;
    color: #241f19;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero-signature {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(36, 31, 25, 0.14);
    background: #efe7dc;
}

.hero-image-wrap img,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero img {
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.hero img:hover {
    transform: scale(1.03);
}

/* Página Sobre — livro de sonhos */
body.dream-book-page {
    background: #0e0b12;
}

body.dream-book-page main {
    min-height: calc(100vh - 140px);
}

.dream-book {
    position: relative;
    padding: 56px 16px 80px;
    min-height: calc(100vh - 72px);
    overflow: hidden;
}

.dream-book-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 100% 60% at 50% -10%, rgba(90, 72, 120, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 80% 50% at 80% 100%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #1a1520 0%, #121018 40%, #0a080e 100%);
}

.dream-book-stars {
    position: absolute;
    inset: 0;
    opacity: 0.65;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 248, 230, 0.9) 50%, transparent 52%),
        radial-gradient(1px 1px at 25% 65%, rgba(255, 255, 255, 0.7) 50%, transparent 52%),
        radial-gradient(1px 1px at 42% 18%, rgba(255, 255, 255, 0.5) 50%, transparent 52%),
        radial-gradient(1px 1px at 58% 42%, rgba(255, 250, 235, 0.85) 50%, transparent 52%),
        radial-gradient(1px 1px at 72% 78%, rgba(255, 255, 255, 0.55) 50%, transparent 52%),
        radial-gradient(1px 1px at 88% 12%, rgba(255, 255, 255, 0.75) 50%, transparent 52%),
        radial-gradient(1px 1px at 15% 88%, rgba(255, 255, 255, 0.45) 50%, transparent 52%),
        radial-gradient(1px 1px at 95% 55%, rgba(255, 248, 220, 0.6) 50%, transparent 52%),
        radial-gradient(1.5px 1.5px at 33% 38%, rgba(197, 160, 89, 0.5) 50%, transparent 52%),
        radial-gradient(1px 1px at 67% 22%, rgba(255, 255, 255, 0.4) 50%, transparent 52%);
}

@media (prefers-reduced-motion: no-preference) {
    .dream-book-stars {
        animation: dreamStarsDrift 90s linear infinite;
    }
}

@keyframes dreamStarsDrift {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-2%, -1%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dream-book-stars {
        animation: none;
    }
}

.dream-book-moon {
    position: absolute;
    top: 8%;
    right: 8%;
    width: min(120px, 22vw);
    height: min(120px, 22vw);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fffef5 0%, #e8dfd0 45%, rgba(200, 190, 175, 0.35) 70%, transparent 72%);
    box-shadow:
        0 0 40px rgba(255, 250, 235, 0.15),
        0 0 80px rgba(197, 160, 89, 0.12);
    opacity: 0.55;
}

.dream-book-glow {
    position: absolute;
    left: 50%;
    bottom: 15%;
    width: 140%;
    height: 45%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse closest-side, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    opacity: 0.9;
}

@media (prefers-reduced-motion: no-preference) {
    .dream-book-glow {
        animation: dreamGlowPulse 10s ease-in-out infinite;
    }
}

@keyframes dreamGlowPulse {
    0%,
    100% {
        opacity: 0.65;
    }
    50% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dream-book-glow {
        animation: none;
    }
}

.dream-book-wrap {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Retrato + entrada emocional (cinemática suave) */
.dream-book-portrait {
    margin: 0;
    width: 100%;
    max-width: min(380px, 92vw);
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 28px, 0) scale(0.94);
    animation: dreamPortraitReveal 2.75s cubic-bezier(0.18, 0.9, 0.32, 1) 0.12s forwards;
}

@keyframes dreamPortraitReveal {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.dream-book-portrait-frame {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(197, 160, 89, 0.45) 0%, rgba(40, 32, 28, 0.5) 45%, rgba(197, 160, 89, 0.25) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 248, 235, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(197, 160, 89, 0.18);
}

@media (prefers-reduced-motion: no-preference) {
    .dream-book-portrait-frame {
        animation: dreamFrameGlow 6s ease-in-out 3s infinite;
    }
}

@keyframes dreamFrameGlow {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(255, 248, 235, 0.12),
            0 24px 48px rgba(0, 0, 0, 0.55),
            0 0 60px rgba(197, 160, 89, 0.18);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(255, 248, 235, 0.18),
            0 28px 52px rgba(0, 0, 0, 0.5),
            0 0 80px rgba(197, 160, 89, 0.32);
    }
}

.dream-book-portrait-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: #1a1510;
}

.dream-book-portrait-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.14);
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
    .dream-book-portrait-img {
        animation: dreamKenBurns 36s ease-in-out 2.4s infinite alternate;
    }
}

@keyframes dreamKenBurns {
    0% {
        transform: scale(1.14) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1) translate3d(0, 1%, 0);
    }
}

.dream-book-portrait-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 75% 65% at 50% 38%, transparent 30%, rgba(8, 5, 12, 0.55) 100%);
    mix-blend-mode: multiply;
}

.dream-book-portrait-warm {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.12) 0%, transparent 42%, rgba(90, 40, 20, 0.2) 100%);
    mix-blend-mode: soft-light;
}

.dream-book-portrait-shimmer {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        transparent 35%,
        rgba(255, 252, 245, 0.45) 48%,
        rgba(255, 235, 200, 0.25) 52%,
        transparent 65%
    );
    background-size: 220% 100%;
    background-position: 120% 0;
    opacity: 0;
    mix-blend-mode: overlay;
    animation: dreamShimmerOnce 2.4s ease-in-out 0.55s forwards;
}

@keyframes dreamShimmerOnce {
    0% {
        opacity: 0;
        background-position: 120% 0;
    }
    18% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        background-position: -80% 0;
    }
}

.dream-book-portrait-caption {
    text-align: center;
    padding: 1.1rem 0.5rem 0.25rem;
    opacity: 0;
    animation: dreamCaptionFade 1.5s ease-out 2.1s forwards;
}

@keyframes dreamCaptionFade {
    from {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.dream-book-portrait-name {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.45rem);
    color: #fdf8f0;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.dream-book-portrait-role {
    display: block;
    margin-top: 0.35rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-style: italic;
    font-weight: 600;
    color: rgba(255, 245, 228, 0.82);
    line-height: 1.35;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

@keyframes dreamSheetReveal {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.dream-book-sheet {
    position: relative;
    width: 100%;
    padding: 3rem 2.5rem 2.5rem;
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    animation: dreamSheetReveal 2.1s cubic-bezier(0.2, 0.85, 0.35, 1) 1.05s forwards;
    background:
        linear-gradient(180deg, rgba(255, 254, 250, 0.98) 0%, #f7f0e4 100%);
    border-radius: 3px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.12),
        0 28px 56px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 0 80px rgba(197, 160, 89, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.28);
}

@media (prefers-reduced-motion: reduce) {
    .dream-book-portrait {
        animation: none;
        opacity: 1;
        filter: none;
        transform: none;
    }

    .dream-book-portrait-frame {
        animation: none;
    }

    .dream-book-portrait-img {
        animation: none;
        transform: none;
    }

    .dream-book-portrait-shimmer {
        animation: none;
        opacity: 0;
    }

    .dream-book-portrait-caption {
        animation: none;
        opacity: 1;
    }

    .dream-book-sheet {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.dream-book-sheet::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(197, 160, 89, 0.12) 15%,
        rgba(197, 160, 89, 0.18) 50%,
        rgba(197, 160, 89, 0.12) 85%,
        transparent 100%
    );
    pointer-events: none;
}

.dream-book-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.22);
}

.dream-book-ribbon {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.dream-book-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    color: #1f1a14;
    line-height: 1.15;
    margin: 0 0 0.65rem;
}

.dream-book-heart {
    display: inline-block;
    margin-right: 0.3em;
    font-size: 0.92em;
    vertical-align: middle;
    filter: drop-shadow(0 1px 2px rgba(197, 160, 89, 0.35));
}

.dream-book-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-style: italic;
    color: #6b5d4d;
    margin: 0;
    font-weight: 600;
}

.dream-book-lead {
    text-align: center;
    margin-bottom: 2rem;
}

.dream-book-lead p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.28rem, 2.5vw, 1.65rem);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #3d3428;
}

.dream-book-lead p + p {
    margin-top: 0.4em;
    color: #6b5f52;
}

.dream-book-body {
    text-align: left;
    column-count: 1;
}

.dream-book-body p {
    font-size: 1.04rem;
    line-height: 1.82;
    color: #4a4338;
    margin: 0 0 1.2em;
    text-align: left;
}

.dream-book-body p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 3.15rem;
    line-height: 0.82;
    padding-right: 0.18em;
    margin-top: 0.06em;
    color: var(--primary-dark);
}

.dream-book-footer {
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(197, 160, 89, 0.22);
    text-align: center;
}

.dream-book-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.22rem, 2.2vw, 1.48rem);
    font-weight: 600;
    font-style: italic;
    color: #4d4339;
    line-height: 1.55;
    margin: 0 0 1.75rem;
}

.dream-book-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.45);
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.dream-book-back:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (min-width: 720px) {
    .dream-book-body {
        column-count: 2;
        column-gap: 2rem;
        column-rule: 1px solid rgba(197, 160, 89, 0.15);
    }

    .dream-book-body p {
        break-inside: avoid;
        text-align: left;
    }

    .dream-book-body p:first-of-type::first-letter {
        float: none;
        font-size: inherit;
        font-family: inherit;
        line-height: inherit;
        padding-right: 0;
        margin-top: 0;
        color: inherit;
    }
}

@media (max-width: 719px) {
    .dream-book {
        padding: 36px 12px 56px;
        min-height: auto;
    }

    .dream-book-sheet {
        padding: 2rem 1.35rem 1.75rem;
    }

    .dream-book-sheet::before {
        display: none;
    }

    .dream-book-moon {
        opacity: 0.35;
    }
}

.featured-section {
    padding: 85px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.section-title {
    font-size: 2.2rem;
    color: #241f19;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 10px;
}

.section-link {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.typewriter-caret {
    display: inline-block;
    width: 2px;
    height: 0.95em;
    background: var(--primary-dark);
    margin-left: 8px;
    vertical-align: -0.08em;
    animation: blinkCaret 0.9s step-end infinite;
}

@keyframes blinkCaret {
    0%, 50% {
        opacity: 1;
    }
    50.01%, 100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 22px;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== CURSOR MACRAMÊ DO SUBTITLE ===== */

#typewriter-rotativo {
    position: relative;
    display: inline-block;
}

#typewriter-rotativo::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 1.1em;
    margin-left: 8px;
    vertical-align: -0.08em;
    background: linear-gradient(to bottom, #c5a059, #e8d3a5, #c5a059);
    border-radius: 2px;
    animation: fioMacrame 1.2s ease-in-out infinite;
}

@keyframes fioMacrame {
    0% {
        transform: translateY(0px) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: translateY(3px) scaleY(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0px) scaleY(1);
        opacity: 1;
    }
}

/* ===== PALAVRA FIOS — visual mais próximo de corda/macramê ===== */

#hero-fios {
    position: relative;
    display: inline-block;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: transparent;
    background:
        linear-gradient(180deg, #f2dfb3 0%, #d7b36a 18%, #b98c43 38%, #f4e4be 52%, #b8893f 68%, #e6c986 84%, #a97834 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 1px 0 rgba(255,255,255,0.25),
        0 1px 1px rgba(113, 82, 35, 0.20),
        0 2px 4px rgba(113, 82, 35, 0.14);
    filter: saturate(1.02) contrast(1.03);
    animation: heroFiosRespira 4s ease-in-out infinite;
}

/* linhas sutis simulando trama de corda */
#hero-fios {
    background-size: 100% 100%, 12px 12px;
}

/* fio/cursor da palavra */
#hero-fios::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1.1em;
    margin-left: 8px;
    vertical-align: -0.08em;
    background: linear-gradient(to bottom, #c5a059, #f0ddb1, #b8893f);
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
    animation: heroFiosThread 1.8s ease-in-out infinite;
}

@keyframes heroFiosThread {
    0%,
    100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.82;
    }
    50% {
        transform: translateY(2px) scaleY(1.06);
        opacity: 1;
    }
}

@keyframes heroFiosRespira {
    0%,
    100% {
        transform: translateY(0px);
        filter: saturate(1.02) contrast(1.03);
    }
    50% {
        transform: translateY(0.5px);
        filter: saturate(1.05) contrast(1.05);
    }
}


/* ===== MARCA LUXO — ARTES ===== */

.hero-artes {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1f1a14;

    /* leve contraste editorial */
    text-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* ===== FIOS — MACRAMÊ PREMIUM ===== */

#hero-fios {
    position: relative;
    display: inline-block;

    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: transparent;

    background: linear-gradient(
        120deg,
        #f5e6c6 0%,
        #d4b06a 20%,
        #b88a3a 40%,
        #f1ddb0 55%,
        #b98a3c 75%,
        #e7c982 100%
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* brilho premium */
    text-shadow:
        0 1px 0 rgba(255,255,255,0.25),
        0 2px 6px rgba(180,140,60,0.25);

    /* leve movimento (luxo sutil) */
    animation: fiosLuxury 5s ease-in-out infinite;
}

/* fio cursor refinado */
#hero-fios::after {
    content: "";
    display: inline-block;

    width: 2px;
    height: 1.1em;
    margin-left: 8px;

    background: linear-gradient(to bottom, #d4b06a, #f1ddb0, #b88a3a);

    border-radius: 2px;

    animation: fioCursorLuxury 1.6s ease-in-out infinite;
}

/* animação suave */
@keyframes fiosLuxury {
    0%, 100% {
        transform: translateY(0px);
        filter: brightness(1);
    }
    50% {
        transform: translateY(1px);
        filter: brightness(1.08);
    }
}

@keyframes fioCursorLuxury {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.8;
    }
    50% {
        transform: scaleY(1.1);
        opacity: 1;
    }
}




/* ===== ARTE EM FIOS — ESTILO DA LOGO ===== */

/* ARTES (mesma cor da logo) */
.hero-artes {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 3px;

    color: #8b5e3c; /* marrom da logo */

    text-transform: uppercase;

    /* leve relevo */
    text-shadow:
        0 1px 0 rgba(255,255,255,0.2),
        0 2px 3px rgba(0,0,0,0.1);
}

/* "em" mais leve */
.hero-title span:not(.hero-artes):not(#hero-fios) {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #5c4a3b;
}

/* FIOS — textura igual logo */
#hero-fios {
    position: relative;
    display: inline-block;

    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 3px;

    text-transform: uppercase;

    /* cor base da logo */
    color: #8b5e3c;

    /* textura simulada */
    background: linear-gradient(
        120deg,
        #a47148 0%,
        #c08a5a 20%,
        #8b5e3c 40%,
        #d4a373 55%,
        #8b5e3c 75%,
        #b07d52 100%
    );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* profundidade tipo fio */
    text-shadow:
        0 1px 0 rgba(255,255,255,0.25),
        0 2px 4px rgba(0,0,0,0.15),
        0 0 2px rgba(139,94,60,0.3);

    animation: fiosMacrame 6s ease-in-out infinite;
}

/* cursor mais orgânico (menos "barra digital") */
#hero-fios::after {
    content: "";
    display: inline-block;

    width: 3px;
    height: 1.1em;
    margin-left: 6px;

    background: linear-gradient(
        to bottom,
        #c08a5a,
        #8b5e3c,
        #d4a373
    );

    border-radius: 50px;

    animation: fioPulse 1.8s ease-in-out infinite;
}

/* movimento leve tipo fio */
@keyframes fiosMacrame {
    0%, 100% {
        transform: translateY(0);
        filter: brightness(1);
    }
    50% {
        transform: translateY(1px);
        filter: brightness(1.05);
    }
}

@keyframes fioPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}


/* ===== TÍTULO VISUAL EM MACRAMÊ ===== */

.hero-title-image-wrap {
    margin-bottom: 20px;
    line-height: 1;
}

.hero-title-image {
    display: block;
    width: min(100%, 440px);
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 2px 2px rgba(0, 0, 0, 0.08))
        drop-shadow(0 6px 14px rgba(139, 94, 60, 0.10));
    animation: heroMacrameFloat 5s ease-in-out infinite;
}

/* texto escondido mas acessível */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes heroMacrameFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(1px);
    }
}

@media (max-width: 768px) {
    .hero-title-image {
        width: min(100%, 340px);
    }
}

/* ===== FAQ — accordion (refeito) ===== */
.faq {
    padding: clamp(2.75rem, 7vw, 5rem) 0;
    background: #f7f6f4;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    scroll-margin-top: 5.5rem;
}

.faq-container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin: 0 0 0.5rem;
}

.faq-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4.5vw, 2.25rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin: 0 0 0.65rem;
}

.faq-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.faq-stack {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.faq-item:hover {
    border-color: rgba(197, 160, 89, 0.38);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.faq-item.is-open {
    border-color: rgba(197, 160, 89, 0.55);
    box-shadow: 0 10px 32px rgba(197, 160, 89, 0.14);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.35rem;
    min-height: 3.5rem;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.22s ease, color 0.22s ease;
}

.faq-question > span:first-child {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-question:hover,
.faq-question:focus-visible {
    background: rgba(197, 160, 89, 0.07);
    outline: none;
}

.faq-question:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(197, 160, 89, 0.45);
}

.faq-question .icon {
    flex-shrink: 0;
    width: 2.125rem;
    height: 2.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    color: var(--primary-dark);
    background: rgba(197, 160, 89, 0.14);
    transition: background 0.25s ease, color 0.25s ease;
}

.faq-item.is-open .faq-question .icon {
    background: var(--primary);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
    .faq-answer {
        transition: none;
    }
}

.faq-answer p {
    margin: 0;
    padding: 0 1.35rem 1.35rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.75;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

.faq-answer p strong {
    color: var(--text-main);
    font-weight: 600;
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 16px;
    }

    .faq-question {
        padding: 1.05rem 1.1rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
        padding-bottom: 1.15rem;
        font-size: 0.9rem;
    }
}
