/* Slider Container */
.fa-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Wrapper */
.fa-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    transition: none;         /* no transición por defecto */
  transform: none;          /* estado inicial estable */
  will-change: auto;        /* NO reservar capa al inicio */
}

/* cuando el slider ya está listo, recién ahí */
.fa-slider-wrapper.fa-slider-ready {
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* Disable transition for the first paint (JS toggles this class) */
.fa-slider-wrapper.fa-slider-notransition {
    transition: none !important;
}

/* All slides in a row */
.fa-slide-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

/* Navigation */
.fa-slider-prev,
.fa-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.3s;
}

.fa-slider-prev:hover,
.fa-slider-next:hover {
    opacity: 0.8;
}

.fa-slider-prev { left: 20px; }
.fa-slider-next { right: 20px; }

@media (max-width: 768px) {
    .fa-slider-prev { left: 10px; }
    .fa-slider-next { right: 10px; }
}

/* Utility for hero LCP with <img> */
.fa-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Slider Pagination Dots */
.fa-slider-pagination {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    pointer-events: auto;
}

.fa-slider-dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.fa-slider-dot:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1.2);
}

.fa-slider-dot.active {
    background: #1E3A5F;
    transform: scale(1.3);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fa-slider-wrapper {
        transition: none !important;
    }
    .fa-slider-dot,
    .fa-slider-prev,
    .fa-slider-next {
        transition: none !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .fa-slider-pagination {
        bottom: 5rem;
        gap: 1rem;
    }

    .fa-slider-dot {
        width: 1rem;
        height: 1rem;
    }
}





/* Slide 03 Styles */
.fa-slide-03 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 10rem;
}

/* LCP image layer (only for first slide) */
.fa-slide-03 .fa-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* overlay */
.fa-slide-03::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.2);
    z-index: 1;
}

.fa-slide-03-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

/* Badge with bell icon */
.fa-slide-03-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 2rem;
    border-radius: 25px;
	font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E3A5F;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fa-slide-03-badge-icon {
    font-size: 1.6rem;
}

.fa-slide-03-title {
     font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: 4.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    text-wrap: balance;
}

.fa-slide-03-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.fa-slide-03-bottom {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    margin-top: 1rem;
	
}

.fa-slide-03-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    background: rgba(93, 173, 226, 0.9);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.fa-slide-03-btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: #2C3E87;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: background 0.3s;
}

.fa-slide-03-btn:hover {
    background: #1f2d5f;
}

.fa-slide-03-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .fa-slide-03 {
        padding: 2rem 5rem;
    }

    .fa-slide-03-content {
        gap: 1.5rem;
    }

    .fa-slide-03-badge {
        font-size: 1.2rem;
        padding: 0.6rem 1.5rem;
    }

    .fa-slide-03-badge-icon {
        font-size: 1.4rem;
    }

    .fa-slide-03-title {
        font-size: 3.5rem;
    }

    .fa-slide-03-description {
        font-size: 1.8rem;
        line-height: 1.5;
        padding: 0 1rem;
    }

    .fa-slide-03-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .fa-slide-03-price {
        font-size: 2.5rem;
        padding: 0.8rem 2rem;
        text-align: center;
        justify-content: center;
    }

    .fa-slide-03-btn {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}



/* Slide 02 Styles */
.fa-slide-02 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 10rem 10rem;
}

/* LCP image layer (only for first slide) */
.fa-slide-02 .fa-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* overlay */
.fa-slide-02::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.1);
    z-index: 1;
}

.fa-slide-02-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
}

.fa-slide-02-white-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    max-width: 650px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.fa-slide-02-image-top {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fa-slide-02-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fa-slide-02-box-content {
    padding: 2.5rem;
}

.fa-slide-02-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 1.6vw, 2.5rem);
    font-weight: 600;
    color: #1E3A5F;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.fa-slide-02-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1E3A5F;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
}

.fa-slide-02-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.fa-slide-02-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E3A5F;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.fa-slide-02-features li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    top: 0;
    color: #1E3A5F;
    font-size: 1.6rem;
    line-height: 1.4;
}

.fa-slide-02-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    background: rgba(93, 173, 226, 0.95);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
}

.fa-slide-02-bottom {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
}

.fa-slide-02-btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #2C3E87;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.3s;
}

.fa-slide-02-btn:hover {
    background: #1f2d5f;
}

.fa-slide-02-btn svg {
    width: 18px;
    height: 18px;
}

/* Desktop con altura limitada (laptops, zoom, etc) */
@media (min-width: 1000px) and (max-height: 730px) {
    .fa-slide-02 {
        padding: 8rem 6rem;
        align-items: center;
    }

    .fa-slide-02-content {
        justify-content: center;
    }

    .fa-slide-02-white-box {
        max-width: 100%;
        display: flex;
        flex-direction: row;
    }

    .fa-slide-02-image-top {
        width: 300px;
        height: auto;
        min-height: 100%;
        flex-shrink: 0;
    }

    .fa-slide-02-image-top img {
        height: 100%;
    }

    .fa-slide-02-box-content {
        flex: 1;
        padding: 2rem;
    }

    .fa-slide-02-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .fa-slide-02-description {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .fa-slide-02-features {
        margin-bottom: 1rem;
    }

    .fa-slide-02-features li {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }

    .fa-slide-02-bottom {
        align-items: stretch;
    }

    .fa-slide-02-price {
        display: flex;
        align-items: center;
    }

    .fa-slide-02-btn {
        padding: 1rem 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .fa-slide-02 {
        padding: 2rem 5rem;
        align-items: center;
        padding-top: 8rem;
    }

    .fa-slide-02-content {
        justify-content: center;
    }

    .fa-slide-02-white-box {
        max-width: 100%;
    }

    .fa-slide-02-image-top {
        height: 150px;
    }

    .fa-slide-02-box-content {
        padding: 2rem;
    }

    .fa-slide-02-title {
        font-size: 1.8rem;
    }

    .fa-slide-02-description {
        font-size: 1.2rem;
    }

    .fa-slide-02-features li {
        font-size: 1.2rem;
    }

    .fa-slide-02-price {
        font-size: 1.8rem;
        display: block;
        text-align: center;
    }
}

/* Slide 01 Styles */
.fa-slide-01 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 10rem 10rem;
}

/* LCP image layer (only for first slide) */
.fa-slide-01 .fa-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 0;
}

/* overlay */
.fa-slide-01::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.1);
    z-index: 1;
}

.fa-slide-01-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 4rem;
}

.fa-slide-01-left-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.fa-slide-01-title-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    text-align: center;
    max-width: 600px;
}

.fa-slide-01-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3A5F;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-transform: none !important;
}

.fa-slide-01-description {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E3A5F;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.fa-slide-01-price-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.fa-slide-01-price-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fa-slide-01-price-label {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1;
}

.fa-slide-01-price {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1;
}

.fa-slide-01-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #E8781D;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: center;
}

.fa-slide-01-btn:hover {
    background: #d06a15;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .fa-slide-01 {
        height: 100vh;
        padding: 2rem 2rem;
    }

    .fa-slide-01-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .fa-slide-01-left-section {
        width: 100%;
        align-items: center;
    }

    .fa-slide-01-title-box {
        padding: 1.5rem 2rem;
        width: 100%;
    }

    .fa-slide-01-title {
        font-size: 1.75rem;
    }

    .fa-slide-01-description {
        font-size: 1rem;
    }

    .fa-slide-01-price-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .fa-slide-01-price-label {
        font-size: 2rem;
    }

    .fa-slide-01-price {
        font-size: 3rem;
    }

    .fa-slide-01-btn {
        padding: 0.875rem 2rem;
        font-size: 1.125rem;
    }
}


/* Slide 04 Styles - Horizontal Layout */
.fa-slide-04 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 8rem 6rem;
}

/* LCP image layer */
.fa-slide-04 .fa-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* overlay */
.fa-slide-04::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.1);
    z-index: 1;
}

.fa-slide-04-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-slide-04-white-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
}

.fa-slide-04-image-left {
    width: 350px;
    min-height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.fa-slide-04-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fa-slide-04-box-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fa-slide-04-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 1.6vw, 2.5rem);
    font-weight: 600;
    color: #1E3A5F;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.fa-slide-04-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1E3A5F;
    line-height: 1.4;
    margin: 0 0 1.2rem 0;
}

.fa-slide-04-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.fa-slide-04-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E3A5F;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.fa-slide-04-features li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    top: 0;
    color: #1E3A5F;
    font-size: 1.6rem;
    line-height: 1.4;
}

.fa-slide-04-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    background: rgba(93, 173, 226, 0.95);
    padding: 1rem 2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.fa-slide-04-bottom {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
}

.fa-slide-04-btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #2C3E87;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.3s;
}

.fa-slide-04-btn:hover {
    background: #1f2d5f;
}

.fa-slide-04-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .fa-slide-04 {
        padding: 2rem 2rem;
        padding-top: 8rem;
    }

    .fa-slide-04-white-box {
        flex-direction: column;
    }

    .fa-slide-04-image-left {
        width: 100%;
        height: 200px;
        min-height: auto;
    }

    .fa-slide-04-box-content {
        padding: 2rem;
    }

    .fa-slide-04-title {
        font-size: 1.8rem;
    }

    .fa-slide-04-description {
        font-size: 1.2rem;
    }

    .fa-slide-04-features li {
        font-size: 1.2rem;
    }

    .fa-slide-04-price {
        font-size: 1.8rem;
        text-align: center;
        justify-content: center;
    }
}