* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --rose: #c8707a;
    --rose-light: #f5e8ea;
    --rose-dark: #8b4a52;
    --cream: #fdf6f0;
    --warm: #f9ede4;
    --brown: #6b4c3b;
    --text: #3a2a22;
    --text-muted: #8a7060;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 246, 240, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e8d4c8;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-logo-circle {
    width: 38px;
    height: 38px;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 16px;
    font-style: italic
}

.nav-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--rose-dark)
}

.nav-links {
    display: flex;
    gap: 2rem
}

.nav-links a {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: .03em;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--rose)
}

.nav-cta {
    background: var(--rose);
    color: #fff;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--rose-dark)
}

.nav-admin-btn {
    background: #fff;
    color: var(--rose);
    border: 1.5px solid var(--rose);
}

.nav-admin-btn:hover {
    background: var(--rose-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--rose-dark);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* HERO */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 60%, #f0ddd6 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: repeating-linear-gradient(45deg, var(--rose) 0, var(--rose) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
}

/* Faixa decorativa inspirada em um tapete de crochê. */
.crochet-rug {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(94vw, 1180px);
    height: clamp(76px, 11vw, 124px);
    transform: translateX(-50%);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 14px 4.5%;
    background:
        radial-gradient(ellipse at center, #fff5ed 0 31%, transparent 32%),
        repeating-linear-gradient(90deg, #c9777f 0 8px, #f8e6df 8px 16px, #dba495 16px 24px);
    border: 7px solid #b96873;
    border-top: 0;
    border-radius: 0 0 52% 52% / 0 0 22% 22%;
    box-shadow: 0 6px 0 #e8b8aa, 0 10px 18px rgba(108, 61, 61, .12);
    opacity: .9;
}

.crochet-rug::before,
.crochet-rug::after {
    content: '';
    position: absolute;
    left: 3%;
    right: 3%;
    height: 10px;
    background: radial-gradient(circle, #fff2e8 2px, transparent 2.8px) 0 0 / 13px 10px;
}

.crochet-rug::before { top: 16px; }
.crochet-rug::after { bottom: 14px; }

.crochet-rug span {
    position: relative;
    z-index: 1;
    width: clamp(30px, 5vw, 56px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 6px double #fff3e8;
    background: radial-gradient(circle, #d27b76 0 22%, #f6d6c8 24% 47%, #a7aa7d 49% 62%, #f8eee5 64% 100%);
    box-shadow: 0 1px 3px rgba(100, 55, 55, .22);
}

.hero > div:not(.hero-bg-pattern):not(.crochet-rug) {
    position: relative;
    z-index: 1;
    margin-top: clamp(40px, 7vw, 80px);
}

.hero-badge {
    display: inline-block;
    background: var(--rose-light);
    color: var(--rose-dark);
    padding: 6px 18px;
    border-radius: 24px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.2rem
}

.hero h1 em {
    color: var(--rose);
    font-style: italic
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--rose);
    color: #fff;
    padding: 14px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    
}

.btn-primary:hover {
    background: var(--rose-dark);
    transform: translateY(-1px)
}

.btn-outline {
    border: 1.5px solid var(--rose);
    color: var(--rose);
    padding: 14px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    transition: all .2s;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--rose-light)
}

.hero-scroll {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: .8rem
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
    animation: bounce .8s infinite alternate
}

@keyframes bounce {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(8px)
    }
}

/* GERAL */
section {
    padding: 5rem 2rem
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto
}

.section-label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: .75rem
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin-bottom: 1rem
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px
}

/* SOBRE */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem
}

.about-img-wrap {
    position: relative
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 40% 60% 55% 45%/45% 40% 60% 55%;
    background: linear-gradient(135deg, #f0ddd6, #e8c4b8);
    overflow: hidden;
    border: 2px solid #e8d4c8
}

.about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--rose);
    color: #fff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 8px 24px rgba(200, 112, 122, .3)
}

.about-badge strong {
    font-size: 1.2rem;
    font-weight: 700
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 1rem
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem
}

.about-values {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap
}

.value-chip {
    background: var(--rose-light);
    color: var(--rose-dark);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: .82rem;
    font-weight: 500
}

.destaques {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center
}

.destaque-item {
    text-align: center;
    flex: 1;
    min-width: 140px
}

.destaque-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--rose);
    font-style: italic
}

.destaque-label {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: .25rem
}

/* PRODUTOS */
.atelie {
    background: linear-gradient(135deg, #fffaf7 0%, #f5e6df 100%);
}

.atelie-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.atelie-intro .section-title,
.atelie-intro .section-sub { margin-bottom: .65rem; }

.atelie-intro .btn-outline {
    flex: 0 0 auto;
    color: var(--rose-dark);
    border-color: var(--rose-dark);
}

.atelie-videos {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 1.25rem;
}

.atelie-video {
    background: var(--white);
    border: 1px solid #ecd9d0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(105, 63, 56, .09);
}

.atelie-video video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    object-position: center;
    background: #fdf6f0;
}

.atelie-video.destaque video { max-height: 360px; }

.atelie-video figcaption {
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.45;
    padding: .85rem 1rem 1rem;
}

@media (max-width: 850px) {
    .atelie-intro { align-items: flex-start; flex-direction: column; }
    .atelie-videos { grid-template-columns: repeat(2, 1fr); }
    .atelie-video.destaque { grid-column: span 2; }
}

@media (max-width: 560px) {
    .atelie-videos { grid-template-columns: 1fr; }
    .atelie-video.destaque { grid-column: auto; }
    .atelie-video video, .atelie-video.destaque video { max-height: 240px; }
}

.produtos {
    background: var(--warm)
}

.categoria-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text);
    margin: 3rem 0 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--rose-light);
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap
}

.categoria-titulo span {
    background: var(--rose);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: .72rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500
}

.produto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem
}

.produto-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ecd9d0;
    transition: all .3s
}

.produto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(200, 112, 122, .12)
}

.produto-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f5ede8
}

.produto-img img,
.produto-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.produto-card:hover .produto-img img,
.produto-card:hover .produto-img video {
    transform: scale(1.05)
}

/* Mantém o GIF da peça artesanal inteiro, sem cortar as bordas. */
.produto-img img[src="img/produto-artesanal.gif"] {
    object-fit: contain;
    padding: 8px;
    box-sizing: border-box;
    background: #f5ede8;
}

.produto-card:hover .produto-img img[src="img/produto-artesanal.gif"] {
    transform: none;
}

.produto-img .produto-video { object-fit: cover; }

.produto-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--rose);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 500;
    z-index: 2
}

.produto-tag.novo {
    background: #5b9e6e
}

.produto-tag.artesanal {
    background: #9b6e3a
}

.produto-body {
    padding: 1.25rem
}

.produto-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: .4rem
}

.produto-body p {
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.6;
    margin-bottom: 1rem
}

.produto-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem
}

.price-badge {
    background: var(--rose-light);
    color: var(--rose-dark);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 600
}

.produto-btn {
    background: var(--rose-light);
    color: var(--rose-dark);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    display: inline-block
}

.produto-btn:hover {
    background: var(--rose);
    color: #fff
}

.admin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 999;
}

.admin-overlay.hidden {
    display: none;
}

.hidden {
    display: none !important;
}

.admin-panel {
    background: #fff;
    border-radius: 24px;
    max-width: 980px;
    width: 100%;
    padding: 2rem;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.admin-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
}

.admin-header h2 {
    margin-bottom: .25rem;
    font-family: 'Playfair Display', serif;
    color: var(--text);
}

.admin-header p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.admin-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.admin-field label {
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--text);
}

.admin-field input,
.admin-field textarea,
.admin-field select {
    border: 1px solid #e8d4c8;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: .95rem;
    color: var(--text);
    background: #fff;
}

.admin-field textarea {
    resize: vertical;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.admin-section {
    background: var(--warm);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid #efd7d4;
}

.admin-section h3 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--text);
}

.admin-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-change-password {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-change-password .btn-primary {
    margin-top: 0.5rem;
}

.admin-message {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: #f8f0ef;
    color: var(--text);
    border: 1px solid #f1d8d1;
}

.admin-message.hidden {
    display: none;
}

@media(max-width:900px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid #e8d4c8;
        box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        z-index: 99;
    }

    .nav-links.open {
        max-height: 260px;
    }

    .nav-links a {
        padding: 16px 2rem;
        border-top: 1px solid #f0e0d8;
    }

    .produto-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr))
    }

    .admin-panel {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 90vh;
        overflow-y: auto;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-section {
        padding: 1.25rem;
        width: 80%;
    }

    .admin-close {
        top: 12px;
        right: 12px;
        font-size: 1.5rem;
    }

    .admin-field input,
    .admin-field textarea,
    .admin-field select {
        font-size: 16px;
    }

    .admin-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 20px;
        font-size: .9rem;
    }

    .nav-admin-btn {
        padding: 6px 12px;
        font-size: .75rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-actions a {
        width: 50%;
        text-align: center;
    }

    .about-badge {
        bottom: -10px;
        right: -10px;
        width: 75px;
        height: 75px
    }
}

/* CONTATO */
.pedido {
    background: var(--rose);
    color: #fff;
    text-align: center
}

.pedido .section-label {
    color: rgba(255, 255, 255, .7)
}

.pedido .section-title {
    color: #fff
}

.pedido>.section-inner>p {
    color: rgba(255, 255, 255, .85);
    max-width: 500px;
    margin: 1rem auto 2.5rem;
    line-height: 1.7
}

.pedido-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem
}

.social-card {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: #fff;
    transition: all .2s;
    min-width: 140px
}

.social-card:hover {
    background: rgba(255, 255, 255, .25);
    transform: translateY(-2px)
}

.social-icon {
    font-size: 1.8rem
}

.social-name {
    font-size: .82rem;
    font-weight: 500;
    opacity: .9
}

.btn-whats {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--rose-dark);
    padding: 16px 36px;
    border-radius: 32px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s
}

.btn-whats:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #e8d4c8;
    color: var(--text-muted);
    font-size: .82rem
}



/* ===== ANIMAÇÃO DE APARECER AO ROLAR ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whats-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: whatsPulse 2.4s ease-in-out infinite;
}

.whats-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.whats-float img {
    width: 30px;
    height: 30px;
}

@keyframes whatsPulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 26px rgba(37, 211, 102, 0.65); }
}

@media (max-width: 600px) {
    .whats-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .whats-float img {
        width: 26px;
        height: 26px;
    }
}

/* ===== FILTRO DE CATEGORIAS ===== */
.filtro-categorias {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 36px;
}

.filtro-btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--rose);
    background: transparent;
    color: var(--rose-dark);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.filtro-btn:hover {
    transform: translateY(-2px);
    background: var(--rose-light);
}

.filtro-btn.active {
    background: var(--rose);
    color: var(--white);
}

.categoria-titulo.filtro-oculto,
.produto-grid.filtro-oculto {
    display: none;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background: var(--warm);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.depoimento-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(107, 76, 59, 0.08);
    border: 1px solid var(--rose-light);
}

.depoimento-estrelas {
    color: #e8b84b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.depoimento-texto {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.depoimento-autor {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

/* ===== ÁREA DE ATENDIMENTO (SEO LOCAL) ===== */
.area-atendimento {
    margin-top: 32px;
    padding: 18px 22px;
    background: #ad4d5c;
    border-radius: 12px;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 640px;
}

/* Fluxo de encomenda e informações de compra */
.compra-segura { background: #fff8f4; }
.compra-passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.compra-passos article { background: var(--white); border: 1px solid #ecd9d0; border-radius: 16px; padding: 24px; }
.compra-passos span { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 14px; border-radius: 50%; background: var(--rose); color: #fff; font-weight: 700; }
.compra-passos h3 { margin: 0 0 8px; font-family: 'Playfair Display', serif; }
.compra-passos p, .compra-aviso { color: var(--text-muted); line-height: 1.6; }
.compra-aviso { margin-top: 20px; padding: 16px 18px; border-left: 4px solid var(--rose); background: #fff; border-radius: 0 12px 12px 0; }

.produto-detalhes { width: 100%; margin-top: 10px; border: 0; background: none; color: var(--rose-dark); text-decoration: underline; font: inherit; font-size: .88rem; cursor: pointer; text-align: left; }
.produto-modal { width: min(92vw, 560px); border: 0; border-radius: 18px; padding: 0; box-shadow: 0 24px 70px rgba(60, 35, 30, .3); }
.produto-modal::backdrop { background: rgba(44, 28, 24, .58); }
.modal-conteudo { padding: 32px; }
.modal-fechar { position: absolute; top: 10px; right: 14px; border: 0; background: transparent; color: var(--text-muted); font-size: 2rem; cursor: pointer; }
.modal-info { padding: 12px; border-radius: 10px; background: var(--rose-light); color: var(--text); font-size: .92rem; }
#pedidoForm { display: grid; gap: 14px; margin-top: 20px; }
#pedidoForm label { display: grid; gap: 6px; color: var(--text); font-size: .9rem; font-weight: 500; }
#pedidoForm input, #pedidoForm select, #pedidoForm textarea { width: 100%; box-sizing: border-box; padding: 11px 12px; border: 1px solid #dbc7be; border-radius: 9px; background: #fffdfb; color: var(--text); font: inherit; }
#pedidoForm .btn-primary { justify-content: center; border: 0; }
.footer-links { display: flex; justify-content: center; gap: 16px; margin-top: 12px; }
.footer-links button { padding: 0; border: 0; background: none; color: inherit; cursor: pointer; text-decoration: underline; font: inherit; }

@media (max-width: 700px) {
    .compra-passos { grid-template-columns: 1fr; }
    .modal-conteudo { padding: 28px 20px; }
}

/* Avaliações de clientes */
.avaliacoes { background: var(--warm); }
.avaliacoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
.avaliacao-card { display: flex; flex-direction: column; padding: 26px; background: var(--white); border: 1px solid #ecd9d0; border-radius: 18px; box-shadow: 0 5px 18px rgba(107, 76, 59, .08); }
.avaliacao-estrelas { color: #d99a2b; font-size: 1.2rem; letter-spacing: 2px; }
.avaliacao-texto { margin: 15px 0 18px; color: var(--text); line-height: 1.65; font-style: italic; }
.avaliacao-nome { margin: auto 0 16px; color: var(--rose-dark); font-weight: 700; }
.avaliacao-midia { min-height: 126px; display: grid; place-items: center; align-content: center; gap: 10px; padding: 14px; border: 1.5px dashed #d9b9b0; border-radius: 12px; background: #fff9f6; text-align: center; overflow: hidden; }
.avaliacao-midia p { margin: 0; color: var(--text-muted); font-size: .84rem; }
.midia-upload { display: inline-flex; align-items: center; justify-content: center; padding: 9px 13px; border-radius: 999px; background: var(--rose-light); color: var(--rose-dark); font-size: .82rem; font-weight: 600; cursor: pointer; }
.midia-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.avaliacao-midia img, .avaliacao-midia video { display: block; width: 100%; max-height: 230px; object-fit: contain; border-radius: 8px; }
.avaliacao-midia.tem-midia { padding: 0; background: #f5ede8; }
.avaliacao-midia.tem-midia .midia-upload, .avaliacao-midia.tem-midia > p { display: none; }

@media (max-width: 850px) {
    .avaliacoes-grid { grid-template-columns: 1fr; }
}
