@charset "UTF-8";
/*
* Template desarrollado por Mathias Alvez 2024.
* Uso exclusivo del sitio web Caborteada.com.uy
*/
@import url("https://fonts.googleapis.com/css2?family=League+Gothic&family=Montserrat: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");
@import url("https://use.typekit.net/jqg8pzp.css");
@font-face {
  font-family: "Tallica";
  src: url("./fuente/Tallica-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Tallica";
  src: url("./fuente/Tallica-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Tallica";
  src: url("./fuente/Tallica-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Tallica";
  src: url("./fuente/Tallica-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Tallica";
  src: url("./fuente/Tallica-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Tallica";
  src: url("./fuente/Tallica-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
* {
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}

body {
  background-color: #000;
  font-size: 16px;
  overflow-x: hidden !important;
}

.ff-1 {
  font-family: "Montserrat", sans-serif;
}

.ff-2 {
  font-family: "League Gothic", sans-serif;
}

.ff-3 {
  font-family: "tallica", sans-serif !important;
}

.ff-4 {
  font-family: "beelzebrush-black-bb", sans-serif !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fc-1 {
  color: #000 !important;
}

.f-ital {
  font-style: italic !important;
}

.br-10 {
  border-radius: 10px !important;
}

.fc-1 {
  color: #ff007a !important;
}

.music-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #ff007a; /* podés cambiar a tu color de marca */
}
@media screen and (max-width: 600px) {
  .music-btn {
    font-size: 1.2rem;
  }
}
.music-btn:hover {
  color: #7fe8ff;
}

.gradient-text {
  background: linear-gradient(90deg, #ff007a, #7fe8ff);
  -webkit-background-clip: text; /* Para Chrome, Safari */
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Para Firefox */
  color: transparent;
  line-height: 9.2rem; /* dale más aire */
}
@media screen and (max-width: 600px) {
  .gradient-text {
    line-height: 5rem;
  }
}

#portadaHome .boxAbsolute {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  top: 20px;
  right: 40px;
}
#portadaHome .logoCabor-home {
  width: 450px;
  height: auto;
  margin-bottom: 20px;
}
#portadaHome .home__bg {
  position: relative;
  width: 100%;
  min-height: 750px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
#portadaHome .home__bg h1 {
  font-size: 5.4rem;
  font-family: "tallica", sans-serif;
  color: #fff;
}
#portadaHome .home__bg p {
  color: #fff;
  font-size: 1.3rem;
}
#portadaHome .home__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}
#portadaHome .home__bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  #portadaHome .home__bg h1 {
    font-size: 2.6rem;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
  }
}

.btn-primary {
  background: linear-gradient(90deg, #ff007a, #7fe8ff);
  background-size: 200% 100%;
  border: none;
  border-radius: 30px;
  transition: background-position 0.35s ease, transform 0.2s ease;
  color: #000;
}
.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(127, 232, 255, 0.6);
}

.btn-outline-light {
  border-radius: 30px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.btn-outline-light:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}
.btn-outline-light:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.bounce-once:hover {
  animation: bounce 0.5s both;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
#caborExperiencia {
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 600px) {
  #caborExperiencia {
    height: 215px;
  }
}

#caborExperiencia2 {
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media screen and (max-width: 600px) {
  #caborExperiencia2 {
    height: 215px;
  }
}

#experienciaCarbortera .iqAlto {
  min-height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#mapa a {
  text-decoration: none;
}
#mapa a:hover {
  text-decoration: none;
}

.caborteada-popup {
  border-radius: 24px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
  padding: 40px 80px;
}

.caborteada-title {
  font-family: "Tallica", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ff007a, #7fe8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.caborteada-text {
  opacity: 0.9;
}

.gallery-wrap {
  padding: 2rem 0;
  background: #0b0a10;
}

.macy-grid {
  margin: 0 auto;
  width: min(1200px, 92vw);
}

.macy-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.macy-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.macy-item:hover img {
  transform: scale(1.04);
  filter: contrast(1.05) saturate(1.05);
}

.macy-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 18px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06), 0 8px 30px rgba(127, 232, 255, 0.18);
}

.macy-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff007a, #7fe8ff);
  color: #0b0a10;
  box-shadow: 0 6px 18px rgba(127, 232, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .macy-item img {
    transition: none;
  }
}
#djsCabor {
  padding: 50px 0px;
}

/* Velocidad y sutil flicker */
@keyframes sweep {
  to {
    --ang: 360deg;
  }
}
@keyframes flicker {
  0%, 19%, 21%, 23%, 100% {
    opacity: 1;
  }
  20%, 22% {
    opacity: 0.88;
  }
  55% {
    opacity: 0.96;
  }
  72% {
    opacity: 0.93;
  }
}
#entradas .card-img-top {
  --ang: 0deg; /* ángulo animado */
  position: relative;
  width: 100%;
  border: 10px solid transparent;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
  /* Glow más fino y nítido */
  box-shadow: 0 0 20px #ff007a, 0 0 30px #ff007a;
  /* Pista de color base usando border-image + conic-gradient (gira) */
  border-image-slice: 1;
  border-image-source: conic-gradient(from var(--ang), #ff007a 0 25%, transparent 0 50%, #ff007a 0 75%, transparent 0 100%);
  /* Animaciones */
  animation: sweep 6s linear infinite; /* giro continuo suave */
  will-change: filter;
  /* Halo controlado en el borde (sin invadir el interior) */
  /* Hotspot que recorre el borde (brillo móvil más intenso) */
}
#entradas .card-img-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* Creamos un anillo: el mask deja solo el borde */
  padding: 10px; /* mismo grosor que el border */
  background: conic-gradient(from var(--ang), #ff007a 0 25%, #ff007a 0 75%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(6px) saturate(1.2);
  opacity: 0.95;
  animation: sweep 6s linear infinite, flicker 4.5s infinite;
  pointer-events: none;
}
#entradas .card-img-top::after {
  content: "";
  position: absolute;
  inset: -2px; /* leve “spill” hacia afuera */
  border-radius: inherit;
  background: conic-gradient(from var(--ang), transparent 0deg 40deg, rgba(255, 255, 255, 0.9) 41deg 43deg, transparent 44deg 360deg);
  mix-blend-mode: screen;
  filter: blur(10px) saturate(1.4);
  opacity: 0.9;
  animation: sweep 3.5s linear infinite, flicker 5.5s infinite;
  pointer-events: none;
}

.badge-danger {
  color: #ff54a6 !important;
  background-color: #f5ff00 !important;
}

.reveal, .card, .macy-item, .card-img-top img {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}/*# sourceMappingURL=estilos.css.map */