/* =========================================================
   ATELIÊ FIO DE OURO
   Mobile First
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');


:root {

    --bg: #fffaf7;
    --bg-soft: #fff4f0;
    --bg-pink: #f8e4e2;

    --white: #ffffff;

    --text: #332b2c;
    --text-soft: #77696b;

    --pink: #c96d72;
    --pink-dark: #a64d56;
    --pink-light: #e8a9aa;

    --gold: #c38b24;
    --gold-dark: #9d6a11;
    --gold-light: #e8c77e;

    --border: rgba(124, 86, 87, 0.13);

    --shadow-sm:
        0 10px 30px rgba(89, 53, 55, 0.07);

    --shadow-md:
        0 25px 70px rgba(89, 53, 55, 0.12);

    --shadow-lg:
        0 35px 100px rgba(89, 53, 55, 0.18);

    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;

    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    color: var(--text);
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(227, 157, 160, .11),
            transparent 35%
        ),
        var(--bg);

    font-family: var(--font-body);

    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

svg {
    display: block;
}

::selection {
    color: white;
    background: var(--pink);
}


/* =========================================================
   GLOBAL
========================================================= */

.container {

    width: min(
        calc(100% - 32px),
        var(--container)
    );

    margin-inline: auto;
}

.section {
    position: relative;
    padding: 88px 0;
}

.section-kicker {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 14px;

    color: var(--gold-dark);

    font-size: .76rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-kicker::before {

    content: '';

    width: 25px;
    height: 1px;

    background: var(--gold);
}

.section-heading {

    max-width: 640px;

    margin-bottom: 42px;
}

.section-heading.centered {

    margin-inline: auto;

    text-align: center;
}

.section-heading.centered .section-kicker {
    justify-content: center;
}

.section-heading h2,
.transformation-copy h2,
.values-content h2,
.contact-copy h2 {

    margin: 0 0 18px;

    font-family: var(--font-display);

    font-size: clamp(
        2.2rem,
        8vw,
        4rem
    );

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.035em;
}

.section-heading h2 span,
.transformation-copy h2 span,
.values-content h2 span,
.contact-copy h2 span {

    color: var(--pink);

    font-style: italic;
}

.section-heading p,
.transformation-copy p,
.contact-copy p {

    margin: 0;

    color: var(--text-soft);

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================================================
   LOADER
========================================================= */

.page-loader {

    position: fixed;
    inset: 0;

    z-index: 99999;

    display: grid;

    place-items: center;

    background: var(--bg);

    transition:
        opacity .7s ease,
        visibility .7s ease;
}

.page-loader.loaded {

    opacity: 0;
    visibility: hidden;

    pointer-events: none;
}

.loader-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 18px;
}

.loader-content p {

    margin: 0;

    color: var(--text-soft);

    font-size: .85rem;

    letter-spacing: .06em;
}

.loader-spool {

    position: relative;

    width: 52px;
    height: 64px;

    display: grid;

    place-items: center;

    border-top: 8px solid var(--gold);
    border-bottom: 8px solid var(--gold);

    border-radius: 7px;

    animation:
        spoolRotate 1.2s ease-in-out infinite;
}

.loader-spool span {

    width: 42px;
    height: 38px;

    border-radius: 6px;

    background:
        repeating-linear-gradient(
            0deg,
            var(--pink),
            var(--pink) 2px,
            #d8898e 2px,
            #d8898e 4px
        );
}

@keyframes spoolRotate {

    0%,
    100% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }
}


/* =========================================================
   AMBIENT
========================================================= */

.ambient-thread {

    position: fixed;

    z-index: -1;

    width: 380px;
    height: 380px;

    border: 1px solid rgba(195, 139, 36, .12);

    border-radius:
        44% 56% 70% 30%
        / 38% 40% 60% 62%;

    pointer-events: none;

    animation:
        ambientFloat 15s ease-in-out infinite;
}

.thread-one {

    top: 18%;
    left: -250px;
}

.thread-two {

    right: -280px;
    bottom: 12%;

    animation-delay: -5s;
}

@keyframes ambientFloat {

    0%,
    100% {
        transform:
            rotate(0deg)
            scale(1);
    }

    50% {
        transform:
            rotate(25deg)
            scale(1.1);
    }
}

.floating-stitch {

    position: fixed;

    z-index: -1;

    width: 50px;

    border-top: 2px dashed rgba(201, 109, 114, .12);

    pointer-events: none;

    animation:
        stitchFloat 8s ease-in-out infinite;
}

.stitch-1 {
    top: 30%;
    left: 5%;
}

.stitch-2 {
    top: 66%;
    right: 8%;

    animation-delay: -2s;
}

.stitch-3 {
    top: 80%;
    left: 12%;

    animation-delay: -4s;
}

@keyframes stitchFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    padding: 12px 0;

    border-bottom: 1px solid transparent;

    transition:
        background .3s ease,
        box-shadow .3s ease,
        border .3s ease,
        padding .3s ease;
}

.site-header.scrolled {

    padding: 8px 0;

    border-color: var(--border);

    background:
        rgba(255, 250, 247, .88);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 8px 30px
        rgba(89, 53, 55, .05);
}

.header-container {

    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 54px;
}

.brand {

    display: flex;

    align-items: center;
}

.brand-logo {

    width: 158px;

    max-height: 48px;

    object-fit: contain;
    object-position: left center;
}

.desktop-nav {
    display: none;
}

.mobile-menu-button {

    position: relative;

    width: 44px;
    height: 44px;

    display: grid;

    place-content: center;

    gap: 6px;

    border-radius: 50%;

    cursor: pointer;

    background:
        rgba(255,255,255,.7);

    border:
        1px solid var(--border);
}

.mobile-menu-button span {

    width: 18px;
    height: 1.5px;

    display: block;

    background: var(--text);

    transition:
        transform .3s ease,
        width .3s ease;
}

.mobile-menu-button.active span:first-child {

    transform:
        translateY(3.8px)
        rotate(45deg);
}

.mobile-menu-button.active span:last-child {

    transform:
        translateY(-3.8px)
        rotate(-45deg);
}

.mobile-menu {

    position: fixed;

    top: 72px;
    left: 16px;
    right: 16px;

    z-index: 1100;

    display: flex;

    flex-direction: column;

    gap: 4px;

    padding: 12px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background:
        rgba(255,250,247,.98);

    box-shadow: var(--shadow-md);

    transform:
        translateY(-12px)
        scale(.98);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.mobile-menu.active {

    transform:
        translateY(0)
        scale(1);

    opacity: 1;

    visibility: visible;
}

.mobile-menu > a {

    padding: 14px 16px;

    border-radius: 14px;

    color: var(--text);

    font-size: .95rem;
}

.mobile-menu .btn {
    margin-top: 6px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 999px;

    font-weight: 700;
    font-size: .9rem;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--pink-dark)
        );

    box-shadow:
        0 14px 32px
        rgba(166, 77, 86, .24);
}

.btn-primary:hover {

    box-shadow:
        0 18px 42px
        rgba(166, 77, 86, .32);
}

.btn-ghost {

    color: var(--text);

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,.6);
}

.btn-large {

    min-height: 56px;

    padding-inline: 25px;
}

.btn svg {

    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform .25s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100svh;

    padding-top: 125px;
    padding-bottom: 90px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.hero-grid {

    position: relative;

    z-index: 3;

    display: grid;

    gap: 58px;
}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    padding:
        9px 13px;

    border:
        1px solid rgba(195,139,36,.18);

    border-radius: 999px;

    color: var(--gold-dark);

    background:
        rgba(255,255,255,.55);

    font-size: .74rem;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow-icon {

    display: inline-block;

    animation:
        starPulse 2.4s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.3) rotate(25deg);
    }
}

.hero-title {

    max-width: 670px;

    margin: 0;

    font-family: var(--font-display);

    font-size: clamp(
        3.15rem,
        14vw,
        6.7rem
    );

    font-weight: 500;

    line-height: .92;

    letter-spacing: -.055em;
}

.hero-title span {

    display: block;

    color: var(--pink);

    font-style: italic;
}

.hero-description {

    max-width: 580px;

    margin:
        26px 0 0;

    color: var(--text-soft);

    font-size: 1.05rem;

    line-height: 1.8;
}

.hero-actions {

    display: grid;

    gap: 10px;

    margin-top: 32px;
}

.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 13px 20px;

    margin-top: 26px;
}

.trust-item {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text-soft);

    font-size: .82rem;
    font-weight: 500;
}

.trust-icon {

    width: 25px;
    height: 25px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--gold-dark);

    border:
        1px solid rgba(195,139,36,.18);

    border-radius: 50%;

    background: #fff;
}


/* HERO VISUAL */

.hero-visual {

    position: relative;

    display: flex;

    justify-content: center;
}

.hero-card {

    position: relative;

    width: min(
        100%,
        440px
    );

    min-height: 500px;

    padding: 48px 26px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(195,139,36,.17);

    border-radius:
        130px 130px 34px 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.92),
            rgba(255,242,238,.8)
        );

    box-shadow: var(--shadow-lg);

    overflow: hidden;
}

.hero-card::after {

    content: '';

    position: absolute;

    width: 260px;
    height: 260px;

    right: -130px;
    bottom: -120px;

    border:
        1px dashed rgba(201,109,114,.16);

    border-radius: 50%;
}

.logo-hero-wrap {

    position: relative;

    width: min(
        100%,
        320px
    );

    display: grid;

    place-items: center;
}

.logo-halo {

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(232,199,126,.18),
            rgba(232,199,126,0) 70%
        );

    animation:
        haloPulse 4s ease-in-out infinite;
}

@keyframes haloPulse {

    0%,
    100% {
        transform: scale(.9);
        opacity: .6;
    }

    50% {
        transform: scale(1.13);
        opacity: 1;
    }
}

.hero-logo {

    position: relative;

    z-index: 2;

    width: 260px;

    max-height: 250px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 15px 25px
            rgba(167, 92, 97, .10)
        );
}

.hero-card-message {

    position: relative;

    z-index: 2;

    width: 100%;

    margin-top: 34px;

    padding-top: 28px;

    border-top:
        1px dashed
        rgba(195,139,36,.30);
}

.tiny-label {

    display: block;

    margin-bottom: 8px;

    color: var(--gold-dark);

    font-size: .65rem;
    font-weight: 700;

    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-card-message strong {

    font-family: var(--font-display);

    font-size: 1.45rem;

    font-weight: 500;

    line-height: 1.2;
}

.hero-card-decoration {

    position: absolute;

    color: var(--gold);

    font-size: 1.5rem;
}

.decoration-top {

    top: 34px;
    right: 35px;
}

.decoration-bottom {

    bottom: 32px;
    left: 35px;

    color: var(--pink-light);
}

.needle-animation {

    position: absolute;

    top: 65px;
    left: 25px;

    width: 80px;
    height: 100px;

    animation:
        needleFloat 4.5s ease-in-out infinite;
}

.needle {

    position: absolute;

    left: 27px;

    width: 2px;
    height: 68px;

    background:
        linear-gradient(
            to bottom,
            #c8b79f,
            #777
        );

    border-radius: 999px;

    transform:
        rotate(22deg);
}

.needle::after {

    content: '';

    position: absolute;

    top: 5px;
    left: -2px;

    width: 5px;
    height: 9px;

    border:
        1px solid #777;

    border-radius: 50%;
}

.needle-thread {

    position: absolute;

    top: 11px;
    left: 35px;

    width: 70px;
    height: 44px;

    border-top:
        1.5px solid var(--pink);

    border-radius: 50%;

    transform:
        rotate(24deg);
}

@keyframes needleFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-3deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(5deg);
    }
}


/* HERO THREAD */

.hero-thread-path {

    position: absolute;

    left: 0;
    bottom: -20px;

    width: 100%;
    height: 190px;

    opacity: .38;
}

.hero-thread-path svg {

    width: 100%;
    height: 100%;
}

.animated-thread-path {

    fill: none;

    stroke: var(--gold);

    stroke-width: 1.4;

    stroke-linecap: round;

    stroke-dasharray: 10 10;

    animation:
        threadMove 16s linear infinite;
}

@keyframes threadMove {

    to {
        stroke-dashoffset: -400;
    }
}


/* GLOWS */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(10px);

    pointer-events: none;
}

.hero-glow-one {

    width: 480px;
    height: 480px;

    top: -190px;
    right: -180px;

    background:
        rgba(224, 157, 160, .13);
}

.hero-glow-two {

    width: 340px;
    height: 340px;

    left: -160px;
    bottom: 0;

    background:
        rgba(224, 191, 116, .09);
}


/* =========================================================
   MANIFESTO
========================================================= */

.manifesto {

    position: relative;

    z-index: 5;

    padding:
        0 0 25px;
}

.manifesto-line {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding:
        26px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background:
        rgba(255,255,255,.72);

    backdrop-filter:
        blur(12px);

    box-shadow: var(--shadow-sm);
}

.manifesto-icon {

    flex-shrink: 0;

    color: var(--gold);

    font-size: 1.6rem;

    transform:
        rotate(-12deg);
}

.manifesto-line p {

    margin: 0;

    color: var(--text-soft);

    line-height: 1.6;
}

.manifesto-line strong {

    color: var(--pink-dark);
}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(248,228,226,.28),
            transparent
        );
}

.services-grid {

    display: grid;

    gap: 14px;
}

.service-card {

    position: relative;

    min-height: 330px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    background:
        rgba(255,255,255,.78);

    box-shadow:
        0 10px 40px
        rgba(89,53,55,.04);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.service-card::before {

    content: '';

    position: absolute;

    width: 130px;
    height: 130px;

    right: -65px;
    bottom: -70px;

    border:
        1px dashed
        rgba(195,139,36,.20);

    border-radius: 50%;

    transition:
        transform .6s ease;
}

.service-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(195,139,36,.28);

    box-shadow: var(--shadow-md);
}

.service-card:hover::before {

    transform:
        scale(1.3)
        rotate(35deg);
}

.service-number {

    margin-bottom: 38px;

    color:
        rgba(195,139,36,.55);

    font-family: var(--font-display);

    font-size: .8rem;

    letter-spacing: .1em;
}

.service-icon {

    width: 49px;
    height: 49px;

    display: grid;

    place-items: center;

    margin-bottom: 24px;

    color: var(--pink);

    border:
        1px solid rgba(201,109,114,.16);

    border-radius: 50%;

    background: var(--bg-soft);

    font-size: 1.2rem;
}

.icon-thread {
    letter-spacing: -3px;
}

.service-card h3 {

    margin:
        0 0 12px;

    font-family:
        var(--font-display);

    font-size: 1.65rem;

    font-weight: 500;
}

.service-card p {

    margin:
        0 0 26px;

    color: var(--text-soft);

    line-height: 1.75;

    font-size: .92rem;
}

.service-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: auto;
}

.service-tags span {

    padding:
        7px 11px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    color: var(--text-soft);

    font-size: .71rem;
}

.service-featured {

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff3ef
        );

    border-color:
        rgba(201,109,114,.22);
}

.featured-badge {

    position: absolute;

    top: 22px;
    right: 22px;

    padding:
        6px 9px;

    color: var(--pink-dark);

    border-radius: 999px;

    background:
        rgba(201,109,114,.10);

    font-size: .62rem;
    font-weight: 700;

    letter-spacing: .04em;
}


/* =========================================================
   TRANSFORMATION
========================================================= */

.transformation {

    overflow: hidden;
}

.transformation-grid {

    display: grid;

    gap: 50px;
}

.transformation-copy {

    align-self: center;
}

.transformation-copy p {

    margin-bottom: 25px;
}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 0;

    color: var(--pink-dark);

    background: transparent;

    cursor: pointer;

    font-weight: 700;

    line-height: 1.5;

    text-align: left;
}

.text-link span {

    transition:
        transform .25s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.transformation-visual {

    position: relative;
}

.fabric-card {

    position: relative;

    min-height: 440px;

    padding: 30px 22px;

    border:
        1px solid rgba(195,139,36,.15);

    border-radius:
        28px 90px 28px 28px;

    background:
        linear-gradient(
            145deg,
            #f9e8e4,
            #fff8f4
        );

    box-shadow: var(--shadow-md);

    overflow: hidden;
}

.fabric-card::after {

    content: '';

    position: absolute;

    width: 260px;
    height: 260px;

    right: -110px;
    bottom: -110px;

    border:
        1px solid rgba(201,109,114,.15);

    border-radius: 50%;
}

.fabric-top {

    display: flex;

    align-items: center;

    gap: 14px;

    color: var(--text-soft);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.fabric-dashed-line {

    flex: 1;

    border-top:
        1px dashed
        rgba(195,139,36,.4);
}

.fabric-center {

    min-height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;
}

.fabric-piece {

    width: 115px;
    height: 160px;

    display: grid;

    place-items: center;

    position: relative;

    color: var(--text-soft);

    border-radius:
        30% 30% 12% 12%
        / 18% 18% 15% 15%;

    font-size: .72rem;

    text-transform: uppercase;
    letter-spacing: .1em;

    transition:
        transform .35s ease;
}

.fabric-piece::before,
.fabric-piece::after {

    content: '';

    position: absolute;

    top: -3px;

    width: 45px;
    height: 70px;
}

.fabric-piece::before {

    left: -29px;

    border-radius:
        80% 10% 0 70%;

    transform:
        rotate(14deg);
}

.fabric-piece::after {

    right: -29px;

    border-radius:
        10% 80% 70% 0;

    transform:
        rotate(-14deg);
}

.fabric-before {

    background:
        #dec4c0;
}

.fabric-before::before,
.fabric-before::after {
    background:
        #dec4c0;
}

.fabric-after {

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--pink),
            #b75660
        );

    box-shadow:
        0 20px 35px
        rgba(166,77,86,.20);
}

.fabric-after::before,
.fabric-after::after {

    background: var(--pink);
}

.fabric-card:hover .fabric-before {

    transform:
        translateX(-5px)
        rotate(-2deg);
}

.fabric-card:hover .fabric-after {

    transform:
        translateX(5px)
        rotate(2deg);
}

.fabric-arrow {

    position: relative;

    z-index: 4;

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    color: var(--gold-dark);

    border-radius: 50%;

    background: white;

    box-shadow: var(--shadow-sm);

    animation:
        arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    50% {
        transform:
            scale(1.12)
            rotate(20deg);
    }
}

.fabric-footer {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 11px;
}

.little-needle {

    color: var(--gold);

    font-size: 1.7rem;
}

.fabric-footer p {

    margin: 0;

    color: var(--text-soft);

    font-size: .8rem;
}


/* =========================================================
   PROCESS
========================================================= */

.process {

    background: #fff;
}

.process-wrapper {

    position: relative;

    max-width: 780px;

    margin-inline: auto;
}

.process-thread {

    position: absolute;

    top: 25px;
    bottom: 25px;
    left: 20px;

    width: 1px;
}

.process-thread span {

    display: block;

    width: 1px;
    height: 100%;

    background:
        repeating-linear-gradient(
            to bottom,
            var(--gold) 0,
            var(--gold) 7px,
            transparent 7px,
            transparent 14px
        );
}

.process-step {

    position: relative;

    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 18px;

    padding-bottom: 42px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-marker {

    position: relative;

    z-index: 3;

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(195,139,36,.3);

    border-radius: 50%;

    color: var(--gold-dark);

    background: var(--bg);

    font-size: .78rem;
    font-weight: 700;

    box-shadow:
        0 0 0 7px white;
}

.process-content {

    padding:
        0 0 5px;
}

.process-mini {

    display: inline-block;

    margin-bottom: 7px;

    color: var(--pink);

    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.process-content h3 {

    margin:
        0 0 9px;

    font-family:
        var(--font-display);

    font-size: 1.4rem;

    font-weight: 500;
}

.process-content p {

    margin: 0;

    color: var(--text-soft);

    font-size: .88rem;

    line-height: 1.7;
}


/* =========================================================
   VALUES
========================================================= */

.values-card {

    position: relative;

    padding:
        45px 24px;

    border-radius:
        32px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #4f3c3e,
            #332728
        );

    box-shadow:
        var(--shadow-lg);

    overflow: hidden;
}

.values-card::before {

    content: '';

    position: absolute;

    width: 340px;
    height: 340px;

    top: -180px;
    right: -120px;

    border:
        1px solid
        rgba(232,199,126,.20);

    border-radius: 50%;
}

.values-card .section-kicker {
    color: var(--gold-light);
}

.values-content {

    position: relative;

    z-index: 2;
}

.values-content h2 {

    max-width: 660px;

    margin-bottom: 55px;
}

.values-content h2 span {
    color: #efb1b4;
}

.values-list {

    position: relative;

    z-index: 2;

    display: grid;

    gap: 30px;
}

.value-item {

    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 18px;

    padding-top: 24px;

    border-top:
        1px solid
        rgba(255,255,255,.12);
}

.value-item strong {

    color: var(--gold-light);

    font-family:
        var(--font-display);

    font-size: .8rem;
}

.value-item h3 {

    margin:
        0 0 8px;

    font-size: .98rem;
}

.value-item p {

    margin: 0;

    color:
        rgba(255,255,255,.62);

    font-size: .82rem;

    line-height: 1.6;
}

.values-decoration {

    position: absolute;

    right: 30px;
    bottom: 30px;

    color:
        rgba(232,199,126,.22);

    font-size: 4rem;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding-top: 30px;
}

.contact-box {

    position: relative;

    display: grid;

    gap: 50px;

    padding:
        46px 25px;

    border:
        1px solid rgba(195,139,36,.15);

    border-radius:
        35px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff1ed
        );

    box-shadow:
        var(--shadow-md);

    overflow: hidden;
}

.contact-copy {

    position: relative;

    z-index: 4;
}

.contact-copy p {

    max-width: 520px;

    margin-bottom: 28px;
}

.contact-art {

    position: relative;

    min-height: 230px;

    display: grid;

    place-items: center;
}

.spool-big {

    position: relative;

    z-index: 3;

    width: 135px;
}

.spool-top,
.spool-bottom {

    width: 100%;
    height: 24px;

    border-radius:
        50%;

    background:
        linear-gradient(
            180deg,
            #d7a84e,
            var(--gold-dark)
        );

    box-shadow:
        0 7px 18px
        rgba(120,76,13,.18);
}

.spool-thread {

    width: 90px;
    height: 105px;

    margin:
        -2px auto;

    display: grid;

    place-items: center;

    color: white;

    background:
        repeating-linear-gradient(
            0deg,
            #c76069 0,
            #c76069 3px,
            #cd747b 3px,
            #cd747b 6px
        );

    box-shadow:
        inset 9px 0 17px
        rgba(90,35,40,.12),
        inset -9px 0 17px
        rgba(255,255,255,.14);
}

.spool-thread span {

    font-family:
        var(--font-display);

    font-size: 2.4rem;
}

.contact-thread {

    position: absolute;

    width: 320px;
    height: 180px;

    border:
        2px dashed
        rgba(201,109,114,.23);

    border-radius:
        48% 52% 62% 38%
        / 54% 44% 56% 46%;

    animation:
        contactThread 11s
        linear infinite;
}

@keyframes contactThread {

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        60px 0 110px;

    background:
        #f8efeb;
}

.footer-grid {

    display: grid;

    gap: 35px;
}

.footer-brand img {

    width: 180px;

    margin-bottom: 12px;
}

.footer-brand p {

    margin: 0;

    color: var(--text-soft);

    font-family:
        var(--font-display);

    font-style: italic;
}

.footer-links {

    display: grid;

    gap: 13px;

    font-size: .88rem;
}

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

.footer-whatsapp {

    width: fit-content;

    padding: 0;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--pink-dark);

    background: transparent;

    cursor: pointer;

    font-weight: 700;
}

.footer-bottom {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 40px;

    padding-top: 24px;

    border-top:
        1px solid var(--border);

    color: var(--text-soft);

    font-size: .72rem;
}


/* =========================================================
   MOBILE CTA
========================================================= */

.mobile-fixed-cta {

    position: fixed;

    left: 14px;
    right: 14px;
    bottom: 14px;

    z-index: 900;

    padding-bottom:
        env(safe-area-inset-bottom);
}

.mobile-fixed-cta .btn {

    width: 100%;

    box-shadow:
        0 15px 45px
        rgba(97, 47, 52, .30);
}


/* =========================================================
   MODAL
========================================================= */

.modal {

    position: fixed;
    inset: 0;

    z-index: 9999;

    display: grid;

    place-items: end center;

    padding: 14px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.modal.active {

    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.modal-backdrop {

    position: absolute;
    inset: 0;

    background:
        rgba(39, 28, 29, .54);

    backdrop-filter:
        blur(7px);
}

.modal-dialog {

    position: relative;
    z-index: 3;

    width: min(
        100%,
        570px
    );

    padding:
        35px 20px 24px;

    border:
        1px solid
        rgba(255,255,255,.65);

    border-radius:
        30px 30px 22px 22px;

    background:
        #fffaf7;

    box-shadow: var(--shadow-lg);

    transform:
        translateY(35px)
        scale(.97);

    transition:
        transform .35s
        cubic-bezier(.22,.8,.3,1);
}

.modal.active .modal-dialog {

    transform:
        translateY(0)
        scale(1);
}

.modal-close {

    position: absolute;

    top: 15px;
    right: 15px;

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 50%;

    color: var(--text-soft);

    background: white;

    cursor: pointer;

    font-size: 1.5rem;

    line-height: 1;
}

.modal-header {

    padding-right: 36px;
}

.modal-header h2 {

    margin:
        0 0 12px;

    font-family:
        var(--font-display);

    font-size: 2rem;

    font-weight: 500;

    line-height: 1.08;
}

.modal-header p {

    margin: 0;

    color: var(--text-soft);

    font-size: .88rem;

    line-height: 1.6;
}

.seam-divider {

    display: flex;

    align-items: center;

    gap: 10px;

    margin: 27px 0;
}

.seam-divider span {

    flex: 1;

    border-top:
        1px dashed
        rgba(195,139,36,.35);
}

.seam-divider i {

    color: var(--gold);

    font-style: normal;

    font-size: .85rem;
}

.seamstresses {

    display: grid;

    gap: 10px;
}

.seamstress-card {

    display: grid;

    grid-template-columns:
        54px 1fr 38px;

    align-items: center;

    gap: 13px;

    padding: 14px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(255,255,255,.75);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.seamstress-card:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(201,109,114,.30);

    box-shadow: var(--shadow-sm);
}

.seamstress-avatar {

    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--pink-light),
            var(--pink-dark)
        );

    font-family:
        var(--font-display);

    font-size: 1.25rem;

    box-shadow:
        0 8px 20px
        rgba(166,77,86,.16);
}

.seamstress-info > span {

    display: block;

    margin-bottom: 2px;

    color: var(--gold-dark);

    font-size: .62rem;

    letter-spacing: .09em;

    text-transform: uppercase;
}

.seamstress-info h3 {

    margin: 0;

    font-family:
        var(--font-display);

    font-size: 1.3rem;

    font-weight: 500;
}

.seamstress-info p {

    margin: 3px 0 0;

    color: var(--text-soft);

    font-size: .77rem;
}

.seamstress-action {

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--pink-dark);

    background:
        var(--bg-pink);

    transition:
        transform .25s ease;
}

.seamstress-card:hover
.seamstress-action {

    transform:
        translateX(3px);
}

.modal-note {

    margin:
        20px 0 0;

    color: var(--text-soft);

    font-size: .7rem;

    text-align: center;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .8s ease,
        transform .8s
        cubic-bezier(.22,.8,.3,1);
}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 700px) {

    .container {
        width:
            min(
                calc(100% - 60px),
                var(--container)
            );
    }

    .section {
        padding:
            110px 0;
    }

    .hero-actions {

        display: flex;

        align-items: center;
    }

    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .service-card {
        min-height: 350px;
    }

    .transformation-grid {

        grid-template-columns:
            .9fr 1.1fr;

        align-items: center;
    }

    .contact-box {

        grid-template-columns:
            1.2fr .8fr;

        align-items: center;

        padding: 60px;
    }

    .footer-grid {

        grid-template-columns:
            1.4fr .8fr .8fr;

        align-items: start;
    }

    .footer-bottom {

        flex-direction: row;

        justify-content:
            space-between;
    }

    .modal {

        place-items: center;

        padding: 25px;
    }

    .modal-dialog {

        padding:
            42px;

        border-radius: 30px;
    }
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1024px) {

    .section {
        padding:
            135px 0;
    }

    .brand-logo {
        width: 195px;
    }

    .mobile-menu-button,
    .mobile-menu {
        display: none;
    }

    .desktop-nav {

        display: flex;

        align-items: center;

        gap: 28px;
    }

    .desktop-nav > a {

        position: relative;

        color: var(--text-soft);

        font-size: .82rem;
        font-weight: 600;
    }

    .desktop-nav > a::after {

        content: '';

        position: absolute;

        left: 0;
        bottom: -6px;

        width: 0;
        height: 1px;

        background: var(--pink);

        transition:
            width .25s ease;
    }

    .desktop-nav > a:hover {

        color: var(--text);
    }

    .desktop-nav > a:hover::after {

        width: 100%;
    }

    .btn-header {

        min-height: 44px;

        color: white;

        background:
            var(--text);
    }

    .hero {

        min-height: 800px;

        padding-top: 150px;
    }

    .hero-grid {

        grid-template-columns:
            1.05fr .75fr;

        align-items: center;

        gap: 70px;
    }

    .hero-title {

        font-size:
            clamp(
                4.8rem,
                7vw,
                7.2rem
            );
    }

    .hero-description {

        font-size: 1.08rem;
    }

    .hero-card {

        min-height: 590px;

        padding:
            60px 45px;

        border-radius:
            170px 170px 42px 42px;
    }

    .hero-logo {
        width: 310px;
    }

    .manifesto-line {

        align-items: center;

        padding:
            28px 34px;
    }

    .manifesto-line p {
        font-size: 1.05rem;
    }

    .services-grid {

        grid-template-columns:
            repeat(4, 1fr);

        gap: 16px;
    }

    .service-card {

        min-height: 410px;

        padding: 30px;
    }

    .transformation-grid {
        gap: 100px;
    }

    .fabric-card {

        min-height: 550px;

        padding: 40px;

        border-radius:
            35px 130px 35px 35px;
    }

    .fabric-center {
        min-height: 390px;
    }

    .fabric-piece {

        width: 150px;
        height: 200px;
    }

    .fabric-piece::before,
    .fabric-piece::after {

        width: 54px;
        height: 90px;
    }

    .process-step {

        grid-template-columns:
            55px 1fr;

        gap: 30px;

        padding-bottom: 58px;
    }

    .process-thread {
        left: 27px;
    }

    .process-marker {

        width: 55px;
        height: 55px;
    }

    .process-content h3 {

        font-size: 1.65rem;
    }

    .process-content p {

        max-width: 580px;

        font-size: .94rem;
    }

    .values-card {

        padding:
            80px;

        border-radius: 45px;
    }

    .values-list {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 38px;
    }

    .contact-box {

        min-height: 480px;

        padding:
            70px 85px;

        border-radius: 45px;
    }

    .spool-big {

        width: 170px;
    }

    .spool-thread {

        width: 112px;
        height: 135px;
    }

    .contact-thread {

        width: 440px;
        height: 250px;
    }

    .site-footer {

        padding-bottom:
            50px;
    }

    .mobile-fixed-cta {
        display: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration:
            .001ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .001ms !important;
    }
}

/* =========================================================
   LOCALIZAÇÃO
========================================================= */

.location-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 70%,
            rgba(201, 109, 114, .08),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(195, 139, 36, .08),
            transparent 30%
        ),
        var(--bg);
}


.location-grid {

    display: grid;

    gap: 48px;

    align-items: center;
}


/* =========================================================
   TEXTO
========================================================= */

.location-content {

    position: relative;

    z-index: 3;
}


.location-content h2 {

    margin:
        0 0 20px;

    max-width: 620px;

    font-family:
        var(--font-display);

    font-size:
        clamp(
            2.4rem,
            9vw,
            4.5rem
        );

    font-weight: 500;

    line-height: 1;

    letter-spacing: -.04em;
}


.location-content h2 span {

    display: block;

    color: var(--pink);

    font-style: italic;
}


.location-description {

    max-width: 600px;

    margin:
        0 0 32px;

    color:
        var(--text-soft);

    font-size: .98rem;

    line-height: 1.8;
}


.location-description strong {
    color: var(--text);
}


/* =========================================================
   INFORMAÇÕES
========================================================= */

.location-info {

    display: grid;

    gap: 12px;

    margin-bottom: 30px;
}


.location-info-item {

    display: grid;

    grid-template-columns:
        48px 1fr;

    gap: 15px;

    align-items: flex-start;

    padding:
        17px;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    background:
        rgba(255, 255, 255, .58);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.location-info-item:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(195, 139, 36, .25);

    box-shadow:
        var(--shadow-sm);
}


.location-info-icon {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(195, 139, 36, .18);

    border-radius: 50%;

    color:
        var(--gold-dark);

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff4ea
        );
}


.location-info-icon svg {

    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.location-info-item span {

    display: block;

    margin-bottom: 4px;

    color:
        var(--gold-dark);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.location-info-item strong {

    display: block;

    margin-bottom: 3px;

    font-family:
        var(--font-display);

    font-size: 1.15rem;

    font-weight: 500;
}


.location-info-item p {

    margin: 0;

    color:
        var(--text-soft);

    font-size: .78rem;

    line-height: 1.5;
}


/* =========================================================
   AÇÕES
========================================================= */

.location-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


/* =========================================================
   MAP CARD
========================================================= */

.location-map-wrapper {

    position: relative;
}


.map-decoration-one {

    position: absolute;

    width: 220px;
    height: 220px;

    top: -50px;
    right: -70px;

    border:
        1px dashed
        rgba(195, 139, 36, .2);

    border-radius:
        48% 52% 60% 40%
        / 42% 52% 48% 58%;

    animation:
        mapDecorationRotate
        18s linear infinite;
}


@keyframes mapDecorationRotate {

    to {
        transform:
            rotate(360deg);
    }
}


.map-card {

    position: relative;

    z-index: 2;

    overflow: hidden;

    border:
        1px solid
        rgba(195, 139, 36, .18);

    border-radius:
        28px;

    background:
        rgba(255, 255, 255, .9);

    box-shadow:
        var(--shadow-lg);
}


/* =========================================================
   CABEÇALHO DO MAPA
========================================================= */

.map-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        20px;
}


.map-card-top > div:first-child {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.map-label {

    color:
        var(--pink);

    font-size: .63rem;

    font-weight: 700;

    letter-spacing: .11em;

    text-transform: uppercase;
}


.map-card-top strong {

    font-family:
        var(--font-display);

    font-size: 1.2rem;

    font-weight: 500;
}


.map-pin-icon {

    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color:
        var(--pink-dark);

    border-radius: 50%;

    background:
        var(--bg-pink);
}


.map-pin-icon svg {

    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   IFRAME
========================================================= */

.map-frame {

    position: relative;

    width: 100%;

    height: 390px;

    overflow: hidden;

    background:
        #f1ebe7;
}


.map-frame::after {

    content: '';

    position: absolute;

    inset: 0;

    pointer-events: none;

    box-shadow:
        inset 0 0 0 1px
        rgba(255, 255, 255, .25);
}


.map-frame iframe {

    display: block;

    width: 100%;
    height: 100%;

    border: 0;

    filter:
        saturate(.85)
        contrast(.95);
}


/* =========================================================
   RODAPÉ MAPA
========================================================= */

.map-footer {

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        17px 20px;
}


.map-footer-marker {

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    color:
        var(--gold-dark);

    background:
        rgba(195, 139, 36, .10);

    animation:
        locationStarPulse
        2.5s ease-in-out infinite;
}


@keyframes locationStarPulse {

    0%,
    100% {
        transform:
            rotate(0deg)
            scale(1);
    }

    50% {
        transform:
            rotate(15deg)
            scale(1.12);
    }
}


.map-footer p {

    margin: 0;

    color:
        var(--text-soft);

    font-size: .76rem;

    line-height: 1.5;
}


.map-footer strong {
    color: var(--text);
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 700px) {

    .location-info {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .map-frame {
        height: 460px;
    }

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1024px) {

    .location-grid {

        grid-template-columns:
            .85fr 1.15fr;

        gap: 80px;
    }


    .location-content h2 {

        font-size:
            clamp(
                3.4rem,
                5vw,
                5rem
            );
    }


    .location-info {

        grid-template-columns: 1fr;
    }


    .location-info-item {

        max-width: 470px;
    }


    .map-card {
        border-radius: 34px;
    }


    .map-card-top {

        padding:
            24px 26px;
    }


    .map-frame {
        height: 520px;
    }


    .map-footer {

        padding:
            20px 26px;
    }

}