/* Font Face Definitions */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Clase específica para el color #231942 con mayor especificidad */
.landing-slider .landing-item h4.text-secondary-dark {
    color: #231942 !important;
}

body, html {
    background: #f1ffe9;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.iru-landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #f1ffe9;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.landing-slider {
    width: 100vw;
    max-width: 480px;
    margin: 0 auto;
}
.landing-item {
    text-align: center;
    padding: 0 1.5rem;
}
.iru-landing-title {
    color: #231942;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0;
    line-height: 1.25;
    text-align: center;
    word-break: break-word;
}
.iru-landing-img {
    width: 70vw;
    max-width: 320px;
    min-width: 120px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
}
.footer.fixed-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    left: 0;
    right: 0;
    background: #f1ffe9;
    border-top: none;
    box-shadow: none;
}
.iru-landing-btns {
    display: flex;
    gap: 1.2rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
    justify-content: center;
    align-items: center;
}
.iru-btn, .iru-btn-outline {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 18px;
    padding: 1.3rem 0;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 4px 16px rgba(35,25,66,0.08);
    letter-spacing: 0.5px;
    margin: 0;
    outline: none;
    border: none;
    cursor: pointer;
    display: block;
    max-width: 100%;
}
.iru-btn {
    background: #231942;
    color: #fff;
    border: none;
}
.iru-btn:hover, .iru-btn:focus {
    background: #38b449;
    color: #fff;
}
.iru-btn-outline {
    background: #fff;
    color: #231942;
    border: 2px solid #231942;
}
.iru-btn-outline:hover, .iru-btn-outline:focus {
    background: #38b449;
    color: #fff;
    border-color: #38b449;
}
.iru-landing-note {
    color: #231942;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}
.iru-landing-note a {
    color: #38b449;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .landing-slider {
        min-height: 220px;
    }
    .landing-item {
        padding: 0 0.5rem;
    }
    .iru-landing-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    .iru-landing-img {
        width: 90vw;
        max-width: 220px;
    }
    .footer.fixed-bottom {
        padding-left: 0;
        padding-right: 0;
    }
    .iru-landing-btns {
        flex-direction: column;
        gap: 1rem;
        max-width: 98vw;
        margin-bottom: 1.2rem;
        align-items: center;
    }
    .iru-btn, .iru-btn-outline {
        font-size: 1.1rem;
        padding: 1.1rem 0;
        width: 100%;
        max-width: 100%;
    }
}
.iru-landing-slider.active-1 .iru-landing-item:nth-child(1) {
    transform: translateX(0);
}
.iru-landing-slider.active-1 .iru-landing-item:nth-child(2) {
    transform: translateX(100vw);
}
.iru-landing-slider.active-1 .iru-landing-item:nth-child(3) {
    transform: translateX(200vw);
}
.iru-landing-slider.active-2 .iru-landing-item:nth-child(1) {
    transform: translateX(-100vw);
}
.iru-landing-slider.active-2 .iru-landing-item:nth-child(2) {
    transform: translateX(0);
}
.iru-landing-slider.active-2 .iru-landing-item:nth-child(3) {
    transform: translateX(100vw);
}
.iru-landing-slider.active-3 .iru-landing-item:nth-child(1) {
    transform: translateX(-200vw);
}
.iru-landing-slider.active-3 .iru-landing-item:nth-child(2) {
    transform: translateX(-100vw);
}
.iru-landing-slider.active-3 .iru-landing-item:nth-child(3) {
    transform: translateX(0);
}
.iru-landing-slider .iru-landing-item {
    /* fallback for no active class */
    transform: translateX(0);
}
.iru-landing-dots {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin: 1.2rem 0 0.5rem 0;
}
.iru-landing-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1e7d7;
    border: none;
    outline: none;
    transition: background 0.2s;
    cursor: pointer;
}
.iru-landing-dot.active {
    background: #38b449;
} 
.landing {
    margin-top: calc(50vh - 350px);
  }
  