body {
  background: #FFFFF3;
  margin-bottom: 0px;
}
#contenido {
  position: relative;
  margin-top: 0px;
  min-height: 450px;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  background: white;
  -webkit-box-shadow: 0 2px 5px 0 #000000;
  box-shadow: 0 2px 5px 0 #000000;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}
#footer_header {
  margin-top: -25px;
  background: #185eb3;
  padding-top: 50px;
  padding-bottom: 25px;
  color: white;
}
#footer_header a {
  color: antiquewhite;
  text-decoration: none;
}
#footer_header a:hover {
  font-weight: bold;
  color: yellow;
}

#menu_footer li a {
  color:white;
  font-size:0.9em;
}
  
#menu_footer li a:hover {
  color:yellow;
  font-weight:bold;
}

#carousel1 {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

#carousel1 img {
  width: auto;
  height: 150px;
  border: 0 none;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  -webkit-filter: alpha(opacity=70);
}

#carousel1 .webp {
  width: auto;
  height: 150px;
  border: 0 none;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  -webkit-filter: alpha(opacity=70);
}

#carousel1_Controles img {
  border: 2px solid #a00;
  width: 15px;
  height: 15px;
}

#carousel1_Controles .webp {
  border: 2px solid #a00;
  width: 15px;
  height: 15px;
}

/* login */
.login {
  position: relative;
  text-align: center;
  max-width: 450px;
  margin: 0px auto 25px auto;
  padding-top: 30px;
}

/* scrollWrapper */
.scrollWrapper{
    width:100%;height:auto;
    overflow:hidden;
    border:0px solid silver;
    font-family:Arial;font-size:0.8em;
}
#scroll{
    position:relative;
    width: auto;
    margin:1px;
    z-index: -1;
    overflow: hidden;
}
#scroll .title  {font-weight:bold;margin-top:20px;}

/* card-img-top */
.card-img-top{
  transition: transform .2s;
  -webkit-transition: transform .2s;
  -moz-transition: transform .2s;
  -ms-transition: transform .2s;
  -o-transition: transform .2s;
}
.card-img-top:hover{
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}
/* animation */
.heart {
	/* animation: beat .25s infinite; */
	animation: HEARTBEAT 2.5s infinite;
    transform-origin: center;
}
/* Heart beat animation */
@keyframes beat{
	to { transform: scale(1.4); }
}

@keyframes HEARTBEAT {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    color: white;
    font-family: arial;
    text-align: center;
}

.cookies__boton {
    background: initial;
    border: 2px solid white;
    padding: 1rem;
    font-size: 1rem;
    color: white;
    width: 5rem;
    text-align: center;
}
.cookies__boton--no{
    margin-right: 25px;
}
.cookies__boton--si{
    background: green;
}

.marquee-container {
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    white-space: nowrap;
    background-color: #FFF;
    margin: 0px;
    padding: 20px 0;
    position: relative;
    margin-left: 40px;
}

.marquee-content {
    display: inline-block;
    animation: scroll 75s linear infinite;
}

.marquee-content a {
    display: inline-block;
    margin: 0 15px;
    color: #1a0dab;
    text-decoration: none;
    font-size: 1.3em;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.marquee-content a:hover {
    background-color: #f8f9fa;
    text-decoration: underline;
    color: #1a0dab;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Estilos para móviles */
@media (max-width: 768px) {
    .marquee-content {
        animation: scroll 75s linear infinite;
    }
    
    .marquee-content a {
        margin: 0 10px;
        font-size: 14px;
    }
}