@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");



body {
    /* background-color: #2e2e30; */
    background-color: white;
    overflow-x: hidden;
}

#navbarNav ul {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #b8860b, #ffd700, #daa520, #ffd700, #b8860b);
  border-image-slice: 1;
}

#navbarNav li a{
    color: #3b2713;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: animarTexto 6s ease infinite;
    text-decoration: none;
}

#navbarNav li a:hover{
    color: white;
}

@keyframes animarTexto {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.navbar {
    z-index: 3;
}

.color-primary {
    background-color: #dccfcb;
}

.zi {
    z-index: 2;
    width: 100%;
}

#div_header {
    height: 180px;
}

#header-logo {
    width: auto;
    height: 180px;
    transition: all 0.3s ease;
    animation: header-logo 2s ease;
}

@keyframes header-logo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#flor_l {
    width: 250px;
    height: 240px;
    left: 0;
    background-image: linear-gradient(to left, rgba(220,207,203, 1) 0%, rgba(220,207,203, 0) 70%, rgba(220,207,203, 0) 95%), url('img/flor_l.jpg');
    background-size: cover;
    z-index: 1;
    transition: all 0.3s ease;
    animation: flor_l 2s ease;
}

#flor_r {
    width: 210px;
    height: 240px;
    right: 0;
    background-image: linear-gradient(to right, rgba(220,207,203, 1) 0%, rgba(220,207,203, 0) 70%, rgba(220,207,203, 0) 90%), url('img/flor_r.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: all 0.3s ease;
    animation: flor_r 2s ease;
}

@keyframes flor_l {
    0% {
    left: -200px;
    }
    25% {
    left: -200px;
    }
    100% {
    left: 0px;
    }
}

@keyframes flor_r {
  0% {
    right: -200px;
  }
  25% {
    right: -200px;
  }
  100% {
    right: 0px;
  }
}

#header_image {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to right, rgba(147,113,81, 0.3) 0%, rgba(206,186,158, 0.3) 100%), url('img/main1.jpg');
    background-size: cover;
    background-position: center 15%;
}

.h1-em {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-transform: uppercase;
    max-width: 900px;
    font-size: 2.2rem;
}

#header {
    z-index: 1000;
}

h2 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-transform: uppercase;
}

.p-nav {
    padding: 6px;
}

p {
    font-family: "Montserrat", sans-serif;
}

#whats{
    position: fixed; bottom: 30px; right: 30px; z-index: 9999;
}

.a_phone {
    display: none;
}
.a_desktop {
    display: block;
}

@media (max-width: 768px) {
    .a_phone {
        display: block;
    }
    .a_desktop {
        display: none;
    }
}

@media (max-width: 992px) {
    #navbarNav ul {
        border-top: 0px solid transparent;
    }
}