/* Full Width Container Breakout */
.salient-hero-slider-container {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden;
}

.salient-hero-swiper {
    width: 100%;
    height: 100%;
}

.salient-hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 0;
}

/* Overlay */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Blur Box */
.hero-blur-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 48%;

    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    padding: 0;
    margin: 0;
    margin-left: 60px;

    border-radius: 0;
    border-top-right-radius: 60px;

    z-index: 2;
    box-sizing: border-box;
}

.hero-blur-box-inner {
    padding: 40px 80px 80px 80px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Typography */
.hero-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    /* Regular */
    text-transform: none;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 33px;
    color: #fff;
}

.hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 33px;
    font-weight: 300;
    /* Light */
    color: #fff !important;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 300;
    /* Light */
    opacity: 1;
    color: #fff;
}

/* Button Wrapper */
.hero-btn-wrap {
    position: absolute;
    bottom: 50px;
    right: 60px;
    z-index: 20;
}

/* Button */
.hero-custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Ensure text is centered */
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    /* Regular */
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
    width: fit-content;
    /* Prevent stretching */
    max-width: 100%;
}

.hero-custom-btn:hover {
    opacity: 0.8;
    /* Compatible with custom inline colors */
    transform: translateY(-1px);
    /* Subtle lift */
    color: #fff;
}

.hero-custom-btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.hero-custom-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Swiper Controls Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-blur-box {
        max-width: 90%;
        margin-left: 0;
        border-top-right-radius: 40px;
    }

    .hero-blur-box-inner {
        padding: 30px;
    }

    .hero-btn-wrap {
        bottom: 20px;
        right: 20px;
    }

    .hero-title {
        font-size: 28px;
    }
}


/* --- Static Banner Component --- */
.cct-static-banner-container {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect */
}

.cct-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Slight global darken */
    pointer-events: none;
    z-index: 1;
}

/* Static Banner Blur Box */
.cct-banner-blur-box {
    position: absolute;
    bottom: 0;
    bottom: 0;
    left: auto;
    /* Reset left */
    right: 0;
    /* Align right */
    width: 100%;
    max-width: 570px;

    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    /* Right Aligned Shape: Round Top-Left Corner */
    border-radius: 0;
    border-top-left-radius: 40px;

    margin: 0;
    margin-right: 120px;
    /* Requested 120px right margin */

    z-index: 2;
    box-sizing: border-box;
}

.cct-banner-inner {
    padding: 40px 80px 40px 50px;
    /* Request: Generous padding */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Static Banner Typography */
.cct-banner-tag {
    display: block;
    font-size: 13px;
    /* Slightly larger for readability as text */
    font-weight: 400;
    /* Regular */
    text-transform: none;
    /* User handles casing or we assume input is correct, but 'Estamos Trabajando' suggests normal sentence case or maximize compatibility */
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #fff;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.cct-banner-title {
    font-size: 32px;
    /* Match hero-title 32px */
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 300;
    /* Match hero-title Light */
    color: #fff !important;
    text-align: left;
}

/* Responsive Static Banner */
@media (max-width: 768px) {
    .cct-banner-blur-box {
        max-width: 90%;
        border-top-right-radius: 40px;
    }

    .cct-banner-title {
        font-size: 32px;
    }
}


/* --- CSS PARA MÓVIL: TEXTO Y BOTÓN A LA IZQUIERDA --- */
@media (max-width: 900px) {
    
    /* 1. La Caja Blur */
    .hero-blur-box {
        max-width: 90%;
        margin-left: 5%;
        border-top-right-radius: 30px;
        border-top-left-radius: 30px;
        bottom: 0;
    }

    /* 2. Espacio interno (Padding) */
    .hero-blur-box-inner {
        /* 25px lados. 110px abajo para dejar espacio al botón y puntos */
        padding: 30px 25px 110px 25px; 
        align-items: flex-start; /* Forzar alineación izquierda */
    }

    /* 3. Textos */
    .hero-title {
        font-size: 22px !important;
        line-height: 1.1 !important;;
        text-align: left;
    }
    
    .hero-description {
        font-size: 15px !important;
        line-height: 1.2 !important;;
        text-align: left;
        /* Cortar si es muy largo */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-tag {
        margin-bottom: 15px;
        font-size: 10px;
        padding: 4px 12px;
    }

    /* 4. POSICIÓN DEL BOTÓN (Aquí está la magia) */
    .hero-btn-wrap {
        position: absolute;
        right: auto !important; /* Quitamos la derecha */
        left: 25px !important;  /* Lo pegamos a la izquierda */
        bottom: 60px !important; /* Arriba de los puntos */
        z-index: 10;
    }
    
    .hero-custom-btn {
        padding: 10px 24px;
        font-size: 12px;
        width: auto;
		margin: 0px 20px;
    }
}