/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2023 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * COLORS
   */

  --background: rgb(249, 249, 249);
  --banner-background: rgb(252, 252, 252);
  --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  --on-background: rgb(4, 4, 4);
  --on-surface: rgb(240, 240, 240);  /*cor da fonte*/
  --on-surface-variant: rgb(1, 0, 0);
  --primary: hsla(349, 100%, 43%, 1);
  --primary-variant: hsla(349, 69%, 51%, 1);
  --rating-color: hsla(44, 100%, 49%, 1);
  --surface: rgb(255, 255, 255);
  --text-color: rgb(254, 254, 255);
  --white: hsla(0, 0%, 100%, 1);

  /* gradient colors */
  --banner-overlay: 90deg, hsl(220, 17%, 7%) 0%, hsla(220, 17%, 7%, 0.5) 100%;
  --bottom-overlay: 180deg, hsla(250, 13%, 11%, 0), hsla(250, 13%, 11%, 1);

  /**
   * TYPOGRAPHY
   */

  /* font family */
  --ff-dm-sans: 'DM Sans', sans-serif;

  /* font size */
  --fs-heading: 4rem;
  --fs-title-lg: 2.6rem;
  --fs-title: 2rem;
  --fs-body: 1.8rem;
  --fs-button: 1.5rem;
  --fs-label: 1.4rem;

  /* font weight */
  --weight-bold: 700;

  /**
   * SHADOW
   */

  --shadow-1: 0 1px 4px hsla(0, 0%, 0%, 0.75);
  --shadow-2: 0 2px 4px hsla(350, 100%, 43%, 0.3);

  /**
   * BORDER RADIUS
   */

  --radius-4: 4px;
  --radius-8: 8px;
  --radius-16: 16px;
  --radius-24: 24px;
  --radius-36: 36px;

  /**
   * TRANSITION
   */

  --transition-short: 250ms ease;
  --transition-long: 500ms ease;

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0; 
  box-sizing: border-box;
}

li { list-style: none; }

/*a,
img,


iframe,
button { display: block; }*/

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

input { width: 100%; }

button {
  text-align: left;
  cursor: pointer;
}

html {
  font-family: var(--ff-dm-sans);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: #5c3a21;
  color: var(--on-background);
  line-height: 1.5;
}

:focus-visible { outline-color: var(--primary-variant); }

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--banner-background);
  border-radius: var(--radius-8);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.search-wrapper::before,
.load-more::before {
  /*content: "";*/
  width: 20px;
  height: 20px;
  border: 3px solid var(--white);
  border-radius: var(--radius-24);
  border-inline-end-color: transparent;
  animation: loading 500ms linear infinite;
  display: none;
}

.search-wrapper::before {
  position: absolute;
  top: 14px;
  right: 12px;
}

.search-wrapper.searching::before { display: block; }

.load-more {
  background-color: var(--primary-variant);
  margin-inline: auto;
  margin-block: 36px 60px;
}

.load-more:is(:hover, :focus-visible) {
  --primary-variant: hsla(350, 67%, 39%, 1);
}

.load-more.loading::before { display: block; }

@keyframes loading {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}

.heading,
.title-large
 {
  font-weight: var(--weight-bold);
  letter-spacing: 0.5px;
}
.title {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-family: var(--ff-dm-sans);
}

.inep {
  color: inherit;
}


.heading {
  color: var(--white);
  font-size: var(--fs-heading);
  line-height: 1.2;
}

.title-large { font-size: var(--fs-title-lg); }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.meta-item {        /*----------- preço -------------*/
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
}

.btn {
  color: var(--white);
  font-size: var(--fs-button);
  font-weight: var(--weight-bold);
  max-width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
  padding-inline: 7px 18px;
  border-radius: 18px;
  transition: var(--transition-short);
  cursor: pointer;
  margin-bottom: 20px;

  animation: pulse-white 2s infinite; 
    position: relative; 
    z-index: 1;
}
@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(98, 58, 33, 1); 
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); 
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); 
    }
}
.btnLink {
  background-color: #5c3a21;
  color: var(--white);
  font-size: var(--fs-button);
  font-weight: var(--weight-bold);
  max-width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
  padding-inline: 7px 18px;
  border-radius: 18px;
  transition: var(--transition-short);
  cursor: pointer;
  margin-bottom: 20px;

  animation: pulse-white 2s infinite; 
    position: relative; 
    z-index: 1;
        background: linear-gradient(63deg, #5c3a21 0%, #a67c52 100%);

}
.btnFinal
{
    display: flex;
    justify-content: space-around;
    margin-bottom: 130px;
}

.hrBtnFinal_1
{
  margin-top: -65px;
}
.hrBtnFinal_2
{
}

.card-badge {
  background-color: var(--banner-background);
  color: var(--white); /*-----------------cor da letra do botão-----------*/
  font-size: var(--fs-label);
  font-weight: var(--weight-bold);
  padding-inline: 20px; /*----------------------Tamanho do botão-----------*/
  border-radius: var(--radius-8); /*----------------Borda do botão--------------*/

}

.poster-box {
  background-image: url('../images/poster-bg-icon.png');
  aspect-ratio: 2 / 3;
}

.poster-box,
.video-card {
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
  background-color: var(--banner-background);
  border-radius: var(--radius-16);
  overflow: hidden;
}

.title-wrapper { margin-block-end: 24px; }

.slider-list {
  margin-inline: -20px;
  overflow-x: overlay;
  padding-block-end: /*16px*/40px;
  margin-block-end: -16px;
}

.slider-list::-webkit-scrollbar-thumb { background-color: transparent; }

.slider-list:is(:hover, :focus-within)::-webkit-scrollbar-thumb {
  background-color: var(--banner-background);
}

.slider-list::-webkit-scrollbar-button { width: 20px; }

.slider-list .slider-inner {
  position: relative;
  display: flex;
  gap: 16px;
}

.slider-list .slider-inner::before,
.slider-list .slider-inner::after {
  content: "";
  min-width: 4px;
}

.separator {
  width: 4px;
  height: 4px;
  background-color: var(--white-alpha-20);
  border-radius: var(--radius-8);
}

.video-card {
  background-image: url('../images/video-bg-icon.png');
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  max-width: 500px;
  width: calc(100% - 40px);
}

/* .container::after, */
.search-modal::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: linear-gradient(var(--bottom-overlay));
  z-index: 1;
  pointer-events: none;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/



.header {
  position: relative;
  padding-block: 24px;
  padding-inline: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
/*background: linear-gradient(
  to top,
  #5c3a21 0%,
  #5c3a21 30%,
  #a67c52 30%,
  #a67c52 60%,
  #d2b48c 60%,
  #d2b48c 100%           );*/
  background: linear-gradient(to top, #5c3a21 0%, #a67c52 50%, #d2b48c 100%);
}

.header .logo { margin-inline-end: auto; 
 }

.search-btn,
.menu-btn { padding: 12px; }

.search-btn {
  background-color: rgb(40, 131, 250);
  border-radius: var(--radius-8);
}

.search-btn img {
  opacity: 0.5;
  transition: var(--transition-short);
}

.search-btn:is(:hover, :focus-visible) img { opacity: 1; }

.menu-btn.active .menu,
.menu-btn .close { display: none; }

.menu-btn .menu,
.menu-btn.active .close { display: block; }









.search-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  padding: 24px 16px;
  align-items: center;
  gap: 8px;
  z-index: 1;
  display: none;
}

.search-box.active { display: flex; }

.search-wrapper {
  position: relative;
  flex-grow: 1;
}

.search-field {
  background-color: rgb(40, 131, 250);
  height: 48px;
  line-height: 48px;
  padding-inline: 44px 16px;
  outline: none;
  border-radius: var(--radius-8);
  transition: var(--transition-short);
  font-size: 15px;
}

.search-field::placeholder { color: var(--on-surface-variant); }

.search-field:hover { box-shadow: 0 0 0 2px var(--on-surface-variant); }

.search-field:focus {
  box-shadow: 0 0 0 2px var(--on-surface);
  padding-inline-start: 16px;
}

.search-wrapper .leading-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  opacity: 0.5;
  transition: var(--transition-short);
}

.search-wrapper:focus-within .leading-icon { opacity: 0; }





/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  position: absolute;
  /*background-color: var(--background);*/
  background:
 linear-gradient(
  to bottom,
  #5c3a21 0%,
  #5c3a21 40%,
  #a67c52 30%,
  #a67c52 85%,
  #d2b48c 60%,
  #d2b48c 100%);

  top: 96px;
  bottom: 0;
  left: -340px;
  max-width: 340px;
  width: 100%;
  /*border-block-start: 75px solid #5c3a21;*/
  overflow-y: overlay;
  z-index: 4;
  visibility: hidden;
  transition: var(--transition-long);
}

.sidebar.active {
  transform: translateX(340px);
  visibility: visible;
}

.sidebar-inner {
  /*display: grid;*/
  gap: 20px;
  /*padding-block: 36px;*/
}

.sidebar::-webkit-scrollbar-thumb { background-color: transparent; }

.sidebar:is(:hover, :focus-within)::-webkit-scrollbar-thumb {
  background-color: var(--banner-background);
}

.sidebar::-webkit-scrollbar-button { height: 16px; }

.sidebar-list,
.sidebar-footer { padding-inline: 50px; font-size: 22px; line-height: 2.5;
}









.sidebar-link {
  color: var(--on-surface-variant);
  transition: var(--transition-short);
}

.sidebar-link:is(:hover, :focus-visible) { color: var(--on-background); }

.sidebar-list {
  /*display: grid;*/
  gap: 8px;
}

.sidebar-list .title { 
  margin-block-end: 8px; 
  font-size: 24px; 
  color: #fff;

}
.colorMenu
{
  color: #fff;
}
.sidebar-footer {
  border-block-start: 1px solid var(--banner-background);
  padding-block-start: 28px;
  margin-block-start: 16px;
}

.copyright {
  color: var(--on-surface-variant);
  margin-block-end: 20px;
}

.copyright a { display: inline-block; }

.overlay {
  position: fixed;
  top: 96px;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--background);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-short);
  z-index: 3;
}

.overlay.active {
  opacity: 0.5;
  pointer-events: all;
}





/*-----------------------------------*\
  #HOME PAGE
\*-----------------------------------*/

.container {
  position: relative;
  /*background-color: var(--surface);*/
  
  /*background: linear-gradient(#007bb2, #0d1423); cor azul antiga */
  /*background: linear-gradient(358deg, rgb(249 200 88 / 0%) 0%, #ffd485 0%,
  #6f5012 25%, #8C5A3F 55%, #4A2A1A 80%, #120907 100%);*/
background: linear-gradient(to bottom, #5c3a21 0%, #a67c52 50%, #d2b48c 100%);

  color: var(--on-surface);
  padding: 24px 20px 48px;
  height: calc(100vh - 96px);
  overflow-y: overlay;
  z-index: 1;
}



/**
 * BANNER
 */

.banner {
  position: relative;
  height: 300px;
  border-radius: var(--radius-24);
  overflow: hidden;
}

.banner-slider .slider-item {
  position: absolute;
  top: 0;
  left: 120%;
  max-width: none;
  width: 100%;
  height: 100%;
  background-color: var(--banner-background);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-long);
}

.banner-slider .slider-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--banner-overlay));
}

.banner-slider .active {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.banner-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 80px;
  z-index: 1;
  color: #ffffff;
  font-size: 14px;
}

.banner :is(.heading, .banner-text) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.banner .heading {
  -webkit-line-clamp: 3;
  margin-block-end: 16px;
}

.banner .genre { margin-block: 12px; }

.banner-text {
  -webkit-line-clamp: 2;
  margin-block-end: 24px;
}

.banner .btn {
   background-color: #5c3a21; 
  }

.banner .btn:is(:hover, :focus-visible) { box-shadow: var(--shadow-2); }

.slider-control {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 0;
  border-radius: var(--radius-16) 0 0 var(--radius-16);
  user-select: none;
  padding: 4px 0 4px 4px;
  overflow-x: auto;
}

.slider-control::-webkit-scrollbar { display: none; }

.control-inner {
  display: flex;
  gap: 12px;
}

.control-inner::after {
  content: "";
  min-width: 12px;
}

.slider-control .slider-item { /*tamanho do primeiro slider*/
  width: 50px;
  height: 50px;
  border-radius: var(--radius-8);
  flex-shrink: 0;
  filter: brightness(0.5);
}

.slider-control .active {
  filter: brightness(2);
  box-shadow: var(--shadow-1);
} 



/**
 * MOVIE LIST
 */

.movie-list { padding-block-start: 32px; }

.movie-card {
  position: relative;
  width: 200px;
}

.movie-card .card-banner {
  
  width: 200px; } /*--------tamanho das imagens no slider ---------*/

.movie-card .title {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-block: 8px 4px;
}

.movie-card .meta-list { justify-content: space-between; }

.movie-card .card-btn {
  position: absolute;
  inset: 0;
}





/*-----------------------------------*\
  #DETAIL PAGE
\*-----------------------------------*/

.backdrop-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.backdrop-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, hsla(250, 13%, 11%, 1), hsla(250, 13%, 11%, 0.9));
}

.movie-detail .movie-poster {
  max-width: 300px;
  width: 100%;
}

.movie-detail .heading { margin-block: 24px 12px; }

.movie-detail :is(.meta-list, .genre) { color: var(--text-color); }

.movie-detail .genre { margin-block: 12px 16px; }

.detail-list { margin-block: 24px 32px; }

.movie-detail .list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-block-end: 12px;
}

.movie-detail .list-name {
  color: var(--text-color);
  min-width: 112px;
}





/*-----------------------------------*\
  #MOVIE LIST PAGE
\*-----------------------------------*/

.genre-list .title-wrapper { margin-block-end: 56px; }

.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  column-gap: 16px;
  row-gap: 20px;
}

:is(.genre-list, .search-modal) :is(.movie-card, .card-banner) {
  width: 100%;
}





/*-----------------------------------*\
  #SEARCH MODAL
\*-----------------------------------*/

.search-modal {
  position: fixed;
  top: 96px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--surface);
  padding: 50px 24px;
  overflow-y: overlay;
  z-index: 4;
  display: none;
}

.search-modal.active { display: block; }

.search-modal .label {
  color: var(--primary-variant);
  font-weight: var(--weight-bold);
  margin-block-end: 8px;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/


/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * HOME PAGE
   */

  .banner-content {
    right: auto;
    max-width: 500px;
  }
  .banner{
    max-height: 150px;
  }
  .slider-control { left: calc(100% - 400px); }



  /**
   * DETAIL PAGE
   */

  .detail-content { max-width: 750px; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /* gradient color */
    --banner-overlay: 90deg, hsl(220, 17%, 7%) 0%, hsla(220, 17%, 7%, 0) 100%;

    /* font size */
    --fs-heading: 5.4rem;

  }



  /**
   * HOME PAGE
   */

  .container { padding-inline: 24px; }

  .slider-list { margin-inline: -24px; }

  .search-btn { display: none; }

  .search-box {
    all: unset;
    display: block;
    width: 360px;
  }

  .banner { 
    max-height: 450px; 
  }

  .banner-content {
    bottom: 50%;
    transform: translateY(50%);
    left: 50px;
  }



  /**
   * MOVIE DETAIL PAGE
   */

  .voltar a h1{
    font-size: 2.6rem;;
  }

  .movie-detail {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }

  .movie-detail .detail-box { flex-grow: 1; }

  .movie-detail .movie-poster {
    flex-shrink: 0;
    position: sticky;
    top: 0;
  }

  .movie-detail .slider-list {
    margin-inline-start: 0;
    border-radius: var(--radius-16) 0 0 var(--radius-16);
  }

  .movie-detail .slider-inner::before { display: none; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * HOME PAGE
   */

  .header { padding: 28px 56px; }

  .logo img { width: 160px; }
img .logo{
  margin-bottom: 70px;
}
  .menu-btn,
  .overlay { display: none; right: -200px;}

  main {
    display: grid;
    grid-template-columns: 250px 1fr;
  }


  .sidebar {
    position: static;
    visibility: visible;
    border-block-start: 0;
    height: calc(100vh - 104px);
  }

  .sidebar.active { transform: none; }

  .sidebar-footer { padding-inline: 56px; }

  .container {
    height: calc(100vh - 104px);
    border-top-left-radius: var(--radius-36);
  }

  .banner-content { left: 100px; }

  .search-modal {
    top: 104px;
    padding: 60px;
  }



  /**
   * MOVIE DETAIL PAGE
   */

  .backdrop-image { border-top-left-radius: var(--radius-36); }

}



/*---------------------------------- FOOTER -----------------------------------*/



.finale{
  width: 100%;
  bottom: -120px;
  top: 0px;
background: linear-gradient(to bottom, #5c3a21 0%, #a67c52 50%, #d2b48c 100%);
  color: #fff;
  padding: -1px 0 10px;
  border-top-right-radius: 125px;
  font-size: 13px;
  line-height: 20px;
  margin-top: -80px;
  position: relative;

}
.row2{
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.col2{
  flex-basis: 25%;
  padding: 10px;
}
.col2:nth-child(2), .col2:nth-child(3){
  flex-basis: 15%;
}

.logoFinal{
  width: 50px;
}
.logoH2
{
  display: flex;
  align-items: flex-end;
  margin-left: -10px;
}
.col2 h3{
  width: fit-content;
  margin-bottom: 40px;
  position: relative;
}
.email-id{
  width: fit-content;
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}
.lista li{
  list-style: none;
  margin-bottom: 12px;
}
.lista li a{
  text-decoration: none;
  color: #fff;
}
form{
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
form .far{
  font-size: 18px;
  margin-right: 10px;
}
form input{
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}
form button{
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
form button .fas{
  font-size: 16px;
  color: #ccc;
}
.social-icons a .fab{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #000;
  background: #fff;
  margin-right: 15px;
  cursor: pointer;
  display: inline-block;
}
.social-icons.fab{
  display: inline-block;
}
hr{
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;
}
.copyright{
  text-align: center;
  color:#ccc
}
.underline{
  width: 100%;
  height: 5px;
  background: #767676;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}
.underline span{
  width: 15px;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moving 2s linear infinite;
}
@keyframes  moving{
  0%{
      left: -20px;
  }
  100%{
      left: 100%;
  }
}


@media (max-width: 768px){
  
  .col2{
      flex-basis: 100%;
      
  }
  .col2:nth-child(2), .col2:nth-child(3){
      flex-basis: 100%;
  }
  
.title-wrapper .ver-mais{
  display: block;
  font-size: 5px;
}
  .containerslider{
    position: relative;
    top: 250px;
  }
 
 
}
/*@media(max-width: 500px){
  .box span img{
    left: 53px;
    width: 100px;
    height: 150px;
  }
  .box span {
    
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(153px);
  }
}
*/

.title-wrapper .ver-mais a{
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  margin-top: -28;
  font-size: 13px;
  font-weight: lighter;
}

 .ver-mais  i{
  display: flex;
  margin-left: 3px;

}



















.card
{
position: relative;
width: 320px;
height: 450px;
background: #fff;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0,0,0,0.25);
overflow: hidden;

}


.card
{
position: relative;
overflow: hidden;
}

.poster::before /*efeito*/
 {
/*content: '';*/
position: absolute;
bottom: -180px;
width: 100%;
height: 100%;
/*background: linear-gradient(0deg, #1064a6 50%, transparent);*/
transition: 0.5s;
z-index: 1;
}

.poster:hover .poster::before
{
bottom: 0px;
}

.card .poster img
{
width: 100%;
transition: 0.5s;

}

.poster:hover .poster img
{
transform: translateY(-50px);
filter: blur (5px);
}
.poster .details
{
  position: absolute;
  bottom: 105px; /*64*/
  left: 0;
padding: 20px;
width: 100%;
z-index: 2;
transition: 0.5s;
}
/*
.poster:hover .produto1
{
  bottom: 25px;
}*/


.poster .produto1 {
  bottom: 100px; /*32 Distancia de cima pra baixo */

}
.poster .produto2 {
  bottom: 89px; /*32 Distancia de cima pra baixo */

}
.poster .produto3 {
  bottom: 93px; /*65 Distancia de cima pra baixo */

}
.poster .produto4 {
  bottom: 74px; /*65 Distancia de cima pra baixo */

}

.poster .produto5 {
  bottom: 85px; /*65*/

}
.poster .produto8 {
  bottom: 218px;  /*padrao 65*/

}

.poster .produto9 {
  bottom: 218px;

}
.poster .produto10 {
  bottom: 185px;   /*40*/

}
.poster .produtoFalante1 {
  bottom: 70px;   /*40*/

}


.poster:hover .details
{
bottom: -15px; /**- Distancia do produto de baixo pra cima -**/
}
/*
.poster:hover .produto2
{
bottom: -15px; /**- Distancia do produto de baixo pra cima -
}
.poster:hover .produto4
{
bottom: -15px; /**- Distancia do produto de baixo pra cima -
}
.poster:hover .produto5
{
bottom: -15px; /**- Distancia do produto de baixo pra cima -
}*/


.divProduto2
{
  top: 20px;
}

.poster .details .logo
{
  max-width: 228px;
  left: -20px;
  position: relative;
}

.poster .produtoFalante1 .logo {
  max-width: 182px;
  left: -10px;
  position: relative;
}

.poster .details .logo2
{
  height: 180px;
  width: 200px;
  left: -20px;
}
.poster .details .logo3
{
    
    height: 173px;
    max-width: none;
    width: 200px;
}
.poster .details .logo4
{ 
  max-width: 220px;
  left: -30px;
}
.poster .details .logo5
{
    left: -30px;
    height: 185px;
    width: 220px;
    max-width: none;
}
.poster .details .logo7
{

  max-width: 187px;
  left: -16px;
}
.poster .details .logo8
{

  max-width: 215px;
  left: -27px;
}
.poster .details .logo9
{

  max-width: 204px;
  left: -23px;
}
.poster .details .logo10
{

  max-width: 204px;
  left: -23px;
}
.poster .details .logo11
{

  max-width: 150px;
  left: 6px;
}
.poster .details .logo12
{

  max-width: 150px;
  left: 7px;
}
.poster .details .logo13
{

  max-width: 150px;
  left: 7px;
}
.poster .details .logo14
{

  max-width: 150px;
  left: 7px;
}
.poster .details .logo15
{

  max-width: 150px;
  left: 7px;
}

.poster .details h3
{
font-size: 14px;
color: #fff;
}

.poster.details .rating
{
position: relative;
padding: 5px 0;
}

.poster .details .rating .fa-solid
{
color: #f7f406;
font-size: 1em;
} 

.card .details .rating span
{
color: #fff;
margin-left: 5px;
}

 .details .tags
{
position: relative;
margin-top: 5px;
}


 .details .tags span
{
padding: 2px 5px;
color: #fff;
background: #03a8f5;
border-radius: 4px;
}

.details .tags span:nth-child(2)
{
background: #ff5722;
}

.details .info
{
color: #fff;
margin-top: 0px;
}


.poster .details .cast
{
position: relative;
}

 .details .cast h4
{
color: #fff;
margin-top: 10px;
}

.poster .details .cast ul
{
position: relative; display: flex;
gap: 10px;
margin-top: 10px;
}


.poster .details .cast ul li
{
list-style: none;
width: 35px;
height: 35px;
overflow: hidden;
border-radius: 50%;
border: 2px solid #fff;
}

.poster .details .cast ul li img
{
max-width: 100%;

 }


 .botaoFazerOrcamento{
  display: flex;
  text-align: center;
  justify-content: center;
 }

 /*---------------------  CODE SLIDER --------------------------*/

 .containerslider{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -100px;
  min-height: 70vh;
  transform-style: preserve-3d;
  /*overflow-x: overlay;*/
}
  
  .box
  {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d; 
  transition: 1.5s;
  transform: perspective(800px) rotateY(0deg);
  
  }
  
  .box span
  {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg)) translateZ(150px);
  
  /*-webkit-box-reflect: below 0px linear-gradient(transparent, transparent, #0004);*/
  }
  
  .box span img
  {
  position: absolute;
  top: 0;
  left: 53px;
  width: 100px;
  height: 150px;
  /*object-fit: cover;*/
  user-select: none;
    max-width: 140px; 
    border-radius: var(--radius-16);
  
  }
  .box img {

  }
  
  .btns
  {
  position: absolute;
  bottom: 7px;
  display: flex;
  gap: 30px;
  }
  
  .btns .btnSlider
  {
  position: relative;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  }
  .btns .btnSlider::before
  {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translate(-2.5px, 2.5px);
  }
  
  .btns .btnSlider:active
  {
      background: #fff;
  }
  
  .btns .btnSlider.prev::before
  {
  transform: rotate(225deg) translate(-2.5px, 2.5px);
  }
  
  .btns .btnSlider:active::before
  {
  border-top: 3px solid #000; border-right: 3px solid #000;
  }

  /*@media (max-width: 575px) {
    .containerslider
    {
      max-height: 30vh;
    }
    .box span
    {
      max-width: 50%;
    }
  }

  */

   .menu-btn .menu {
    filter: invert(1);
  }
   .menu-btn .close {
    filter: invert(1);
  }
    /*-------------------------------   MUSIC ------------------------*/



.player {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
  height: 354px;
  margin: 0 40px;
  top: 95px;
  /*box-shadow: 0 1px 10px gray;*/
  padding: 10px;
  border-radius: 130px;
}

.player2 {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
  height: 400px;
  margin: 0 40px;
  top: 295px;
  /*box-shadow: 0 1px 10px gray;*/
  padding: 10px;
  border-radius: 130px;
}
.distanciaMusic{
  top: 0px;
  position: relative;
}
.distanciaMusicSom{
  top: 0px;
  position: relative;
}
.todoMusic{
  justify-content: center;

  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-around;}

  .somE{
    width: 130px;
    left: -90px;
    position: relative;
    top: -12px;
  }
  .somD{
    width: 130px;
    right: -97px;
    position: relative;
    top: -135px;
  }
 
 .hrSomFinal{
  top: 140px;
  position: relative;
 }
 .hrSomFinal2{
  top: 20px;
  position: relative;
 }
 .hrSomInicio{
  position: relative;
  top: 20px;
 }
 .hrSomInicio2{
  position: relative;
  top: 210px;
 }

 .hrContraSliddder{
  position: relative;
  top: 350px;
 }

#musicName {
  white-space: nowrap; 
  /*width: 100%;*/
  overflow:initial;
  text-overflow: ellipsis;
  font-size: 25px;
  position: relative;
}
#musicName2 {
  white-space: nowrap; 
  /*width: 100%;*/
  overflow:initial;
  text-overflow: ellipsis;
  font-size: 25px;
  position: relative;
}

.controlsMusic button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.controlsMusic i {
  font-size: 60px;
  padding: 5px;
  border-radius: 50%;
  background-color: transparent;
  transition: all .2s;
}

.controlsMusic i:hover {
  background-color: rgb(20, 102, 122);
}

.time {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.time span {
  font-size: 22px;
  color: #e3e3e3;
}

.footerMusic {
  width: 200px;
}

.progress-bar {
  height: 8px;
  background-color: #ddd;
  cursor: pointer;
  margin-bottom: 5px;
  border-radius: 5px;
}

.progress {
  height: 8px;
  background-color: #5b5757;
  border-radius: 5px;
}
.progress-bar2 {
  height: 8px;
  background-color: #ddd;
  cursor: pointer;
  margin-bottom: 5px;
  border-radius: 5px;
}

.progress2 {
  height: 8px;
  background-color: #5b5757;
  border-radius: 5px;
}

/********************** CONTATO *************************/
.contact-us {
  width: 80%;
  margin: auto;
}

.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}

.contact-col div {
  display: flex;
  align-items: left;
  margin-bottom: 40px;
}

.contact-col div .fa {
  font-size: 28px;
  color: #007bb2;
  margin: 10px;
  margin-right: 50px;
}

.contact-col div p {
  padding: 0;
}

.contact-col div h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}
.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location iframe {
  width: 100%;
}

.contact-col input, .contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.para {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}


/*sobre*/


.footer{
  width: 100%;
  text-align: center;
  padding: 30px 0;
  margin-top: 100px;
}
.footer h2 {
  text-align: center;
}
.footer h4 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 20px;
}

.icons .fa{
  color:#007bb2;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
  font-size: 18px;
}
.icons-box{
  display: inline-block;
}



/* ---------------------- SLIDER AUTOMÁTICO -----------------------*/


.contentSlider {
  height: 420px;
  width: 735px;
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);

  top: 3700px;
}

.contentSlider .slideImg img {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: overlay;

}

.navigation {
  position: absolute;
  bottom: 15px;
  left: 301px;
  display: flex;
  
}



.bar {

  width: 15px;
  height: 15px;
  border: 2px solid white;
  margin: 6px;
  border-radius: 15px;
  cursor: pointer;
  transform: .5s ease;

}

.bar:hover {
  background-color: white;
}

.inputImg {
display: none;
}

.slides {
  display: flex;
  width: 500%;
  height: 100%;
}

.slideImg {
  width: 20%;
  transition: .6s;
}

#slide1:checked ~ .s1 {
  margin-left: 0;
} 

#slide2:checked ~ .s1 {
  margin-left: -20%;
} 

#slide3:checked ~ .s1 {
  margin-left: -40%;
} 

#slide4:checked ~ .s1 {
  margin-left: -60%;
} 

#slide5:checked ~ .s1 {
  margin-left: -80%;
} 
@media(max-width: 748px){
  .contentSlider{
    top: 4280px;
    height: 200px;
    width: 300px;   
 }
 .navigation{
    bottom: 5px;
    left: 88px;
 }
}

.container-whatsapp {
  position: relative;
  width: 100%;
}
.icore-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 30px;
  background-color: #01e675;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  z-index: 100;
  box-shadow: 2px 2px 2px #c0bdbd;
}

.icore-whatsapp:hover {
  background-color: #fff;
  color:#029e3b;
  font-weight: 900;
  box-shadow: 2px 2px 20px #5fe690;
}


/*'-'-'-'-'-''-'-'-'-''-'-'-'- telas som '-'-'-'-'-'-''--''-'-'-'-'-'-'*/
.telasSom{
  
  
  position: relative;
  text-align: center;
}
.ks{
  
  top: 480px;
  position: relative;
  text-align: center;
}
.hrKs {
  position: relative;
  top: 850px;
}
.hrTelas {
  position: relative;
  top: 420px;
}
.poster .details .imgCarrossel_1 {
  width: 220px;
  max-width: none;
  left: -30px;
  position: relative;
  height: 180px;
}




.info p{
  color: #ffffff ;
  font: -webkit-mini-control;
  
}


.seloNome {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #5c3a21;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s 
ease;
    border-radius: 5px;
}

.iconProduto {
    top: 2px;
    position: relative;
    max-width: 10px;
    filter: invert(1) hue-rotate(180deg) brightness(1) contrast(1);

}
.review
{
  display: flex;
  flex-direction: row-reverse;
  margin-top: -12px;
}
.review a
{
  background-color: #a67c52 ;
  padding: 0 0.3rem;
  border-radius: 5px;
}
@keyframes pulso {
    0% { transform: scale(1); }    
    50% { transform: scale(1.05); } 
    100% { transform: scale(1); }   
}
.review a {
    display: inline-block; 
    
    animation: 
        pulso        
        0.7s         
        infinite     
        ease-in-out; 
}



.puxarIcon
{
   top: 30px;
    left: 68px;

    position: relative;
    max-width: 20px;
    filter: invert(1) hue-rotate(180deg) brightness(1) contrast(1);

  
}

.aperte {
    cursor: pointer; 
    display: inline-block; 
    
    animation: 
        pulso        
        0.5s         
        infinite     
        ease-in-out; 
}
/*#paragrafoAperte {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}*/


.escondido {
    display: none !important;
}

  .poster:hover .produto1
  {
    bottom: -10px;
  }
  .poster:hover .produto2
  {
    bottom: -20px;
  }
  .poster:hover .produto4
  {
    bottom: -30px;
  }

  /*----------------------------------  CORTINAS  -----------------------------------------------*/

  .poster:hover .cortina1
  {
    bottom: -20px;
  }
  .poster:hover .cortina2 
  {
    bottom: -23px;
  }
  .poster:hover .cortina3 
  {
    bottom: -19px;
  }
  .poster:hover .cortina4 
  {
    bottom: -36px;
  }
  .poster:hover .cortina5 
  {
    bottom: -30px;
  }
  .poster:hover .cortina11 
  {
    bottom: -30px;
  }
  .poster:hover .cortina12 
  {
    bottom: -18px;
  }
  .poster:hover .cortina13 
  {
    bottom: -18px;
  }
  .poster:hover .cortina14 
  {
    bottom: -16px;
  }
  .poster:hover .cortina15 
  {
    bottom: -18px;
  }

  .poster .cortina1
  {
    bottom: 110px;
  }
  .poster .cortina2
  {
    bottom: 107px;
  }
  
  .poster .cortina3
  {
    bottom: 112px;
  }
  .poster .cortina4
  {
    bottom: 95px;
  }
  
  .poster .cortina5
  {
    bottom: 98px;
  }
  
  .poster .cortina11
  {
    bottom: 85px;
  }
  .poster .cortina12
  {
    bottom: 91px;
  }
  .poster .cortina13
  {
    bottom: 96px;
  }
  .poster .cortina14
  {
    bottom: 96px;
  }
  .poster .cortina15
  {
    bottom: 96px;
  }
  
  
  .poster .details .imgCortina_1 
  {
  width: 220px;
  max-width: none;
  left: -30px;
  position: relative;
  height: 175px;
 }
.poster .details .imgCortina_2
{
    height: 170px;
    max-width: none;
    width: 250px;
    left: -47px;
}
.poster .details .imgCortina_3
{
    height: 165px;
    max-width: none;
    width: 217px;
    left: -30px;
}
.poster .details .imgCortina_4
{
    height: 198px;
    max-width: none;
    width: 217px;
    left: -29px;
}
.poster .details .imgCortina_5
{
    height: 165px;
    max-width: none;
    width: 217px;
    left: -28px;
}
.poster .details .imgCortina_11
{
    height: 195px;
    max-width: none;
    width: 208px;
    left: -24px;
}
.poster .details .imgCortina_12
{
     height: 179px;
    max-width: none;
    width: 218px;
    left: -30px;
}
.poster .details .imgCortina_13
{
      height: 171px;
    max-width: none;
    width: 209px;
    left: -21px;
}
.poster .details .imgCortina_14
{
   height: 171px;
    max-width: none;
    width: 205px;
    left: -23px;
}
.poster .details .imgCortina_15
{
    height: 173px;
    max-width: none;
    width: 262px;
    left: -47px;
}