/* CSS Document */
#anuncio_horizontal{
  padding-top: 40px;
  padding-bottom: 40px;
}
#anuncio_horizontal .resaltado {
    border: 2px solid #b5b3b3;       /* Borde amarillo brillante */
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.6); /* Sombra glow */
}
#noticia{
  background-color: #f7f7f7;
  padding-top: 40px;
  padding-bottom: 40px;
}
#noticia .resaltado {
    border: 2px solid #b5b3b3;       /* Borde amarillo brillante */
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.6); /* Sombra glow */
}
#destino{
 background-color: #f7f7f7;
  padding-top: 40px;
  padding-bottom: 40px;
}
#destino .resaltado {
    border: 2px solid #b5b3b3;       /* Borde amarillo brillante */
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.6); /* Sombra glow */
}
#festividad{

  padding-top: 40px;
  padding-bottom: 40px;
}
#festividad .resaltado {
    border: 2px solid #b5b3b3;       /* Borde amarillo brillante */
    box-shadow: 0 0 20px rgba(105, 105, 105, 0.6); /* Sombra glow */
}

.card-destino {
    height: 340px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    border: 1px solid rgba(255,255,255,0.4);
}

/* Hover: efecto premium */
.card-destino:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    border: 1px solid rgba(0,180,255,0.6);
}

/* Borde animado */
.card-destino::before {
    content:"";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #00d5ff, #008cff, #00a8ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none; /* ← PARA QUE SE PUEDA HACER CLIC */
}

.card-destino:hover::before {
    opacity: 1;
}

/* HEADER GLASS PREMIUM CENTRADO */
.card-destino .card-header {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(6px);
    padding: 10px 12px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo */
.card-destino .card-header img {
    width: 48px;
    height: auto;
    margin-bottom: 6px;
}

/* Título */
.card-destino .titulo-destino {
    font-size: 13px;
    font-weight: 700;
    color: #0077aa;
    line-height: 1.1;
    max-height: 34px;
    overflow: hidden;
}

/* Imagen principal */
.card-destino .img-destino {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Efecto zoom + color */
.card-destino:hover .img-destino {
    transform: scale(1.08);
    filter: brightness(0.9) saturate(1.2);
}

/* FOOTER */
.card-destino .card-footer {
    margin-top: auto;
    padding: 12px;
    background: #ffffff;
    text-align: center;
}

/* Botón premium */
.btn-conoce {
    background: linear-gradient(135deg, #00a3ff, #0066ff);
    color: #fff;
    font-size: 13px;
    padding: 6px 15px;
    border-radius: 25px;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.btn-conoce:hover {
    background: linear-gradient(135deg, #0086ff, #004dcc);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,120,255,0.4);
}

