<style>
    
  .card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 40%;
  border-radius: 5px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
  
  /* ✅ Ajustes generales */
    .cuadrilla-home-grid {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        background: #fff;
        padding: 10px;
    }
    .cuadrilla-home-img {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }
    .cuadrilla-home-img img {
        transition: transform 0.3s ease;
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
    }
    .cuadrilla-home-img:hover img {
        transform: scale(1.05);
    }

    /* ✅ Etiqueta "Hospedajes" en azul */
    .cuadrilla-home-tag {
        font-size: 12px;
        font-weight: bold;
        color: #fff;
        background-color: #0056b3;
        padding: 5px 8px;
        border-radius: 5px;
        position: absolute;
        top: 10px;
        left: 10px;
    }
  
  .cuadrilla-home-tag img {
    width: 16px;  /* Ajusta el ancho de la bandera */
    height: 12px; /* Ajusta la altura para mantener proporción */
    display: inline-block;
    vertical-align: middle; /* Alineación perfecta con el texto */
    margin-right: 5px; /* Espacio entre la bandera y el nombre del país */
}

    /* ✅ Alineación de textos a la izquierda y eliminación de espacios extra */
    .cuadrilla-home-content {
        text-align: left;
        padding: 8px 10px;
    }

    .cuadrilla-home-title {
        font-size: 15px;
        font-weight: bold;
        margin: 5px 0 3px 0;
        line-height: 1.2;
    }
    .cuadrilla-home-title a {
        color: #333;
        text-decoration: none;
    }
    .cuadrilla-home-title a:hover {
        color: #007bff;
    }

    .cuadrilla-home-price {
        font-size: 13px;
        font-weight: 600;
        color: #555;
        margin: 3px 0;
    }

    .cuadrilla-home-country-info {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 13px;
        color: #555;
        margin-top: 3px;
    }
    .cuadrilla-home-country-info img {
        width: 16px;
        height: 12px;
    }

    /* ✅ Ajuste de márgenes y espaciado para evitar espacios extra */
    .cuadrilla-home-product {
        margin-bottom: 15px;
    }
    .cuadrilla-home-texto {
        font-size: 14px;  /* Tamaño de fuente ajustado */
        color: #555;  /* Color de texto */
        line-height: 1.2;  /* Reduce el espaciado entre líneas */
        text-align: justify;  /* Justifica el texto */
        margin-top: 5px;  /* Reduce la separación superior */
    }
    
  .cuadrilla-home-container {
    background: linear-gradient(135deg, #ffffff, #f9f9f9); /* Degradado suave */
    border-radius: 15px;  /* Bordes redondeados */
    padding: 20px; /* Espaciado interno */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1); /* Sombra suave */
    margin: 20px auto; /* Centrar la caja y dar espacio alrededor */
    max-width: 95%; /* Ancho máximo */
}
  
.subtipo-lista {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    padding: 10px 0 5px;
    color: #007bff;
}
.subtipo-lista a {
    color: #007bff;
    text-decoration: none;
    padding: 0 4px;
}
.subtipo-lista a:hover {
    text-decoration: underline;
}
.subtipo-lista a.active {
    font-weight: bold;
    color: #004a99;
    text-decoration: underline;
}
  
 #popup-suscripcion {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  padding: 30px;
  z-index: 9999;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border-radius: 10px;
  display: none;
}
body.popup-activo {
  overflow: hidden;
} 
  
    </style>