@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton+SC&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  min-height: 100vh;
  background: rgb(255, 255, 255);
  background-size: cover;
  background-position: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 10%;
  /*   background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 243, 243, 0.1);
  backdrop-filter: blur(50px);
  z-index: -1;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(50deg, trasparent, rgba(206, 204, 202, 0.4), transparent);
  transition: 0.5s;
}

.header:hover::after {
  left: 100%;
  transition: 3s;
}

.logo {
  max-width: 150px;
  cursor: pointer;
}

.navbar a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--variable-color, rgb(70, 109, 117));
  text-decoration: none;
  font-weight: 200;
  margin-left: 1.5rem;
}

#check {
  display: none;
}

.icons {
  position: absolute;
  right: 5%;
  font-size: 2.2rem;
  color: var(--variable-color, rgb(36, 93, 105));
  cursor: pointer;
  display: none;
}

@media (max-width: 992px) {
  .header {
    padding: 1.3rem 5%;
  }
}
@media (max-width: 850px) {
  .icons {
    display: inline-flex;
  }
  #check:checked ~ .icons #menu-icon {
    display: none;
  }
  .icons #close-icon {
    display: none;
  }
  #check:checked ~ .icons #close-icon {
    display: block;
  }
  .navbar {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(74, 144, 185, 0.1);
    backdrop-filter: blur(50px);
    overflow: hidden;
    transition: 0.2s ease;
  }
  #check:checked ~ .navbar {
    height: 17.7rem;
  }
  .navbar a {
    display: block;
    font-size: 1.1rem;
    text-align: center;
    padding: 15px;
    transform: translateY(-10px);
    opacity: 0;
    transition: 0.2s ease;
  }
  #check:checked ~ .navbar a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(0.1s * var(--i));
  }
}
footer {
  width: 100%;
  background-color: rgb(2, 1, 0);
}

.pie-pagina .grupo-1 {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  padding: 45px 0px;
}

.pie-pagina .grupo-1 .box a img {
  padding: 10px;
}

.pie-pagina .grupo-1 .box h6 {
  color: #5d8cb3;
  margin-bottom: 25px;
  font-size: 15px;
}

.text {
  color: #e9e3e0;
  font-size: 14px;
  text-align: justify;
  line-height: 1.5;
}

.pie-pagina .grupo-1 .red-social .box a {
  display: inline-block;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  box-shadow: 0 0 2px rgba(1, 0, 0, 0.3);
  margin-right: 20px;
  text-align: center;
  transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social .box a img {
  width: 20px;
  height: 20px;
  object-fit: contain; /* Esto evita que la imagen se deforme */
}

/* ... resto de tu código ... */
.pie-pagina .grupo-1 .red-social .box a .logo-brand:hover {
  color: aqua;
}

.pie-pagina .grupo-2 {
  background-color: #0c0c0c;
  padding: 15px 10px;
  text-align: center;
  color: #ffffff;
}

.pie-pagina .grupo-2 small {
  font-size: 15px;
}

.gallery-container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 80px;
  padding: 20px;
  grid-gap: 10px;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.gallery__item {
  position: relative;
}

.gallery__title {
  font-family: "Anton", sans-serif;
  font-weight: 800;
  position: absolute;
  bottom: 0;
  color: rgb(252, 251, 251);
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(0, 0, 0));
  width: 100%;
  margin: 0;
  padding: 10px;
}

.gallery__item:nth-child(4) {
  grid-row-start: span 2;
}

.gallery__item:nth-child(5) {
  grid-column-start: span 2;
}

.gallery__item:nth-child(6) {
  grid-column-start: span 2;
}

/*mi proyecto*/
form {
  padding: 40px 40px;
  box-shadow: 0 0 20px rgb(0, 0, 0);
  border-radius: 20px;
  text-align: center;
  width: 400px;
}

.input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

label {
  font-family: "poppins";
  color: rgb(0, 0, 0);
  font-size: 15px;
  font-weight: 200;
  margin-bottom: 15px;
}

input {
  padding: 15px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
  background-color: var(--variable-color3);
  border: 2px solid #8fb6c0;
  font-family: "poppins";
  color: var(--variable-color4);
  outline: none;
}

textarea {
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color: #fcf9f9;
  border: 2px solid #8fb6c0;
  color: #052a42;
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: #bbcad8;
}

.form-txt {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.form-txt a {
  color: #507a86;
  font-size: 14px;
  text-decoration: none;
}

.btn {
  font-size: 16px;
  color: #edfff0;
  border: 0;
  border-radius: 0px;
  background-color: var(--variable-color5);
  cursor: pointer;
}

.btn:hover {
  background-color: var(--variable-color7);
}

@media (max-width: 1000px) {
  .about {
    margin: 150px auto;
    width: 600px;
    height: 600px;
    object-fit: cover;
    align-items: center;
  }
  .section__card-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 850px) {
  .about {
    margin: 150px auto;
    width: 600px;
    height: 600px;
    object-fit: cover;
    align-items: center;
  }
}
@media screen and (max-width: 850px) {
  .pie-pagina .grupo-1 {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    padding: 35px 0px;
  }
  .section__card-img {
    padding: 50px 0;
  }
  .section__card-title {
    font-size: 3rem;
  }
  .section__card.show {
    flex-direction: column;
    max-height: 100%;
    padding-bottom: 0;
  }
  .section__card-content {
    margin-bottom: 2rem;
  }
  .carousel-section-cards {
    justify-content: flex-end;
  }
  .carousel-control {
    flex-direction: row;
    align-items: center;
    position: static;
  }
  .next {
    margin-right: 0;
  }
}
@media (max-width: 680px) {
  .about {
    margin: 150px auto;
    width: 500px;
    height: 500px;
    object-fit: cover;
    align-items: center;
  }
  .gallery-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-auto-rows: 60px;
    padding: 20px;
    grid-gap: 10px;
  }
  .gallery__item:nth-child(4) {
    grid-row-start: span 1;
  }
  .gallery__item:nth-child(5) {
    grid-column-start: span 1;
  }
  .gallery__item:nth-child(6) {
    grid-column-start: span 1;
  }
}
@media (max-width: 580px) {
  .about {
    margin: 150px auto;
    width: 600px;
    height: 400px;
    object-fit: cover;
    align-items: center;
  }
  h1 {
    padding: 20px 20px;
    margin: 0 auto;
    width: 100%;
  }
  h2 {
    padding: 20px 20px;
    margin: 0 auto;
    width: 100%;
  }
  p {
    padding: 20px 20px;
    margin: 0 auto;
    width: 100%;
  }
  .section__card-text, .section__card-title {
    text-align: center;
  }
  .section__card-buttons {
    display: flex;
    flex-direction: column;
  }
  .section__card-buttons a {
    margin-bottom: 0;
    text-align: center;
  }
  .section__card-buttons a:nth-child(1) {
    margin-bottom: 0.7rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* CARDS ANIMADAS PERFILES MUSICOS Y ESTABLECIMIENTOS */
.container2 {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  border-radius: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.3);
  width: 400px;
  height: 500px;
  transition: all 400ms ease;
  overflow: hidden;
  padding-bottom: 5px;
  margin: 10px;
}

.card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
  transform: translate(-3%);
}

.card figure {
  height: 400px;
}

.card img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.card h3 {
  text-transform: uppercase;
  color: rgb(58, 71, 77);
  letter-spacing: 5px;
  font-weight: 300px;
  text-align: center;
  padding: 10%;
}

.card p {
  text-align: justify;
  color: black;
  padding: 5px;
  font-size: 14px;
  display: block;
  width: 90%;
  height: auto;
  margin: auto;
}

.card button {
  display: block;
  border: 0;
  outline: 0;
  background-color: rgb(62, 94, 112);
  width: 200px;
  height: 40px;
  padding: 5;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  border-radius: 20px 10px;
  margin: 2rem auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.content {
  padding: 15px 10px;
  text-align: center;
}

.cardp {
  color: rgb(15, 14, 14);
}

/* CARDS ZONA DE ANUNCIOS PAGINA COMUNIDAD */
.container4 {
  background-color: rgb(16, 69, 87);
  width: 100%;
  padding: 20px;
  border-radius: 30px;
  height: auto;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card4 {
  border-radius: 20px;
  background-color: var(--variable-color3);
  box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.3);
  width: 300px;
  height: 410px;
  transition: all 400ms ease;
  overflow: hidden;
  padding-bottom: 5px;
  margin: 10px;
}

.card4:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
  transform: translate(-3%);
}

.card4 figure {
  height: 100px;
}

.card4 img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.card4 h4 {
  text-align: center;
  text-shadow: rgb(26, 24, 24) 0 0 rgba(0, 0, 0, 0.3);
  color: rgb(9, 60, 73);
  padding: 10px;
}

.card4 p {
  text-align: justify;
  padding: 5px;
  font-size: 14px;
  display: block;
  width: 90%;
  height: auto;
  margin: auto;
}

.card4 .btn {
  display: block;
  border: 0;
  outline: 0;
  background-color: rgb(0, 0, 0);
  width: 200px;
  height: 40px;
  padding: 10px;
  color: white;
  border-radius: 8px;
  margin: 2rem auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.content {
  padding: 15px 10px;
  text-align: center;
}

.cardp {
  color: rgb(228, 235, 238);
}

.card-title .h4 {
  color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bebas Neue", sans-serif;
}

/* CARDS DOBLE CARA */
.container3 {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 0;
}

.card1 {
  position: relative;
  width: 300px;
  height: 350px;
  margin: 0;
  margin-bottom: 10px;
}

.card1 .face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s;
}

.card1 .front {
  transform: perspective(600px) rotateY(0deg);
  box-shadow: 0 5 px 10px black;
}

.card1 .front img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card1 .front h4 {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
  color: rgb(82, 183, 230);
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.card1 .back {
  transform: perspective(600px) rotateY(180deg);
  background: rgb(19, 39, 41);
  padding: 15px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 5px 10px black;
}

.card1 .back .link {
  border-top: solid 1px #f3f3f3;
  height: 50px;
  line-height: 50px;
}

.card1 .back .link a {
  color: #f3f3f3;
}

.card1 .back h4 {
  font-size: 30px;
  margin-top: 20px;
  letter-spacing: 2px;
}

.card .back p {
  letter-spacing: 1px;
}

.card1:hover .front {
  transform: perspective(600px) rotateY(180deg);
}

.card1:hover .back {
  transform: perspective(600px) rotateY(360deg);
}

:root {
  --variable-color: #0F172A;
  --variable-color1: #3B82F6;
  --variable-color2: #3F819C;
  --variable-color3: #F8FAFC;
  --variable-color4: black;
  --variable-color5: #00B1B8;
  --variable-color6: #132f3a;
  --variable-color7: #2E566A;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.titulo {
  color: var(--variable-color1);
  font-size: clamp(2rem, 5vw, 4rem);
}

.bold {
  font-weight: bold;
}

.container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  padding: 20px 20px;
  justify-content: center;
}

.container5 {
  width: 100%;
  flex-wrap: wrap;
  margin-top: 10%;
  margin: 10%;
  justify-content: center;
  background-color: var(--variable-color3);
  border-radius: 20px;
  padding: 30px 30px;
}

.container2 {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.container3 {
  max-width: 1440px;
  padding: 0 20px;
}

.container3 {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 0;
}

/*
.container4  {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: 10px;
    gap: 20px;
    margin-bottom: 10px;
    padding: 10px 10px;
    justify-content: center;
}
*/
.container6 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  padding: 20px 20px;
  justify-content: center;
}

.section {
  margin: 5rem 5rem;
}

.section h2 {
  padding: 2rem 2rem;
  display: flex;
  justify-content: center;
}

.wrap-logos-section {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.logo-brand {
  width: 80px;
  padding: 1rem 1rem;
  filter: grayscale(20%);
}

.titulo1, h5, h2, h1 {
  color: var(--variable-color, rgb(19, 77, 92));
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: xx-large;
}

h1 {
  font-size: 3rem;
}

h2 {
  color: var(--variable-color2, rgb(47, 105, 119));
  margin: 40px 0;
}

p {
  color: rgb(0, 0, 0);
  font-family: "Anton", sans-serif;
  font-weight: 500;
}

main {
  margin-top: 120px;
  width: 100%;
}

.container .py-4 {
  justify-content: center;
}

.boton-redireccion {
  background-color: var(--variable-color1);
  color: #fcfcfd;
  width: 400px;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  padding: 15px;
  margin: auto;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--variable-color3);
  border-radius: 50px;
  cursor: pointer;
}

.boton-redireccion:hover {
  background-color: var(--variable-color3);
  border: 2px solid var(--variable-color);
  color: var(--variable-color4);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
}

.slider {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

figure {
  position: relative;
  left: 0;
  width: 400%; /* width dikali slide */
  animation: 40s slide infinite;
}

.slide {
  position: relative;
  display: flex;
  justify-content: center;
  width: 25%; /* width dibagi slide */
  float: left;
  text-align: center;
}

.slide h1 {
  position: absolute;
  display: table-cell;
  top: 10%;
  font-size: 4em;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  color: var(--variable-color3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide p {
  font-size: 1em;
  width: 450px;
  height: 400px;
  margin: 0;
  position: absolute;
  padding: 2rem;
  top: 25%;
  color: var(--variable-color3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  vertical-align: middle;
}

.slide img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@keyframes slide {
  0% {
    left: 0;
  }
  10% {
    left: 0;
  }
  20% {
    left: -100%;
  }
  30% {
    left: -100%;
  }
  40% {
    left: -200%;
  }
  50% {
    left: -200%;
  }
  55% {
    left: -300%;
  }
  65% {
    left: -300%;
  }
  66% {
    left: -200%;
  }
  74% {
    left: -200%;
  }
  75% {
    left: -100%;
  }
  85% {
    left: -100%;
  }
  90% {
    left: 0;
  }
  1000% {
    left: 0;
  }
}
.container9 {
  display: flex;
  max-width: 100%;
  height: 40vh;
  margin-top: 80px;
  position: relative;
  background-image: url(../../img/imgojos1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.container9 .wrap {
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
}

.container9 .wrap .box {
  flex-basis: 100%;
  margin-left: 10%;
  color: white;
  text-align: left;
  align-self: center;
}

.container9 .wrap .box span {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 500;
  padding: 10px;
}

.container9 .wrap .box h1 {
  font-size: 4em;
  line-height: 0.9;
  color: #6dc3eb;
  padding-bottom: 10px;
}

.container9 .wrap .box p {
  font-size: 15px;
  line-height: 1.2;
  color: #fcfcfd;
}

.container9 .wrap .box .botones {
  display: flex;
  margin-top: 30px;
  flex-flow: row wrap;
}

.container9 .wrap .box .botones .btn1 {
  flex-basis: 30%;
  border: solid 2px;
  border-radius: 20px;
  padding: 10px 30px 10px 30px;
  margin-right: 20px;
  text-align: center;
  text-decoration: none;
  color: #fcfcfd;
}

.container9 .wrap .box .botones .btn2 {
  flex-basis: 30%;
  background-color: #fcfcfd;
  border: solid 2px;
  border-radius: 20px;
  padding: 10px 30px 10px 30px;
  margin-right: 20px;
  text-align: center;
  text-decoration: none;
  color: black;
}

/*# sourceMappingURL=styles.css.map */
