@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    
    background: #fff;
    overflow-x: hidden;
}




.header {
    position: fixed;
    width: 100%;
    height: 100px;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.nav-left {
    position: absolute;
    left: 500px;
    top: 40px;
    font-weight: bold;
}

.nav-left a {
    margin-right: 30px;
    text-decoration: none;
    color: #c2a76d;
    font-size: 13px;
    letter-spacing: 2px;
    
}


.nav-right {
    position: absolute;
    right: 500px;
    top: 40px;
    font-weight: bold;
}

.nav-right a {
    margin-left: 30px;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    letter-spacing: 2px;
}

.nav-left a,
.nav-right a {
    color: black;
}

.active {
    color: #c2a76d;
}


.logo-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 140px;
    height: 120px;
    
    text-align: center;
     margin-top: -25px;
    
}





.logo {
    margin-top: 40px;
    
    
}


.hero {
    position: relative;
    width: 90%;
    height: 80vh;
    margin: 120px auto 0 auto;
    background: url("img/header-bg.png") center/cover no-repeat;
    background-size: 88%;
    margin-top: 100px;
}


.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    
}


.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-family: "Playfair Display", serif;
}

.hero-text h1 {
    font-size: 70px;
    letter-spacing: 10px;
    margin: 0;
}

.line {
    width: 450px;
    height: 1px;
    background: white;
    margin: 40px auto;
}

.hero-text p {
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: bold;
}

.sub-text{
    font-size: 30px;
}


.side-left {
    position: fixed;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.side-left img {
    width: 120px;
    
}

.side-right {
    position: fixed;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.side-right img {
    width: 120px;
}

hr{border: 0; 
border-bottom: solid 1px white;
margin: 16px 0;}

#roof span {
font-size: 18px;
text-transform: uppercase; 
color: white;   
font-weight: 400;
line-height: 1.7;
padding: 8px 0;}

.about {
    display: flex;
    width: 100%;
}

.left {
    width: 50%;
    background: white;
    margin-top: 90px;
    padding: 80px 90px;
    margin-left: 15%;
}

.titulo-completo {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.descricao {
    max-width: 450px;
    color: #777;
    font-size: 20px;
    line-height: 1.6; 
}

.botao-menu{
color: white;
text-decoration: none;
background-color: #bb9c71;
border: solid 25px #bb9c71;
margin-top: 40px;
display: inline-block;
}

.right {
    width: 37%;
    padding: 100px 100px;
    background: #f7ede1c0 80%;
    margin-right: 15%;
}

.right h4 {
    font-family:'Playfair Display', serif;
    text-align: center;
    font-style: italic;
    margin: 40px 0 20px;
    font-size: 30px;
    line-height: 3.3;
}

.item {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 10px 0;
}

.desc {
    text-align: center;
    color: #777;
    font-size: 15px;
    margin-bottom: 20px;
}

.galeria{
    position:relative;
    left: 25%;
    margin-top: -100px;
}

.colesquerda img, .coldireita img {
    margin: 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    margin-left: 30px;
    text-decoration: none;
    color: black;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    padding-bottom: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 150px;
    background: white;
    display: none;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
    font-size: 12px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.dropdown > a::after {
    content: "";
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid black;
    vertical-align: middle;
}




