/* ===== NEXIR ABOUT US - Keidea Muebles ===== */

.nexir-about {
    color: #383838;
    overflow: hidden;
}

/* ----- HERO ----- */
.nexir-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 15px;
}

.nexir-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nexir-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 100%);
    z-index: 1;
}

.nexir-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.nexir-hero__badge {
    display: inline-block;
    background: #8dbc13;
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.nexir-hero__title {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.nexir-hero__subtitle {
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    opacity: .92;
    text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

/* ----- STATS ----- */
.nexir-stats {
    background: #8dbc13;
    padding: 40px 0;
    color: #fff;
    border-radius: 20px;
    margin: 24px 15px 0;
}

.nexir-stats__item {
    text-align: center;
    padding: 12px 8px;
}

.nexir-stats__number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
}

.nexir-stats__number small {
    font-size: 22px;
    font-weight: 600;
}

.nexir-stats__label {
    display: block;
    font-size: 14px;
    margin-top: 4px;
    opacity: .9;
    font-weight: 500;
}

/* ----- SECTIONS ----- */
.nexir-section {
    padding: 72px 0;
}

.nexir-section--alt {
    background: #f8f8f8;
    border-radius: 20px;
    margin: 0 15px;
    padding: 56px 24px;
}

.nexir-section__tag {
    display: inline-block;
    color: #8dbc13;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.nexir-section__text h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.2;
    color: #2a2a2a;
}

.nexir-section__text p {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 16px;
}

.nexir-section__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.nexir-section__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.nexir-section__image:hover img {
    transform: scale(1.03);
}

/* ----- GALLERY ----- */
.nexir-gallery {
    padding: 72px 0;
    background: #f8f8f8;
    border-radius: 20px;
    margin: 0 15px;
}

.nexir-gallery__header {
    margin-bottom: 40px;
}

.nexir-gallery__header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #2a2a2a;
    margin: 0 0 10px;
}

.nexir-gallery__header p {
    font-size: 16px;
    color: #777;
    margin: 0;
}

.nexir-gallery__item {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.nexir-gallery__item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.nexir-gallery__item:hover img {
    transform: scale(1.05);
}

/* ----- SERVICES ----- */
.nexir-services {
    padding: 72px 0;
}

.nexir-services__card {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    margin-bottom: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.nexir-services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.nexir-services__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(141,188,19,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.nexir-services__icon i {
    font-size: 26px;
    color: #8dbc13;
}

.nexir-services__card h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #2a2a2a;
}

.nexir-services__card p {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

/* ----- REVIEWS ----- */
.nexir-reviews {
    padding: 72px 0;
    background: #fff;
    border-radius: 20px;
    margin: 0 15px;
}

.nexir-reviews__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.nexir-reviews__stars {
    display: flex;
    gap: 2px;
}

.nexir-reviews__stars i {
    color: #fbbc04;
    font-size: 20px;
}

.nexir-reviews__star-partial {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 15px;
}

.nexir-reviews__star-partial i {
    display: inline-block;
}

.nexir-reviews__count {
    font-size: 15px;
    color: #777;
}

.nexir-reviews .row {
    row-gap: 24px;
}

.nexir-reviews__card {
    background: #f6f6f6;
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.nexir-reviews__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,.06);
}

.nexir-reviews__card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.nexir-reviews__card-stars i {
    color: #fbbc04;
    font-size: 15px;
}

.nexir-reviews__card-text {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 auto;
    padding-bottom: 16px;
    flex-grow: 1;
}

.nexir-reviews__card-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.nexir-reviews__card-name {
    font-size: 14px;
    font-weight: 700;
    color: #2a2a2a;
}

.nexir-reviews__card-via {
    font-size: 13px;
    color: #aaa;
}

.nexir-reviews__card-via i {
    margin-right: 4px;
}

.nexir-reviews__footer {
    margin-top: 28px;
}

.nexir-reviews__link {
    display: inline-block;
    color: #383838;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid #ddd;
    border-radius: 12px;
    transition: all .2s ease;
}

.nexir-reviews__link:hover {
    border-color: #8dbc13;
    color: #8dbc13;
    text-decoration: none;
}

.nexir-reviews__link i {
    margin-right: 6px;
}

/* ----- CTA ----- */
.nexir-cta {
    padding: 0 0 72px;
}

.nexir-cta__card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    border: 1px solid #eee;
}

.nexir-cta__image {
    height: 100%;
    min-height: 340px;
}

.nexir-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nexir-cta__info {
    padding: 40px 44px;
}

.nexir-cta__info h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #2a2a2a;
}

.nexir-cta__info > p {
    font-size: 16px;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.6;
}

.nexir-cta__details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.nexir-cta__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #383838;
}

.nexir-cta__detail i {
    color: #8dbc13;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.nexir-cta__detail a {
    color: #383838;
    text-decoration: none;
    font-weight: 600;
}

.nexir-cta__detail a:hover {
    color: #8dbc13;
}

.nexir-cta__btn {
    display: inline-block;
    background: #8dbc13;
    color: #fff;
    padding: 14px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.nexir-cta__btn:hover {
    background: #7aa511;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.nexir-cta__btn i {
    margin-right: 6px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 767px) {
    .nexir-hero {
        height: 380px;
        margin: 0 10px;
        border-radius: 16px;
    }

    .nexir-hero__content {
        padding: 24px 20px;
    }

    .nexir-hero__title {
        font-size: 28px;
    }

    .nexir-hero__subtitle {
        font-size: 16px;
    }

    .nexir-stats {
        margin: 16px 10px 0;
        border-radius: 16px;
        padding: 28px 0;
    }

    .nexir-stats__number {
        font-size: 30px;
    }

    .nexir-stats__label {
        font-size: 12px;
    }

    .nexir-section {
        padding: 48px 0;
    }

    .nexir-section--alt {
        margin: 0 10px;
        padding: 40px 16px;
        border-radius: 16px;
    }

    .nexir-section__text h2,
    .nexir-gallery__header h2 {
        font-size: 26px;
    }

    .nexir-section__image {
        margin-top: 28px;
        border-radius: 14px;
    }

    .nexir-section__image img {
        height: 260px;
    }

    .nexir-gallery {
        padding: 48px 0;
        margin: 0 10px;
        border-radius: 16px;
    }

    .nexir-gallery__item {
        border-radius: 12px;
    }

    .nexir-gallery__item img {
        height: 180px;
    }

    .nexir-services {
        padding: 48px 0;
    }

    .nexir-services__card {
        border-radius: 14px;
    }

    .nexir-reviews {
        margin: 0 10px;
        padding: 48px 0;
        border-radius: 16px;
    }

    .nexir-reviews__card {
        border-radius: 14px;
    }

    .nexir-cta {
        padding: 0 0 48px;
    }

    .nexir-cta__card {
        border-radius: 16px;
        margin: 0 -5px;
    }

    .nexir-cta__image {
        min-height: 220px;
        border-radius: 16px 16px 0 0;
    }

    .nexir-cta__info {
        padding: 28px 24px;
    }

    .nexir-cta__info h2 {
        font-size: 26px;
    }

    .nexir-cta__btn {
        border-radius: 10px;
        width: 100%;
        text-align: center;
    }
}
