.block-turismo-global {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  min-height: 200px;
  background-image: url('<?= $bgImage ?>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 6rem 1rem;
}

.container-large {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.turismo-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.turismo-info-col {
    flex: 1;
    min-width: 0;
}

.turismo-info-card {
    background: white;
    padding: 4rem 2rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.turismo-title {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem); 
    line-height: 1.1;                   
    color: #a31e33;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
}

.turismo-desc {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-turismo-cta {
    display: inline-block;
    background: #212529;
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-turismo-cta:hover {
    background: #a31e33;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.turismo-banner-container {
    flex: 0.8;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.banner-wrapper {
    width: 100%;
    max-width: 450px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.banner-wrapper:hover {
    transform: scale(1.05) rotate(1deg);
}

@media (max-width: 1199px) {
    .turismo-title { font-size: 3.2rem; }
    .turismo-info-card { padding: 3rem; }
}

@media (max-width: 991px) {
    .block-turismo-global {
        width: 100%;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        min-height: auto;
        padding: 4rem 0;
    }
    .turismo-flex-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .turismo-info-col, .turismo-banner-container {
        width: 100%;
        min-width: 100%;
    }
    .turismo-info-card {
        padding: 2.5rem;
    }
}
@media (max-width: 500px) {
    .turismo-info-card {
        padding: 2rem 1rem;
    }
}