*{
	padding: 0;
	margin: 0;
}
body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8f9fa;
}
.navbar .navbar-nav .nav-link:hover {
  background-color: #fff;
  color: #1A237E;
}
.img-galeria{
  width: 100%;
}
.video-thumb {
  cursor: pointer;
  transition: transform 0.2s;
}
.video-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.fondo{
  background-image: url("../images/fondo-objetivo.webp");
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  position: relative;

}
.hero-section {
  background: linear-gradient(135deg, #620d32, #a8852b);
  color: white;
  text-align: center;
  padding: 60px 20px; /* Reducir el espaciado superior e inferior */
  font-family: 'Segoe UI', sans-serif;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada */
  position: relative; /* Para el efecto de borde */
  overflow: hidden; /* Para ocultar el borde */
}
.censo-section {
  background: linear-gradient(135deg, #620d32, #a8852b);
  color: #fff;
  padding: 60px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Imagen en forma de hexágono */
.hex-img {
  width: 100%;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.censo-section h2 {
  font-weight: 700;
}

.censo-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px; /* Altura del borde */
  background: rgba(255, 255, 255, 0.3); /* Color del borde más visible */
  border-radius: 0 0 25px 25px; /* Bordes redondeados */
}

.hero-section h1 {
  font-size: 1.5rem; /* Aumentar el tamaño del título */
  font-weight: 900; /* Negrita más fuerte */
  text-transform: uppercase;
  margin-bottom: 20px; /* Espaciado inferior */
  letter-spacing: 3px; /* Espaciado entre letras */
  transition: transform 0.3s ease; /* Transición suave */
}

.hero-section h1:hover {
  transform: scale(1.05); /* Efecto de aumento al pasar el mouse */
}
.gallery-container {
    background-color: #fff;
    color: #35373a;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

.gallery-container h1 {
    text-align: center;
    margin-top: 70px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    max-width: 800px;
    margin: 25px auto;
    color: #888;
    font-size: 18px;
}
.card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
/* Contenedor de lista con scroll */
#videoList {
  max-height: 430px;   /* altura fija del área de lista */
  overflow-y: auto;    /* activa scroll vertical */
}
/* Scrollbar personalizado */
#videoList::-webkit-scrollbar {
  width: 8px;
}
#videoList::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
#videoList::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* miniaturas */
.video-thumb img {
  width: 100%;
  border-radius: 6px;
}
.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-img {
  width: 100%;
  height: auto;
  /*max-height: 500px;*/
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.thumbs-wrapper {
  position: relative;
}
.thumb-list {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}
.thumb {
  flex: 0 0 auto;
  margin-right: 10px;
  text-align: center;
}
.thumb img {
  cursor: pointer;
  transition: transform 0.2s, border 0.2s;
  border: 2px solid transparent;
  max-width: 150px;
  border-radius: 6px;
}
.thumb img:hover {
  transform: scale(1.05);
  border: 2px solid #007bff;
}
.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.scroll-btn.left {
  left: -10px;
}
.scroll-btn.right {
  right: -10px;
}
.parrafo {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1rem;
  margin: 0 auto;
  font-family: "Courier New";
  border-right: 0.15em solid #18bdec;
  animation: typing 4s steps(38) 1s 1 normal both, blink 1s steps(1) infinite;
}
.carousel-item iframe {
  width: 100%;
  height: 500px; /* Ajusta la altura */
}
.countdown-section {
  background: url('../images/banner/murales-01-02.webp') no-repeat center center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 2rem;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}
.countdown-content {
  position: relative;
  z-index: 1;
}
.countdown-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 1rem;
  padding: 1.5rem;
  min-width: 100px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.countdown-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}
.countdown-label {
  font-size: 1rem;
  text-transform: uppercase;
  color: #f1f1f1;
  letter-spacing: 1px;
}
.tituloMurales{
  color: #620d32;
  font-size: 30px;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
footer{
  background: #9D9D9C;
  margin-top: auto;
}
@media screen and (min-width: 992px) {
  .navbar {
    padding: 0;
  }
}

.navbar .navbar-nav .nav-link {
  padding: 1em;
  transition: all 0.5s;
  color: #fff;
  font-size: 1.1em;
}
.navbar-brand {
  font-size: 1.5em;
}
@media screen and (max-width: 991px) {
  .navbar-brand {
    padding-left: 0.7em;
  }
  .navbar-nav {
    padding-top: 0.5em;
  }
}
@media only screen and (max-width: 600px) {
  .tituloMurales {
    color: #620d32;
    font-size: 20px;
  }
}