:root {
    --primary-blue: #01a4f1;
    --dark-blue: #01315b;
    --text-muted: #494949;
    --bg-icon: #e8f7ff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: var(--dark-blue);
    overflow-x: hidden;
}

/* Section Badge */
.badge-pill {
    background-color: #e6f6ff;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
}

/* Titles & Text */
.main-title {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--dark-blue);
}

.description-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Buttons */
.btn-custom-primary {
    background-color: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-custom-primary:hover {
    background-color: #28a3ed;
    color: #fff;
    box-shadow: 0 4px 12px rgba(56, 182, 255, 0.3);
}

.play-btn-link {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.play-btn-link:hover {
    color: var(--dark-blue);
    opacity: 0.8;
}

.play-icon-circle {
    width: 36px;
    height: 36px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding-left: 2px;
}

/* Graphics & Cards Container */
.visual-wrapper {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Background Lines */
.bg-graphic-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* Interactive Cards */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: var(--bg-icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.35;
    margin: 0;
}

/* Desktop Exact Positioning */
@media (min-width: 992px) {
    .visual-wrapper {
        min-height: 520px;
    }

    .cards-absolute-container {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .card-pos-top-left {
        position: absolute;
        width: 220px;
        top: 35px;
        left: 12%;
    }

    .card-pos-bottom-left {
        position: absolute;
        width: 220px;
        bottom: 35px;
        left: 12%;
    }

    .card-pos-center-right {
        position: absolute;
        width: 220px;
        top: 50%;
        right: 8%;
        transform: translateY(-50%);
    }

    .card-pos-center-right:hover {
        transform: translateY(-53%);
    }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .visual-wrapper {
        min-height: auto;
        padding: 2rem 0;
    }

    .bg-graphic-svg {
        opacity: 0.3;
    }

    .main-title {
        font-size: 2rem;
    }
}

/*======About Style Services=========*/

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Imagen superior con altura fija */
.service-card-img-wrapper {
    position: relative;
    height: 280px;
    width: 100%;
    overflow: hidden;
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img-wrapper img {
    transform: scale(1.05);
}

/* Cajas de contenido que se superponen a la imagen */
.service-card-body {
    position: relative;
    margin-top: -30px;
    /* Superposición sobre la imagen */
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 30px 24px 24px 24px;
    border-radius: 12px;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Variante Blanca (Cards 1 y 3) */
.service-card-body.bg-white-card {
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* Variante Azul / Destacada (Card 2) */
.service-card-body.bg-blue-card {
    background-color: var(--primary-blue, #38b6ff);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(56, 182, 255, 0.3);
}

/* Ícono Flotante Circular Cincelado en el Borde */
.service-card-icon {
    position: absolute;
    top: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.bg-white-card .service-card-icon {
    background-color: var(--primary-blue, #38b6ff);
    color: #ffffff;
}

.bg-blue-card .service-card-icon {
    background-color: #ffffff;
    color: var(--primary-blue, #38b6ff);
}

/* Textos dentro de las tarjetas */
.service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.bg-white-card .service-card-title {
    color: var(--dark-blue, #0b132a);
}

.bg-blue-card .service-card-title {
    color: #ffffff;
}

.service-card-text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bg-white-card .service-card-text {
    color: var(--text-muted, #64748b);
}

.bg-blue-card .service-card-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Botón / Link Read More */
.service-card-link {
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.bg-white-card .service-card-link {
    color: var(--dark-blue, #0b132a);
}

.bg-blue-card .service-card-link {
    color: #ffffff;
}

.service-card-link:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

.service-card-link i {
    font-size: 0.8rem;
}


/* Contenedores de Imágenes */
.grid-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.grid-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.grid-img-wrapper:hover img {
    transform: scale(1.03);
}

/* Alturas específicas para réplica exacta del collage */
.img-tall-top {
    height: 260px;
}

.img-large-bottom {
    height: 320px;
}

/* Ajuste de tipografías y párrafos de la sección */
.sub-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue, #0b132a);
    margin-bottom: 8px;
}

.sub-feature-text {
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Ajustes Responsive para móviles */
@media (max-width: 767.98px) {
    .img-tall-top {
        height: 200px;
    }

    .img-large-bottom {
        height: 240px;
    }
}

a {
    text-decoration: none;
    list-style: none;
}


/* Fondo general con degradado suave sutil */
.hero-section {
    /*background: linear-gradient(135deg, #f4fbff 0%, #ffffff 60%, #eef8ff 100%);*/
    background-image: url(/assets/img/all-images/bghero.png) !important;
    position: relative;
    overflow: hidden;
    margin-top: 7rem;
}

/* Badge numérico superior */
.hero-badge-pill {
    background-color: #e6f6ff;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
}

/* Título Hero */
.hero-title {
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--dark-blue, #0b132a);
    letter-spacing: -0.5px;
}

/* Botón Secundario (Outline) */
.btn-custom-outline {
    background-color: transparent;
    color: var(--primary-blue, #38b6ff);
    border: 1.5px solid var(--primary-blue, #38b6ff);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-custom-outline:hover {
    background-color: var(--primary-blue, #38b6ff);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(56, 182, 255, 0.25);
}

/* Tarjeta Flotante de Reseñas / Equipo */
.hero-rating-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 320px;
}

.rating-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-blue, #0b132a);
    margin-bottom: 10px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-blue, #38b6ff);
    color: #ffffff;
    border: 2px solid #ffffff;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.stars-wrapper {
    color: #ffb800;
    font-size: 0.8rem;
}

.rating-score {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-blue, #0b132a);
    margin-left: 4px;
}

.reviews-count {
    font-size: 0.8rem;
    color: var(--text-muted, #64748b);
}

/* Contenedor de la Imagen Principal */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Elemento decorativo gráfico (Astre/Chispa azul superior derecha) */
.spark-decorator {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    color: #cbebff;
    z-index: 1;
}

/* Adaptación Pantallas Móviles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-img {
        height: 380px;
    }

    .spark-decorator {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }
}


/* Contenedor principal con fondo oscuro e imagen de piscina */
.slider-section {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 19, 42, 0.82) 0%, rgba(11, 19, 42, 0.92) 100%),
        url('https://images.unsplash.com/photo-1576013551627-0cc20b96c2a7?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

/* Ajustes de textos en fondo oscuro */
.slider-section .badge-pill {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.slider-section .slider-title {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.slider-section .slider-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Área visible del Carousel */
.slider-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
}

/* Pista que contiene los slides */
.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Estilo de la Tarjeta del Slider */
.slider-card {
    flex: 0 0 280px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 410px;
    transition: transform 0.3s ease;
}

.slider-card:hover {
    transform: translateY(-6px);
}

.slider-card-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.slider-card-body {
    padding: 24px 20px;
    background: #ffffff;
    color: var(--dark-blue, #0b132a);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
}

/* Ícono circular superpuesto */
.slider-card-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #e8f7ff;
    color: var(--primary-blue, #38b6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.slider-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue, #0b132a);
    line-height: 1.35;
    margin-top: 8px;
    margin-bottom: 8px;
}

.slider-card-text {
    font-size: 0.82rem;
    color: var(--text-muted, #64748b);
    line-height: 1.5;
    margin-bottom: 12px;
}

.slider-card-link {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark-blue, #0b132a);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s ease;
}

.slider-card-link:hover {
    color: var(--primary-blue, #38b6ff);
    transform: translateX(3px);
}

/* Controls/Navegación Flechas Abajo */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.btn-slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-slider-arrow:hover {
    background-color: var(--primary-blue, #38b6ff);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(56, 182, 255, 0.4);
}

/* Responsivo para Pantallas */
@media (min-width: 992px) {
    .slider-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 991.98px) {
    .slider-section .slider-title {
        font-size: 2rem;
    }

    .slider-card {
        flex: 0 0 260px;
        height: 390px;
    }
}


/* Fondo y contenedor de la sección */
.testimonials-section {
    background-color: #ffffff;
}

/* Tarjeta de Testimonio */
.testimonial-card {
    background-color: #f0f8ff;
    /* Fondo claro azulado */
    border-radius: 16px;
    padding: 35px 25px 30px 25px;
    text-align: center;
    position: relative;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tarjeta Destacada (Centro) */
.testimonial-card.featured {
    border-color: var(--primary-blue, #38b6ff);
    background-color: #ffffff;
    box-shadow: 0 12px 35px rgba(56, 182, 255, 0.12);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Comillas en la esquina superior derecha */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--primary-blue, #38b6ff);
    font-size: 2.2rem;
    line-height: 1;
    opacity: 0.8;
}

/* Avatar del Cliente */
.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Estrellas de Calificación */
.rating-stars {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
}

.star-box {
    width: 22px;
    height: 22px;
    background-color: #e3f4ff;
    color: var(--primary-blue, #38b6ff);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Texto de la Reseña */
.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Información del Autor */
.author-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-blue, #0b132a);
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.82rem;
    color: var(--text-muted, #64748b);
    margin-bottom: 0;
}

/* Paginación por Puntos (Dots) */
.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbe8ff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid var(--primary-blue, #38b6ff);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot.active::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue, #38b6ff);
    border-radius: 50%;
}

@media (max-width: 991.98px) {
    .testimonial-card {
        margin-bottom: 10px;
    }
}

.faq-section {
    background-color: #ffffff;
}

.faq-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 16px;
    overflow: hidden;
}

.faq-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

/* Estilos del Acordeón */
.faq-accordion .faq-item {
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    background-color: #eef8ff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion .faq-header {
    width: 100%;
    background-color: #eef8ff;
    color: var(--dark-blue, #0b132a);
    font-weight: 700;
    font-size: 1rem;
    padding: 20px 24px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

/* Estado Activo / Abierto */
.faq-accordion .faq-item.active {
    background-color: var(--primary-blue, #38b6ff);
    box-shadow: 0 10px 25px rgba(56, 182, 255, 0.25);
}

.faq-accordion .faq-item.active .faq-header {
    background-color: var(--primary-blue, #38b6ff);
    color: #ffffff;
}

/* Animación del Contenido */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background-color: var(--primary-blue, #38b6ff);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 24px;
}

.faq-accordion .faq-item.active .faq-body {
    max-height: 300px;
    padding: 0 24px 20px 24px;
    transition: max-height 0.35s ease-in-out, padding 0.3s ease;
}

@media (max-width: 991.98px) {
    .faq-image-wrapper {
        min-height: 350px;
    }
}

.cta-section {
    background-color: #ffffff;
}

/* Contenedor principal de la tarjeta CTA */
.cta-banner-card {
    position: relative;
    background-color: var(--primary-blue, #38b6ff);
    border-radius: 20px;
    overflow: hidden;
    color: #ffffff;
}

/* Ilustraciones de línea en el fondo azul */
.cta-bg-illustrations {
    position: absolute;
    right: 35%;
    top: 0;
    bottom: 0;
    width: 300px;
    opacity: 0.15;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Cpath d='M10 20 h30 v10 h-30 z'/%3E%3Ccircle cx='70' cy='30' r='12'/%3E%3Cpath d='M20 60 l20 20'/%3E%3Cpath d='M70 70 m-10 0 a10 10 0 1 0 20 0 a10 10 0 1 0 -20 0'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 120px;
    z-index: 1;
}

/* Divisoria curva hacia la imagen derecha */
.cta-curved-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 33%;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

/* Contenido del texto */
.cta-content {
    position: relative;
    z-index: 3;
    padding: 60px 40px 60px 50px;
}

.cta-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 480px;
}

/* Botones del CTA */
.btn-cta-white {
    background-color: #ffffff;
    color: var(--primary-blue, #38b6ff);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-cta-white:hover {
    background-color: #f0f8ff;
    color: #28a3ed;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px 26px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
}

/* Wrapper de la imagen derecha */
.cta-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Ajustes Responsive */
@media (max-width: 991.98px) {
    .cta-content {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-curved-divider,
    .cta-bg-illustrations {
        display: none;
    }

    .cta-image-wrapper {
        min-height: 280px;
    }
}