@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;400;700&display=swap');

:root{
  --theme-color-light: #f2c40c;
  --theme-color-dark: black;
  --theme-color-empresas: #85bfcb;
  --theme-color-audiovisual: #bb2236;
  --theme-color-musica: #edb52b;
  --theme-color-cultura: #dc98af;
  --fontsize-base: 16px;
  --theme-transition-dur: 0.3s;
}

/*
@media screen and (max-width:480px){
  :root {
    --fontsize-base: 18px;
  }
}
*/

::-webkit-scrollbar {
  width: 6px;
  height: 1px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
  background: #666; 
}

::-webkit-scrollbar-thumb:hover {
  background: #777; 
}

html {  
  font-size: var(--fontsize-base);  
}

body *:not(i) {
  font-family: 'Nunito Sans';
}

.flex-v-center {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.img-fit {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
  .img-fit.fit-cover {
    object-fit: cover;
  }
  
.img-fit.position-right{
  object-position: right;
}
.img-fit.position-left{
  object-position: left;
}
@media screen and (max-width:767px) {
  .img-fit {
    object-fit: cover;
  }
}

.theme-c-light {
  color: var(--theme-color-light);
}
.theme-c-dark {
  color: var(--theme-color-dark);
}


#home-title {
  font-family: 'CabernetRegularJF';
  font-size: 5vw;
  line-height: 1;
}
#home-title > span {
  font-family: 'CabernetSwashJF';
  font-size: 7vw;
  line-height: inherit;
}
@media screen and (max-width:767px) {
  #home-title {    
    font-size: 12vw;
  }
  #home-title > span {
    font-size: 14vw;
  }
}

.social-icons > a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-right: 1rem;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--theme-color-dark);
  background: white;
  width: 4rem;
  height: 4rem;
  text-decoration: none;
  /* box-shadow: 0 5px 10px -5px rgba(0,0,0,0.5); */
  box-shadow: 0 2px 10px -3px rgba(0,0,0,0.5);
  transition-duration: var(--theme-transition-dur);
}
  .social-icons > a:hover {
    color: white;
    background: var(--theme-color-dark);
  }
@media screen and (max-width: 767px) {
  .social-icons.fixed {
    position: fixed;
    width: 100vw;
    bottom: 2rem;
    left: 0;
    text-align: center;
    z-index: 2;
  }  
    .social-icons > a {
      margin: 0 5px;
      width: 3rem;
      height: 3rem;
      font-size: 1.5rem;
    }
}

footer {
  background: black;
  color: white;
}
  footer ul {
    padding: 0;
    list-style: none;
  }
    footer ul > li > a {
      color: white;
      text-decoration: none;
      line-height: 1.2;
    }
      footer ul > li > a:hover {
        color: white;
        text-decoration: underline;        
      }
      footer ul > li > i {
        margin: 0.8rem;
      }

@media screen and (max-width:1999px){
  footer ul > li > a {
   font-size: 1rem;
  }
}

header {
  padding: 0.5rem;
  background: white;
  box-shadow: 0 5px 12px -8px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}
  header > div > div > div { 
    display: flex;
    justify-content: center;
    align-items: center;      
  }
  nav#main-menu {
    width: 100%;
  }
    nav#main-menu ul {
      padding: 0;
      margin: 0;
      list-style: none;
      text-align: right;    
    }
      nav#main-menu ul > li {
        display: inline-block;
        position: relative;
        margin: 0 1.8vw;
      }
      nav#main-menu ul > li > a {    
        display: flex;
        justify-content: center;
        align-items: center;        
        color: black;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 1rem;        
        font-weight: 600;;
      }
      nav#main-menu ul > li > a:hover {
        text-decoration: underline;
      }

@media screen and (max-width: 767px) {  
  nav#main-menu .backdrop-blur {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    top: 0;
    left: 0;    
  }
  nav#main-menu {
    visibility: hidden;
    transform: translateX(100%);
    position: fixed !important;
    text-align: right;
    width: 80vw;
    right: 0;
    top: 0;
    height: 100%;
    background: rgba(255,255,255,0.9);
    z-index: 10;
    padding: 1rem;
    box-shadow: -5px 0 10px -6px rgba(0,0,0,0.25);    
    transition-duration: var(--theme-transition-dur);
  }
    nav#main-menu.open {
      visibility: visible;
      transform: translateX(0);
    }
    nav#main-menu ul > li {
      display: block;
      margin-bottom: 1rem;
    }
      nav#main-menu ul > li > a {
        justify-content: flex-end;
      }

  nav#main-menu > div:nth-child(2) {
    position: relative;
    z-index: 1;
  }
}

#close-menu,
#toggle-menu {
  background: none;
  color: black;
  border: none;
  font-size: 2rem;
  margin-bottom: 1rem;
}
#toggle-menu {
  float: right;
}

#logo-container {
  display: block;
}     
#logo > img {
  width: 90px;
  aspect-ratio: 2 / 1;
}
@media screen and (max-width:767px) {
  header {
    box-shadow: none;
    position: sticky;
    top: -1px;
    z-index: 10;
  }
    header > div {
      height: 3rem;
    }
  #logo > img {
    width: 60px;
    aspect-ratio: 2 / 1;
    position: relative;
    top: 6px;
  }
}

@media screen and (min-width:768px) {
  a.highlighted {
    color: white;
    background: black;
    line-height: 1;
    padding: 0.5rem 1rem;
    color: white !important;
    border-radius: 20px;
  }  
}

a.button {
  display: block;
  color: var(--theme-color-dark);
  padding: 0.5rem 1rem;
  background: white;
  text-decoration: none;
  border-radius: 2rem;
  text-align: center;
  transition-duration: var(--theme-transition-dur);
}
  a.button:hover {
    color: white;
    background: var(--theme-color-dark);
}

a.button-alt {
  display: block;
  color: white;
  padding: 0.5rem 1rem;
  background: black;
  text-decoration: none;
  border-radius: 2rem;
  text-align: center;
  transition-duration: var(--theme-transition-dur);
  border: 2px solid black;
}
  a.button-alt:hover {
    color: black;
    background: white;    
  }

/* Simple slider Mobile*/
@media screen and (max-width: 767px) {
  .slider-mobile {
    overflow-x: auto !important;
    display: block !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
    .slider-mobile > div,
    .slider-mobile > li {
      display: inline-block !important;
      width: initial;
      padding: 0;
      margin-right: calc( var(--bs-gutter-x) / 2 );
    }
      .slider-mobile > div:last-child,
      .slider-mobile > li:last-child {
        margin-right: 0;
      }
}

#contact input,
#contact textarea,
#purchase input,
#purchase textarea {
  border-radius: 1.4rem;
  border: none;
  padding: 0.8rem;
  box-shadow: inset 0 0 10px -5px rgba(0,0,0,0.5);  
}
#contact label,
#purchase label {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  color: black;
  font-weight: 600;
}
#contact .form-check label,
#purchase .form-check label {
  margin: 0.3rem;
  margin-left: 0.6rem;
  display: inline-block;
  position: relative;
  font-size: 0.9rem;
  width: calc(100% - 2rem);
}
span.error {
  font-size: 0.9rem;
  color: red;
}


/* ALERT MODAL */
#alert-modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;  
  z-index: 999;
  background: rgba(0,0,0,0.25);
}
  #alert-modal > div {
    min-width: 300px;    
    max-width: 100%;
    max-height: 100%;
    margin: 10px;
    padding: 15px;
    background: white;
    box-shadow: 5px 5px 10px -6px rgba(0,0,0,0.25);
    border-radius: 1.2rem;
  }
  #alert-modal .message {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  #alert-modal a {
    max-width: 50%;
    min-width: 25%;
    margin: 0 auto;
    display: inline-block;
  }


nav#main-menu ul > li > .megamenu {
  display: none;
  position: absolute;
  top: 2.8rem;
  right: -0.5rem;
  background: #f8f8f8;
  box-shadow: 0 10px 10px -5px rgba(0,0,0,0.25);
  border-radius: 0 0 8px 8px;
  padding: 1rem 0;
  width: 800px;
  max-width: 100vw;
}
  nav#main-menu ul > li > .megamenu .col-12 {
    border-left: 1px dashed #c6c6c6;
  }
  nav#main-menu ul > li > .megamenu ul {
    text-align: left;
    padding-left: 1rem;
  }
    nav#main-menu ul > li > .megamenu ul > li {
      margin: 0 0 0.2rem 0;
      display: block;      
    }
      nav#main-menu ul > li > .megamenu ul > li > a {
        text-transform: initial;
        font-weight: 400;
        font-size: 1.1rem;
        justify-content: flex-start;
      }

nav#main-menu ul > li > .megamenu .megamenu-title {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2rem;
  padding-left: 1rem;
}

@media screen and (max-width: 767px) {
  nav#main-menu ul > li > .megamenu .megamenu-title {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding-left: initial;
  }
  nav#main-menu ul > li > .megamenu::-webkit-scrollbar {
    width: 2px;
    height: 1px;
  }
  nav#main-menu ul > li > .megamenu {
    display: block;
    width: 100%;
    background: none;
    box-shadow: none;
    max-height: 300px;
    overflow-y: auto;
    margin-top: -1rem;
    padding-top: 0;
  }
    nav#main-menu ul > li > .megamenu ul {
      text-align: right;
      padding-left: initial;
    }
      nav#main-menu ul > li > .megamenu ul > li {
        margin: 0;
        border-bottom: 1px solid #dadada;
        padding: 0.25rem 0;
      }
        nav#main-menu ul > li > .megamenu ul > li > a {
          justify-content: flex-end;
          font-size: 1rem;
        }

  nav#main-menu ul > li > .megamenu .col-12 {
    border-left: none;
  }
}