@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');


:root {
    --creme: #fff7e6;
    --creme-claro: #fffaf2;
    --creme-escuro: #f7e9cf;

    --marrom: #815238;
    --marrom-claro: #9b694a;

    --dourado: #d3a24d;

    --texto: #765341;
    --branco: #ffffff;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Montserrat", sans-serif;
    background: var(--creme-claro);
    color: var(--marrom);
}


.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}


/* ===========================
   HEADER
=========================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 250, 242, 0.96);

    border-bottom:
        1px solid rgba(129, 82, 56, 0.10);

    backdrop-filter: blur(10px);
}


.header-content {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.logo-link {
    display: flex;
    align-items: center;
}


.logo {
    width: 125px;
    height: auto;

    display: block;
}


nav {
    display: flex;
    align-items: center;

    gap: 35px;
}


nav a {
    color: var(--marrom);

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    position: relative;

    transition: 0.3s;
}


nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--dourado);

    transition: 0.3s;
}


nav a:hover {
    color: var(--dourado);
}


nav a:hover::after {
    width: 100%;
}


.instagram-link {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(129, 82, 56, 0.25);

    border-radius: 50%;

    color: var(--marrom);

    text-decoration: none;

    transition: 0.3s;
}


.instagram-link:hover {
    color: white;

    background: var(--marrom);

    border-color: var(--marrom);

    transform: translateY(-2px);
}


/* ===========================
   HERO
=========================== */

.hero {
    min-height: 610px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(211, 162, 77, 0.15),
            transparent 35%
        ),
        var(--creme);
}


.hero-content {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 80px;

    padding-top: 70px;
    padding-bottom: 70px;
}


.mini-title {
    display: inline-block;

    color: var(--dourado);

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 12px;
    font-weight: 600;
}


.hero h1 {
    max-width: 700px;

    margin-top: 18px;
    margin-bottom: 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: 67px;
    line-height: 0.98;

    font-weight: 600;

    color: var(--marrom);
}


.hero h1 span {
    display: block;

    color: var(--dourado);
}


.hero-text > p {
    max-width: 570px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--texto);
}


.hero-buttons {
    margin-top: 32px;
}


.btn-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 27px;

    border-radius: 30px;

    background: var(--marrom);

    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}


.btn-primary:hover {
    background: var(--marrom-claro);

    transform: translateY(-2px);
}


/* ===========================
   CARD HERO
=========================== */

.hero-card {
    max-width: 430px;

    justify-self: end;

    background: rgba(255, 255, 255, 0.85);

    border:
        1px solid rgba(129, 82, 56, 0.08);

    border-radius: 32px;

    padding: 44px;

    box-shadow:
        0 25px 70px rgba(129, 82, 56, 0.10);

    text-align: center;
}


.heart {
    width: 76px;
    height: 76px;

    margin:
        0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--creme-escuro);

    color: var(--dourado);

    font-size: 42px;
}


.hero-card h2 {
    margin-bottom: 12px;

    font-family: "Cormorant Garamond", serif;

    font-size: 34px;

    color: var(--marrom);
}


.hero-card p {
    color: var(--texto);

    line-height: 1.7;

    font-size: 14px;
}


.features {
    margin-top: 26px;

    display: flex;
    flex-direction: column;

    gap: 11px;

    text-align: left;

    font-size: 13px;

    color: var(--marrom);
}


/* ===========================
   SOBRE
=========================== */

.about {
    padding: 95px 0;

    background: white;
}


.section-title {
    max-width: 680px;

    margin: auto;

    text-align: center;
}


.section-title > span {
    color: var(--dourado);

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 12px;
}


.section-title h2 {
    margin: 14px 0 14px;

    font-family: "Cormorant Garamond", serif;

    font-size: 48px;
    line-height: 1.05;

    color: var(--marrom);
}


.section-title p {
    color: var(--texto);

    line-height: 1.8;

    font-size: 15px;
}


.cards {
    margin-top: 55px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.card {
    padding: 34px 30px;

    border-radius: 24px;

    background: var(--creme-claro);

    text-align: center;

    border:
        1px solid rgba(129, 82, 56, 0.05);

    transition: 0.3s;
}


.card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(129, 82, 56, 0.08);
}


.card-icon {
    margin-bottom: 17px;

    color: var(--dourado);

    font-size: 32px;
}


.card h3 {
    margin-bottom: 9px;

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

    color: var(--marrom);
}


.card p {
    color: var(--texto);

    font-size: 13px;
    line-height: 1.7;
}


/* ===========================
   ENCOMENDA
=========================== */

.order-section {
    padding: 85px 0;

    background: var(--creme-escuro);
}


.order-title {
    max-width: 600px;

    margin:
        0 auto 35px;

    text-align: center;
}


.order-title h2 {
    margin:
        13px 0 10px;

    font-family: "Cormorant Garamond", serif;

    font-size: 45px;
    line-height: 1.05;

    color: var(--marrom);
}


.order-title p {
    color: var(--texto);

    font-size: 14px;
    line-height: 1.7;
}


.order-form {
    width: 100%;

    max-width: 620px;

    margin: auto;

    padding: 30px;

    background: white;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(129, 82, 56, 0.09);
}


.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}


.form-group {
    margin-bottom: 14px;
}


label {
    display: block;

    margin-bottom: 7px;

    color: var(--marrom);

    font-size: 12px;

    font-weight: 600;
}


input,
select,
textarea {
    width: 100%;

    padding: 12px 13px;

    border:
        1px solid #e5d8c7;

    border-radius: 10px;

    background: #fffdf9;

    outline: none;

    color: var(--marrom);

    font-family: inherit;

    font-size: 13px;

    transition: 0.3s;
}


input::placeholder,
textarea::placeholder {
    color: #b6a294;
}


input:focus,
select:focus,
textarea:focus {
    border-color: var(--dourado);

    box-shadow:
        0 0 0 3px rgba(211, 162, 77, 0.10);
}


textarea {
    min-height: 90px;

    resize: vertical;
}


.btn-whatsapp {
    width: 100%;

    margin-top: 2px;

    padding: 13px;

    border: none;

    border-radius: 30px;

    background: var(--marrom);

    color: white;

    font-family: inherit;

    font-size: 14px;

    font-weight: 500;

    cursor: pointer;

    transition: 0.3s;
}


.btn-whatsapp:hover {
    background: var(--marrom-claro);

    transform: translateY(-2px);
}


/* ===========================
   INSTAGRAM
=========================== */

.instagram-section {
    padding: 65px 0;

    background: white;
}


.instagram-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.instagram-content h2 {
    margin:
        10px 0 5px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 38px;

    color: var(--marrom);
}


.instagram-content p {
    color: var(--texto);

    font-size: 14px;
}


.instagram-big {
    min-width: 230px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 16px 24px;

    border:
        1px solid rgba(129, 82, 56, 0.22);

    border-radius: 50px;

    color: var(--marrom);

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}


.instagram-big:hover {
    background: var(--marrom);

    color: white;

    border-color: var(--marrom);

    transform: translateY(-2px);
}


/* ===========================
   FOOTER
=========================== */

footer {
    padding: 45px 0;

    background: var(--marrom);

    color: white;
}


.footer-content {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 7px;

    text-align: center;
}


.footer-logo {
    width: 120px;

    margin-bottom: 8px;

    border-radius: 10px;
}


.footer-content p {
    font-family: "Cormorant Garamond", serif;

    font-size: 23px;
}


.footer-content span {
    opacity: 0.75;

    font-size: 12px;
}


/* ===========================
   RESPONSIVO
=========================== */

@media (max-width: 900px) {

    .hero-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .hero-card {
        max-width: 100%;

        justify-self: stretch;
    }


    .hero h1 {
        font-size: 55px;
    }


    .cards {
        grid-template-columns: 1fr;
    }


    .instagram-content {
        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 650px) {

    .container {
        width: 92%;
    }


    .header-content {
        min-height: 72px;

        gap: 15px;
    }


    .logo {
        width: 105px;
    }


    nav {
        display: none;
    }


    .instagram-link {
        width: 40px;
        height: 40px;
    }


    .hero {
        min-height: auto;
    }


    .hero-content {
        padding-top: 55px;
        padding-bottom: 55px;
    }


    .hero h1 {
        font-size: 45px;
    }


    .hero-text > p {
        font-size: 14px;
    }


    .hero-card {
        padding: 30px 24px;
    }


    .about {
        padding: 75px 0;
    }


    .section-title h2 {
        font-size: 39px;
    }


    .order-section {
        padding: 70px 0;
    }


    .order-title h2 {
        font-size: 38px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .order-form {
        padding: 24px 18px;
    }


    .instagram-section {
        padding: 55px 0;
    }


    .instagram-content h2 {
        font-size: 34px;
    }


    .instagram-big {
        width: 100%;

        min-width: auto;
    }

}