@font-face {
    font-family: 'Neue Machina';
    src: url('../fonts/NeueMachina-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('../fonts/NeueMachina-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('../fonts/NeueMachina-Ultrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stolzl';
    src: url('../fonts/Stolzl-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stolzl';
    src: url('../fonts/Stolzl-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stolzl';
    src: url('../fonts/Stolzl-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #fff;
    --color-surface: #ffffff;
    --color-text: #171717;
    --color-muted: #666666;
    --color-primary: #111111;
    --color-border: #e6e0d5;
    --container: 1120px;

    --font-heading: 'Neue Machina', Arial, Helvetica, sans-serif;
    --font-body: 'Stolzl', Arial, Helvetica, sans-serif;
}


html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
}

h1,
h2,
h3,
.site-logo,
.button-primary,
.lead-form button {
    font-family: var(--font-heading);
}


/* ========== Hero ==========  */

.hero-intro {
    position: relative;
    height: clamp(180px, 40vw, 230px);
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-intro__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
}

.hero-intro__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 38px 14px;
}

.hero-intro__logo {
    display: block;
    width: 118px;
    height: auto;
}

.hero-intro__scroll {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    animation: scrollHint 1.6s ease-in-out infinite;
}

.hero-intro__scroll img {
    display: block;
    width: 25px;
    height: auto;
}

.hero-intro__scroll img + img {
    margin-top: -5px;
}

@keyframes scrollHint {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }

    35% {
        transform: translateY(7px);
        opacity: 1;
    }

    70% {
        transform: translateY(0);
        opacity: 0.9;
    }

    100% {
        transform: translateY(0);
        opacity: 0.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-intro__scroll {
        animation: none;
    }
}
/* ========== Intro Section ========== */

.intro-section {
    padding: 24px 38px 32px;
    background: #fff;
    color: #202020;
}

.intro-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.intro-section__grid h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.intro-section__grid p {
    margin: 4px 0 0;
    font-family: var(--font-body);
    font-size: 9.5px;
    line-height: 1.35;
    font-weight: 400;
}

.intro-section__divider {
    margin: 26px 0 36px;
    border-top: 1px dashed rgba(32, 32, 32, 0.45);
}

.intro-section__brand {
    display: flex;
    justify-content: center;
}

.intro-section__brand img {
    display: block;
    width: 225px;
    max-width: 78%;
    height: auto;
}


/* ========== O que é Círculo Munó ========== */

.about-circle {
    padding: 26px 38px 42px;
    background: #FFF;
    color: #202020;
}

.about-circle__container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.about-circle h2 {
    margin: 0 0 24px;
    font-family: var(--font-heading);
    font-size: 23px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: 0.11em;
    text-align: center;
}

.about-circle p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 10.5px;
    line-height: 1.38;
    font-weight: 400;
    text-align: justify;
    text-align-last: left;
}

/* ========== Formulário ========== */
.lead-message {
    margin: 0 0 16px;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.3;
}

.lead-message--success {
    background: rgba(52, 118, 84, 0.12);
    color: #347654;
}

.lead-message--error {
    background: rgba(176, 0, 32, 0.1);
    color: #b00020;
}

.lead-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.lead-section {
    width: 100%;
    padding: 34px 20px 72px;
    background: #ffffff;
    overflow: hidden;
}

.lead-section__card {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 28px 25px 60px;
    background: #e9e3d4;
    border-radius: 10px;
    font-size:14px;
}

.lead-form {
    width: 100%;
    display: grid;
    gap: 13px;
}

.form-field {
    width: 100%;
    display: grid;
    gap: 4px;
}

.lead-form input {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 47px;
    padding: 0 14px;
    border: 0;
    border-radius: 9px;
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: #272727;
}

.lead-form button {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 38px;
    margin-top: 32px;
    border: 0;
    border-radius: 8px;
    background: #347654;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

/* ========== Footer ========== */

.site-footer {
    width: 100%;
    padding: 32px 20px;
    background: #ffffff;
    color: #202020;
    overflow: hidden;
}

.site-footer .container {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
}

.site-footer p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.35;
}

/* ========== Segunda Dobra ========== */

.atelier-section {
    width: 100%;
    background: #ffffff;
    color: #202020;
    overflow: hidden;
}

.atelier-section__image {
    width: 100%;
}

.atelier-section__image img {
    display: block;
    width: 100%;
    height: auto;
}

.atelier-section__content {
    padding: 38px 48px 48px;
}

.atelier-section h2 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.atelier-section p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 400;
    color: #202020;
}

.atelier-section__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 46px;
    height: 48px;
    margin: 64px auto 0;
    padding: 0;
    overflow: visible;
}

.atelier-section__scroll img {
    display: block;
    width: 32px;
    height: auto;
    will-change: transform, opacity;
    animation: scrollHint 1.6s ease-in-out infinite;

}

.atelier-section__scroll img + img {
    margin-top: -6px;
}


/* ========== Última Dobra ========== */

.novo-section {
    width: 100%;
    background: #ffffff;
    color: #202020;
    overflow: hidden;
}

.novo-section__visual {
    position: relative;
    width: 100%;
    height: 350px;
    padding: 0 0 0 15px;
    background: #ffffff;
}

.novo-section__bag {
    position: relative;
    z-index: 1;
    display: block;
    width: 151px;
    height: 290px;
    object-fit: cover;
}

.novo-section__pattern {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 170px;
    width: 73px;
    height: 290px;
    object-fit: cover;
}

.novo-section__title {
    position: absolute;
    z-index: 2;
    top: 78px;
    left: 129px;
    width: calc(100% - 129px);
    min-height: 66px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: #ffffff;
}

.novo-section__title h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.24em;
    white-space: nowrap;
}

.novo-section__stripe {
    width: 100%;
    margin-bottom: 25px;
}

.novo-section__stripe img {
    display: block;
    width: 100%;
    height: auto;
}

.novo-section__content {
    padding: 20px 36px 44px;
    background: #ffffff;
}

.novo-section__description {
    max-width: 330px;
    margin: 0 auto 22px;
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
}

.novo-section__info {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.novo-section__info-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
}

.novo-section__info-item img {
    display: block;
    width: 22px;
    height: auto;
    margin-top: 1px;
}

.novo-section__info-item p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 9.5px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.12em;
}

@media (max-width: 390px) {
    .novo-section__visual {
        height: 330px;
        padding-left: 14px;
    }

    .novo-section__bag {
        width: 132px;
        height: 250px;
    }

    .novo-section__pattern {
        left: 149px;
        width: 68px;
        height: 250px;
    }

    .novo-section__title {
        top: 78px;
        left: 121px;
        width: calc(100% - 121px);
        padding: 0 15px;
    }

    .novo-section__title h2 {
        font-size: 29px;
        letter-spacing: 0.22em;
    }
}

