/* =========================================================
   DREAMSS FOR HOME — Landing "Se Auto Merecer"
   Estética: atemporal, delicada, premium, clean
   Paleta: creme, champagne, dourado, lavanda suave
   ========================================================= */

:root {
    --cream: #f6efe6;
    --cream-light: #fbf7f0;
    --cream-deep: #ece1d1;
    --gold: #b08948;
    --gold-soft: #c9a875;
    --gold-light: #e3cfa3;
    --lavender: #b9a7c9;
    --lavender-soft: #ded3e7;
    --ink: #2b2620;
    --ink-soft: #5a5249;
    --ink-mute: #8b8278;
    --line: #e9dfd0;
    --deep: #2a241d;
    --white: #ffffff;

    --serif: 'Cormorant Garamond', Georgia, serif;
    --script: 'Dancing Script', cursive;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --maxw: 1180px;
    --radius: 4px;
    --shadow-soft: 0 20px 60px rgba(70, 55, 35, 0.08);
    --shadow-card: 0 14px 40px rgba(70, 55, 35, 0.10);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream-light);
    font-weight: 400;
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }

/* =========================================================
   TIPOGRAFIA
   ========================================================= */
.serif-title {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
}
.serif-title.center { text-align: center; }
.serif-title.light { color: var(--cream-light); }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold-light); }

.lead {
    font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.75;
    margin: 0 0 18px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.78); }

.section { padding: 110px 0; position: relative; }
.section-cream { background: var(--cream); }
.section-deep { background: var(--deep); color: var(--cream-light); }

.section-head { text-align: center; margin-bottom: 64px; }
.section-mark {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    color: var(--gold);
    margin-bottom: 24px;
}

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .35s ease;
    white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(176, 137, 72, 0.28);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(176, 137, 72, 0.40);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--gold-soft);
}
.btn-ghost:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.section-deep .btn-ghost { color: var(--cream-light); border-color: var(--gold-light); }
.section-deep .btn-ghost:hover { background: var(--gold); border-color: var(--gold); }

.pulse { animation: pulse 2.4s infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 28px rgba(176, 137, 72, 0.28); }
    50%      { box-shadow: 0 14px 40px rgba(176, 137, 72, 0.55); }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(251, 247, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(233, 223, 208, 0.6);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}
.header-ctas {
    display: inline-flex;
    align-items: center;
    gap: 22px;
}
.header-link {
    font-size: 0.86rem;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    transition: color .25s ease;
    position: relative;
}
.header-link::after {
    content: "";
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}
.header-link:hover { color: var(--gold); }
.header-link:hover::after { width: 100%; }
@media (max-width: 600px) {
    .header-link { display: none; }
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    display: inline-flex;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-light);
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.2rem;
}
.brand-mark-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}
.foot-mark {
    width: 56px;
    height: 56px;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(15deg) brightness(0.95);
    opacity: 0.95;
}
.brand-name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ink);
    display: flex; flex-direction: column;
}
.brand-name small {
    font-family: var(--sans);
    font-size: 0.55rem;
    letter-spacing: 0.32em;
    color: var(--ink-mute);
    margin-top: 4px;
    font-weight: 500;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    padding: 160px 0 110px;
    background:
        radial-gradient(circle at 80% 30%, rgba(222, 211, 231, 0.4) 0%, transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(227, 207, 163, 0.35) 0%, transparent 50%),
        linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.floral {
    position: absolute;
    width: 220px; height: 220px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .35;
    filter: blur(0.3px);
}
.floral-lavender {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%23b9a7c9' opacity='0.6'><circle cx='100' cy='40' r='6'/><circle cx='95' cy='55' r='6'/><circle cx='105' cy='55' r='6'/><circle cx='90' cy='70' r='6'/><circle cx='110' cy='70' r='6'/><circle cx='100' cy='85' r='6'/><circle cx='95' cy='100' r='6'/><circle cx='105' cy='115' r='6'/></g><path d='M100 40 Q102 110 100 170' stroke='%2398a878' stroke-width='2' fill='none' opacity='0.5'/></svg>");
}
.floral-daisy {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g transform='translate(100 100)'><g fill='%23ffffff' stroke='%23e3cfa3' stroke-width='1'><ellipse cx='0' cy='-30' rx='8' ry='22'/><ellipse cx='0' cy='30' rx='8' ry='22'/><ellipse cx='-30' cy='0' rx='22' ry='8'/><ellipse cx='30' cy='0' rx='22' ry='8'/><ellipse cx='-21' cy='-21' rx='8' ry='22' transform='rotate(45 -21 -21)'/><ellipse cx='21' cy='21' rx='8' ry='22' transform='rotate(45 21 21)'/><ellipse cx='-21' cy='21' rx='8' ry='22' transform='rotate(-45 -21 21)'/><ellipse cx='21' cy='-21' rx='8' ry='22' transform='rotate(-45 21 -21)'/></g><circle r='9' fill='%23d9b75f'/></g></svg>");
    opacity: .4;
}

.top-left { top: -40px; left: -40px; transform: rotate(-15deg); }
.top-right { top: 40px; right: -30px; }
.bottom-right { bottom: -40px; right: 10%; transform: rotate(30deg); }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-text { position: relative; z-index: 2; }
.hero-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    margin: 0 0 4px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.hero-script {
    font-family: var(--script);
    color: var(--lavender);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 22px;
    font-weight: 500;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 520px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: var(--ink-mute);
    font-size: 0.86rem;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { color: var(--gold); font-size: 0.78rem; }

.scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    color: var(--ink-mute);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color .3s ease;
}
.scroll-cue i {
    color: var(--gold);
    animation: bounce 1.8s ease infinite;
}
.scroll-cue:hover { color: var(--gold); }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: gap .3s ease, color .3s ease;
}
.inline-link:hover { gap: 14px; color: var(--ink); }

.hero-art { position: relative; z-index: 1; }
.hero-art-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: rotate(0.5deg);
}
.hero-art-frame img { width: 100%; height: auto; display: block; }

/* =========================================================
   EMOÇÃO
   ========================================================= */
.emotion { text-align: center; padding: 90px 0; }
.emotion .lead { font-size: 1.15rem; line-height: 1.85; }

/* =========================================================
   NÓS SOMOS DREAMSS / EQUIPE
   ========================================================= */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}
.team-photo {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.team-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(176, 137, 72, 0.18);
    border-radius: 6px;
    pointer-events: none;
    z-index: 1;
}
.team-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.team-photo:hover img { transform: scale(1.03); }

.team-text p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 18px;
}
.team-text strong { color: var(--ink); font-weight: 600; }

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 30px 0 20px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.team-stats div { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.team-stats strong {
    font-family: var(--serif);
    font-size: 1.9rem;
    color: var(--gold);
    font-weight: 500;
}
.team-stats span {
    font-size: 0.72rem;
    color: var(--ink-mute);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* =========================================================
   ATENDIMENTO PERSONALIZADO
   ========================================================= */
.attendants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.attendant-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 32px 22px 28px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
    overflow: hidden;
}
.attendant-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity .35s ease;
}
.attendant-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--gold-light);
}
.attendant-card:hover::before { opacity: 1; }

.attendant-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 22px;
    border: 3px solid var(--white);
    box-shadow: 0 8px 24px rgba(176, 137, 72, 0.22);
    background: var(--cream);
    position: relative;
}
.attendant-photo::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--gold-light);
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
}
.attendant-card:hover .attendant-photo::after { opacity: 1; }

.attendant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.attendant-card:hover .attendant-photo img { transform: scale(1.06); }

.attendant-card h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    margin: 0 0 6px;
    color: var(--ink);
    font-weight: 500;
}
.attendant-role {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.attendant-phone {
    color: var(--ink-soft);
    font-size: 0.88rem;
    margin: 0 0 18px;
    letter-spacing: 0.02em;
}
.attendant-card .btn { padding: 11px 18px; font-size: 0.82rem; }

.attendants-note {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 22px 28px;
    max-width: 720px;
    margin: 0 auto;
}
.attendants-note i {
    color: var(--lavender);
    font-size: 1.4rem;
    flex-shrink: 0;
}
.attendants-note p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.6;
}
.attendants-note a { color: var(--gold); transition: color .25s ease; }
.attendants-note a:hover { color: var(--ink); }
.attendants-note strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   COLEÇÕES
   ========================================================= */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.col-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .4s ease, box-shadow .4s ease;
}
.col-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(70, 55, 35, 0.14);
}
.col-img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--cream);
}
.col-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.col-card:hover .col-img img { transform: scale(1.06); }

.col-info { padding: 26px 26px 30px; }
.col-info h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: var(--ink);
}
.col-info p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* =========================================================
   CAMAS DE CLIENTES
   ========================================================= */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.client-shot {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    box-shadow: var(--shadow-card);
    position: relative;
}
.client-shot img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .8s ease;
}
.client-shot:hover img { transform: scale(1.05); }
.client-shot figcaption {
    padding: 14px 18px;
    font-size: 0.86rem;
    color: var(--ink-soft);
    background: var(--white);
    font-style: italic;
}

/* =========================================================
   FEEDBACKS
   ========================================================= */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 60px;
}
.feedback-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px 26px;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
}
.feedback-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.quote-icon {
    color: var(--gold-light);
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.feedback-card p {
    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 22px;
    font-style: italic;
}
.feedback-card footer {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 6px; }
.feedback-card strong {
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 600;
}
.feedback-card small {
    font-size: 0.78rem;
    color: var(--ink-mute);
    letter-spacing: 0.05em;
}

.feedback-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    border-top: 1px solid var(--line);
    padding-top: 50px;
}
.feedback-stats div { display: flex; flex-direction: column; gap: 6px; }
.feedback-stats strong {
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--gold);
    font-weight: 500;
}
.feedback-stats span {
    font-size: 0.78rem;
    color: var(--ink-mute);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* =========================================================
   HISTÓRIA / VÍDEO
   ========================================================= */
.history-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.history-text p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 18px;
}
.history-text .btn { margin-top: 14px; }

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.video-frame iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* =========================================================
   COMO COMPRAR
   ========================================================= */
.how-buy { background: var(--deep); position: relative; }
.how-buy::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(176, 137, 72, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(185, 167, 201, 0.12) 0%, transparent 50%);
    pointer-events: none;
}
.how-buy .container { position: relative; z-index: 1; }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(227, 207, 163, 0.18);
    border-radius: var(--radius);
    padding: 32px 26px;
    transition: all .35s ease;
}
.step:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--gold-light);
    transform: translateY(-4px);
}
.step-num {
    display: inline-block;
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 14px;
}
.step h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--cream-light);
    margin: 0 0 10px;
    font-weight: 500;
}
.step p {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}
.step strong { color: var(--gold-light); font-weight: 500; }

.how-note {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(176, 137, 72, 0.10);
    border: 1px solid rgba(227, 207, 163, 0.25);
    border-radius: var(--radius);
    padding: 24px 28px;
    max-width: 880px;
    margin: 0 auto;
}
.how-note i {
    color: var(--gold-light);
    font-size: 1.6rem;
    flex-shrink: 0;
}
.how-note p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.96rem;
    line-height: 1.65;
}
.how-note strong { color: var(--gold-light); font-weight: 600; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta {
    position: relative;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(222, 211, 231, 0.4) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(227, 207, 163, 0.35) 0%, transparent 55%),
        var(--cream);
}
.final-bg { position: absolute; inset: 0; pointer-events: none; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta .hero-script { margin-bottom: 26px; }

.cta-benefits {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0 40px;
    text-align: left;
}
.cta-benefits li {
    display: flex; align-items: center; gap: 12px;
    color: var(--ink-soft);
    font-size: 1rem;
}
.cta-benefits i { color: var(--gold); font-size: 0.8rem; }

.cta-foot {
    margin-top: 22px;
    font-size: 0.82rem;
    color: var(--ink-mute);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.72);
    padding: 70px 0 30px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.foot-brand { padding-top: 14px; }
.foot-tagline {
    margin: 0 0 26px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}
.foot-social {
    display: flex;
    gap: 14px;
}
.foot-social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    transition: all .3s ease;
}
.foot-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* Card de credibilidade do footer */
.foot-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 28px 28px 26px;
    max-width: 360px;
    justify-self: end;
}

.foot-logo-box {
    background: var(--cream-light);
    border-radius: 6px;
    padding: 22px 18px 20px;
    text-align: center;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.foot-cotton {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 4px;
}
.foot-brand-name {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.05;
    color: #1f2a3a;
    letter-spacing: 0.04em;
}
.foot-brand-sub {
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.34em;
    color: var(--gold);
    font-weight: 500;
}

.foot-info {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.foot-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    line-height: 1.5;
}
.foot-info i {
    color: var(--lavender);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.foot-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lavender);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    margin-bottom: 14px;
    font-weight: 500;
}

.foot-mini-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.foot-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    padding: 10px 18px;
    color: rgba(255,255,255,0.85);
    font-size: 0.86rem;
    transition: all .3s ease;
}
.foot-pill:hover {
    background: rgba(176, 137, 72, 0.15);
    border-color: var(--gold);
    color: #fff;
    transform: translateX(4px);
}
.foot-pill i {
    color: #ff5b6e;
    font-size: 0.7rem;
}

.foot-copy {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    margin-top: 24px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    letter-spacing: 0.04em;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
    z-index: 40;
    transition: all .3s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float.hide { opacity: 0; pointer-events: none; transform: scale(0.5); }

/* =========================================================
   ANIMAÇÕES
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
    .section { padding: 80px 0; }
    .hero { padding: 130px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-text { max-width: 600px; margin: 0 auto; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-ctas, .hero-trust { justify-content: center; }
    .hero-art-frame { max-width: 480px; margin: 0 auto; }

    .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .feedback-grid { grid-template-columns: repeat(2, 1fr); }
    .feedback-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }

    .history-grid { grid-template-columns: 1fr; gap: 36px; }
    .team-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-photo { max-width: 480px; margin: 0 auto; }
    .attendants-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }

    .floral { width: 160px; height: 160px; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .hero { padding: 110px 0 60px; }

    .btn { padding: 13px 22px; font-size: 0.88rem; }
    .btn-lg { padding: 16px 28px; font-size: 0.95rem; }

    .brand-name { font-size: 1.15rem; }
    .brand-name small { font-size: 0.5rem; }

    .collections-grid,
    .clients-grid,
    .feedback-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .attendants-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .attendant-card { padding: 24px 14px 22px; }
    .attendant-photo { width: 88px; height: 88px; margin-bottom: 16px; }
    .attendant-card h3 { font-size: 1.2rem; }
    .attendant-role { font-size: 0.62rem; letter-spacing: 0.14em; }
    .attendant-phone { font-size: 0.8rem; margin-bottom: 14px; }
    .attendant-card .btn { padding: 9px 14px; font-size: 0.75rem; gap: 6px; }

    .hero-trust { gap: 14px; font-size: 0.78rem; }
    .feedback-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .feedback-stats strong { font-size: 1.9rem; }
    .team-stats { grid-template-columns: 1fr; gap: 14px; }
    .attendants-note { flex-direction: column; align-items: flex-start; text-align: left; gap: 10px; }

    .how-note { flex-direction: column; align-items: flex-start; gap: 12px; }

    .wa-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 18px; right: 18px; }

    .floral { width: 120px; height: 120px; opacity: 0.25; }
}
