body {
  margin: 0;
  padding-top: 60px;
  min-height: 100vh;
  background-color: white;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

/* COLUMNAS DE GIFS */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  width: 18%;
  height: 100%;

  background-image: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.726)), url("img/logo_gif.gif");
  background-repeat: repeat-y;
  background-size: 300px 180px;

  z-index: 1;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 30%,
    black 70%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 30%,
    transparent 100%
  );
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

body::before,
body::after {
  background-size: clamp(80px, 15vw, 600px);
}

/* CONTENIDO */
body > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .container-ajustado {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10%;
    padding-right: 10%;
  }
}

/* CONTENEDOR CENTRAL */
.container-ajustado {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px;
  background-color: white;
  border-radius: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  body::before,
  body::after {
    width: 22%;
    background-size: 90px 60px;
  }
}

/* TITULOS */
h1 {
  color: white;
  background-color: #b00000;
  padding: 15px 0;
  border-radius: 4px;
}

h2 {
  color: #b00000;
  font-weight: 700;
  margin-top: 40px;
  border-bottom: 3px solid #b00000;
}

/* NAVBAR */
.custom-navbar {
  background-color: #b00000;
  padding: 8px 20px;
}

.custom-navbar .nav-link {
  color: white !important;
  font-weight: 500;
}

.custom-navbar .nav-link:hover {
  opacity: 0.75;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: white;
  margin: 0 10px;
  opacity: 0.7;
}

@media (max-width: 991.98px) {
  .divider {
    display: none !important;
  }
}

/* EQUIPO */

.img{
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.card {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  overflow: hidden; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.25);
}

.card-img-top {
  border-radius: 20px 20px 0 0;
}

@media(max-width: 700px) {
  .img{
  height: 320px;
  width: 100%;
  object-fit: cover;
  object-position: center 30%;
  }
  .equipo{
  display: block;
  margin: auto;
  padding-left:auto;
  }
}

/* CARRUSEL */

.carousel-sombra {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 10px;
}

/* FOOTER */
footer {
  margin-bottom: -49px !important;
}