* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================
NAVBAR
========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
    z-index: 1000;
    background: transparent;
}

.logo {
    font-size: 34px;
    color: white;
    letter-spacing: 6px;
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    display: inline-block;
}

.menu-desktop {
    display: flex;
    list-style: none;
    gap: 45px;
}

.menu-desktop a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: .3s;
}

.menu-desktop a:hover {
    opacity: .6;
}


/* ==========================
HERO
========================== */

.hero {
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero picture{
    position:absolute;
    inset:0;
}

.hero picture img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    filter:grayscale(100%);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: grayscale(100%);
}

/* fallback */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    filter: grayscale(100%);
}

.hero img {
    filter: grayscale(100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 90%;
}

.hero-content h1 {
    font-size: 82px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 10px;
}

.hero-content p {
    margin-top: 25px;
    font-size: 18px;
    max-width: 650px;
    margin-inline: auto;
    line-height: 1.8;
}


/* ==========================
MENU MOBILE
========================== */

.hamburguer {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburguer span {
    width: 28px;
    height: 2px;
    background: white;
}

.menu-mobile {
    position: fixed;
    right: -200px;
    top: 0;
    width: 200px;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding-left: 40px;
    transition: .4s;
    z-index: 999;
}

.menu-mobile a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.menu-mobile.active {
    right: 0;
}


/* ==========================
NAVBAR AO ROLAR
========================== */

.navbar.scrolled {
    background: #fff;
    transition: .3s;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
}

.navbar.scrolled .logo {
    color: #111;
}

.navbar.scrolled .menu-desktop a {
    color: #111;
}

.navbar.scrolled .hamburguer span {
    background: #111;
}

.slogan {
    width: min(900px, 90%);
    margin: 120px auto;
    text-align: center;
}

.slogan span {
    color: #b99a6b;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
}

.slogan h2 {
    margin-top: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 1.35;
}

.galeria {
    width: min(1400px, 90%);
    margin: 120px auto;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 25px;
}

.grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
    cursor: pointer;
}

.grid img:hover {
    transform: scale(1.03);
}

/* direita superior */

.grid img:nth-child(1) {
    grid-column: 3;
    grid-row: 1;
}

/* centro */

.grid img:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* esquerda superior */

.grid img:nth-child(3) {
    grid-column: 1;
    grid-row: 1;
}

/* direita inferior */

.grid img:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

/* esquerda inferior */

.grid img:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
}

.carousel {
    display: none;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform .45s ease-in-out;
    will-change: transform;
}

.carousel img {
    min-width: 100%;
    height: 420px;
    object-fit: cover;
    user-select:none;
    -webkit-user-drag:none;
    touch-action:pan-y;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    z-index: 20;
    transition: .3s;
}

.prev:hover,
.next:hover {
    color: #b18c57;
    transform: translateY(-50%) scale(1.15);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}


/* ==========================
SOBRE
========================== */

.sobre {
    width: min(1300px, 90%);
    margin: 180px auto;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: center;
}

.sobre-texto span {
    color: #b18c57;
    letter-spacing: 3px;
    font-size: 13px;
}

.sobre-texto h2 {
    margin: 20px 0;
    font-size: 52px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

.sobre-texto p {
    color: #666;
    line-height: 2;
    font-size: 17px;
}

.sobre-texto a {
    display: inline-block;
    margin-top: 40px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: .3s;
}

.sobre-texto a:hover {
    /* transform: translateX(10px); */
    transform: scale(1.13);
    
}

.sobre-foto {
    overflow: hidden;
}

.sobre-foto img {
    width: 100%;
    display: block;
    transition: .5s;
}

.social-icons {
    display: flex;
    gap: 30px;
    font-size: 30px;
}


/*============================
TESTEMUNHOS
=============================*/

.testemunhos {
    width: min(1400px, 90%);
    margin: 180px auto;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: #b18c57;
    letter-spacing: 3px;
    font-size: 13px;
}

.section-title h2 {
    margin-top: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 500;
}

.testemunhos-grid {
    display: grid;
    grid-template-columns: 320px 1fr 320px 1fr;
    gap: 40px;
    align-items: center;
}

.testemunhos-grid img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.testemunho {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testemunho h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    margin-bottom: 20px;
}

.testemunho p {
    color: #666;
    line-height: 2;
}

.testemunho a {
    margin-top: 30px;
    text-decoration: none;
    color: #111;
    transition: .3s;
}

.testemunho a:hover {
    color: #b18c57;
    transform: translateX(8px);
}


/* ==========================
CONTATO
========================== */

.contato {
    width: min(800px, 90%);
    margin: 180px auto;
}

.contato-titulo {
    text-align: center;
    margin-bottom: 60px;
}

.contato-titulo span {
    color: #b18c57;
    letter-spacing: 3px;
    font-size: 13px;
}

.contato-titulo h2 {
    margin: 20px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 500;
}

.contato-titulo p {
    color: #666;
}

.form-contato {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-contato input,
.form-contato textarea {
    border: none;
    border-bottom: 1px solid #d9d9d9;
    padding: 15px 0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background: none;
    outline: none;
    transition: .3s;
}

.form-contato input:focus,
.form-contato textarea:focus {
    border-color: #b18c57;
}

.form-contato textarea {
    resize: none;
}

.form-contato button {
    width: 220px;
    padding: 18px;
    background: #111;
    color: white;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
    transition: .3s;
}

.form-contato button:hover {
    background: #b18c57;
}

.toast{
    position:fixed;
    right:30px;
    bottom:30px;
    width:330px;
    padding:22px;
    background:#fff;
    border-left:5px solid #b18c57;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    display:flex;
    align-items:center;
    gap:18px;
    opacity:0;
    transform:translateY(30px);
    pointer-events:none;
    transition:.35s;
    z-index:9999;
}

.toast.show{
    opacity:1;
    transform:translateY(0);
}

.toast i{
    font-size:34px;
    color:#b18c57;
}

.toast h4{
    margin-bottom:5px;
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
}

.toast p{
    color:#666;
}

/* ==========================
FOOTER
========================== */

footer {
    margin-top: 180px;
    background: #fafafa;
    padding: 80px 8% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    letter-spacing: 6px;
}

.footer-logo-link {
    color: inherit;
    text-decoration: none;
}

.footer-logo-link:hover {
    text-decoration: none;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.footer-menu a {
    color: #111;
    text-decoration: none;
}

.footer-menu a:hover {
    color: #b18c57;
}

.footer-contato {
    text-align: right;
}

.footer-contato p {
    margin-bottom: 10px;
    color: #555;
}

.footer-icons {
    margin-top: 20px;
}

.footer-icons a {
    color: #111;
    margin-left: 15px;
    font-size: 22px;
    transition: .3s;
}

.footer-icons a:hover {
    color: #b18c57;
}

.copyright {
    margin-top: 70px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.copyright a {
    color: #b18c57;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 1200;
    transition: .3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #b18c57;
    transform: translateY(-4px);
}


/* ==========================
RESPONSIVO
========================== */

@media(max-width:900px) {

    .menu-desktop {
        display: none;
    }

    .hamburguer {
        display: flex;
    }

    .logo {
        font-size: 30px;
    }

    .hero-content h1 {
        font-size: 55px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .slogan {
        margin: 80px auto;
    }

    .slogan h2 {
        font-size: 34px;
    }

    .galeria {
        margin: 80px auto;
    }

    .grid {
        display: none;
    }

    .carousel {
        display: block;
    }

    .sobre {
        margin: 100px auto;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sobre-texto {
        order: 1;
    }

    .sobre-foto {
        order: 2;
    }

    .sobre-texto h2 {
        font-size: 38px;
        text-align: center;
    }

    .sobre-texto p {
        font-size: 16px;
        text-align: justify;
    }

    .contato {
        margin: 100px auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        order: 1;
    }

    .footer-menu {
        order: 2;
        flex-direction: column;
        gap: 20px;
    }

    .footer-contato {
        order: 3;
        text-align: center;
    }

    .footer-icons a {
        margin: 0 10px;
    }

    .contato-titulo h2 {
        font-size: 38px;
    }

    .form-contato button {
        width: 100%;
    }

    .testemunhos {
        width: 90%;
        margin: 100px auto;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .testemunhos-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .testemunhos-grid img {
        width: 100%;
        height: 350px;
    }

    .testemunho {
        text-align: center;
    }

    .testemunho h3 {
        font-size: 30px;
    }

    .testemunho a {
        align-self: center;
    }
}