/* =========================================================
   SECCIÓN CATEGORÍAS
   ========================================================= */

.irk-categories {
    width: 100%;
    background: #f7f7f9;
    padding: 100px 10px;
}


/* =========================================================
   CONTENEDORES
   ========================================================= */

.irk-categories-header,
.irk-categories-grid {
        width: min(95%, 1430px);

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.irk-categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 42px;
}


.irk-categories-header h2 {
    margin: 0;

    color: var(--dark-blue);

    font-size: 30px;
    line-height: 1.2;

    font-weight:600;
}


/* =========================================================
   BOTÓN VER TODAS
   ========================================================= */

.irk-categories-button {
    flex-shrink: 0;

    min-width: 190px;

    padding: 14px 28px;

    border-radius: 30px;

    background: var(--blue);

    color: var(--white);

    text-decoration: none;

    text-align: center;

    font-size: 17px;

    font-weight: 500;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.irk-categories-button:hover {
    background: var(--dark-blue);

    transform: translateY(-2px);
}


/* =========================================================
   GRID ESCRITORIO
   ========================================================= */

/*
   6 columnas internas.

   Cada tarjeta ocupa 2 columnas.

   Resultado:
   6 / 2 = 3 tarjetas por fila.
*/

.irk-categories-grid {
    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 24px 14px;
}


/* =========================================================
   TARJETA
   ========================================================= */

.irk-category-card {
    grid-column: span 2;

    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 1.72 / 1;

    overflow: hidden;

    border-radius: 9px;

    background: #ddd;

    text-decoration: none;
}


/* =========================================================
   IMAGEN
   ========================================================= */

.irk-category-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.irk-category-card:hover img {
    transform: scale(1.05);
}


/* =========================================================
   FRANJA AZUL
   ========================================================= */

.irk-category-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    min-height: 58px;

    padding: 12px 17px;

    display: flex;
    align-items: center;

    background: rgba(0, 83, 157, 0.88);

    color: var(--white);
}


.irk-category-overlay span {
    font-size: 18px;

    line-height: 1.25;

    font-weight: 500;
}


.irk-category-card:nth-child(3n + 1):last-child {
    grid-column: 1 / -1;
}

.irk-category-card:nth-last-child(2):nth-child(3n + 1),
.irk-category-card:nth-last-child(1):nth-child(3n + 2) {
    grid-column: span 3;
}










/* =========================================================
   SECCIÓN ¿QUIÉNES SOMOS?
   ========================================================= */

.irk-about {
    position: relative;

    width: 100%;

    overflow: hidden;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================================
   CAPA AMARILLA SOBRE LA IMAGEN
   ========================================================= */

.irk-about::before {
    content: "";

    position: absolute;

    inset: 0;

    /*
       Amarillo con transparencia.
       Puedes aumentar/disminuir el último valor:
       
       0.80 = más transparente
       0.90 = más amarillo
    */

    background: #ffff00f2;

    z-index: 0;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.irk-about-container {

    position: relative;

    z-index: 1;

   width: min(95%, 1430px);



    margin: 0 auto;

    padding: 100px 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 85px;
}


/* =========================================================
   IMAGEN
   ========================================================= */

.irk-about-image {

    width: 100%;

    overflow: hidden;

    border-radius: 15px;

    line-height: 0;
}


.irk-about-image img {

    display: block;

    width: 100%;

    height: auto;

    aspect-ratio: 1.22 / 1;

    object-fit: cover;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.irk-about-content {

    width: 100%;

    color: #000000;
}


.irk-about-content h2 {

    margin: 0 0 28px;

    color: var(--dark-blue);

    font-size: 34px;

    line-height: 1.2;

    font-weight: 700;
}


.irk-about-content p {

    margin: 0 0 28px;

    color: #111111;

    font-size: 19px;

    line-height: 1.45;

    font-weight: 400;
}


.irk-about-content p:last-of-type {

    margin-bottom: 35px;
}


.irk-about-content strong {

    font-weight: 700;
}


/* =========================================================
   BOTÓN DESCARGAR BROCHURE
   ========================================================= */

.irk-about-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-width: 325px;

    padding: 17px 28px;

    border-radius: 40px;

    background: var(--white);

    color: var(--dark-blue);

    text-decoration: none;

    font-size: 20px;

    line-height: 1;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.irk-about-button:hover {

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.irk-about-button i {

    font-size: 20px;
}







/* =========================================================
   SECCIÓN PROYECTOS
========================================================= */

.irk-projects {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #f7f7f9;

    padding: 90px 0 80px;
}


/* =========================================================
   LOGO DECORATIVO
========================================================= */

.irk-projects-decoration {

    position: absolute;

    top: 25px;

    left: -75px;

    width: 280px;

    height: auto;

    opacity: 0.08;

    pointer-events: none;

    user-select: none;

    z-index: 0;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.irk-projects-container {

    position: relative;

    z-index: 1;

   width: min(95%, 1430px);

    margin: 0 auto;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.irk-projects-header {

    width: 100%;

    text-align: center;

    margin-bottom: 55px;
}


.irk-projects-header h2 {

    margin: 0 0 18px;

    color: var(--dark-blue);

    font-size: 34px;

    line-height: 1.2;

    font-weight: 700;
}


.irk-projects-header p {

    margin: 0;

    color: #252525;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 400;
}


/* =========================================================
   SWIPER
========================================================= */

.irk-projects-swiper {

    width: 100%;

    overflow: hidden;

    padding-bottom: 50px;
}


/*
   IMPORTANTE:

   No colocamos width manual al swiper-slide.

   Swiper será quien calcule automáticamente
   el ancho dependiendo de slidesPerView.
*/

.irk-projects-swiper .swiper-slide {

    box-sizing: border-box;

    min-width: 0;

    height: auto;

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* =========================================================
   VIDEO
========================================================= */

.irk-project-video {

    position: relative;

    width: 100%;

    min-width: 0;

    aspect-ratio: 9 / 16;

    overflow: hidden;

    border-radius: 15px;

    background: #000;
}


.irk-project-video iframe {

    display: block;

    width: 100%;

    height: 100%;

    min-width: 0;

    min-height: 0;

    border: 0;

    border-radius: 15px;
}


/* =========================================================
   PERFIL
========================================================= */

.irk-project-profile {

    width: 100%;

    margin-top: 13px;

    text-align: center;
}


.irk-project-profile a {

    color: #202020;

    text-decoration: none;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 600;

    transition: opacity 0.3s ease;
}


.irk-project-profile a:hover {

    opacity: 0.6;
}


/* =========================================================
   PAGINACIÓN
========================================================= */

.irk-projects-pagination {

    position: absolute !important;

    left: 0 !important;

    right: 0 !important;

    bottom: 5px !important;

    width: 100% !important;

    display: flex;

    justify-content: center;

    align-items: center;
}


.irk-projects-pagination
.swiper-pagination-bullet {

    width: 9px;

    height: 9px;

    margin: 0 4px !important;

    background: #c8c8c8;

    opacity: 1;
}


.irk-projects-pagination
.swiper-pagination-bullet-active {

    background: var(--blue);
}


/* =========================================================
   BOTONES DE REDES
========================================================= */

.irk-projects-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 28px;

    margin-top: 25px;
}


.irk-projects-buttons a {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 285px;

    padding: 16px 28px;

    border-radius: 40px;

    color: var(--white);

    text-decoration: none;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 500;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.irk-projects-buttons a:hover {

    transform: translateY(-3px);

    opacity: 0.9;
}


.irk-projects-buttons i {

    font-size: 23px;
}


/* =========================================================
   TIKTOK
========================================================= */

.irk-btn-tiktok {

    background: #000000;
}


/* =========================================================
   INSTAGRAM
========================================================= */

.irk-btn-instagram {

    background: #F63678;
}


/* =========================================================
   FACEBOOK
========================================================= */

.irk-btn-facebook {

    background: var(--blue);
}







/* =========================================================
   SECCIÓN ¿POR QUÉ ELEGIR IRK?
========================================================= */

.irk-why {

    position: relative;

    width: 100%;

    background: var(--white);

    overflow: hidden;

    padding-bottom: 75px;
}


/* =========================================================
   FONDO
========================================================= */

.irk-why-background {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 430px;

 

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    z-index: 0;
}


/* =========================================================
   OVERLAY OSCURO
========================================================= */

.irk-why-background::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);
}


/* =========================================================
   CONTENEDOR
========================================================= */

.irk-why-container {

    position: relative;

    z-index: 2;


    width: min(95%, 1430px);

    margin: 0 auto;

    padding-top: 150px;
    padding-bottom:50px;
}


/* =========================================================
   TÍTULO
========================================================= */

.irk-why-title {

    display: flex;

    justify-content: center;

    margin-bottom: 70px;
}


.irk-why-title h2 {

    margin: 0;

    min-width: 505px;

    padding: 22px 45px;

    border-radius: 60px;

    background: var(--yellow);

    color: #000000;

    text-align: center;

    font-size: 31px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================================
   SWIPER
========================================================= */

.irk-why-swiper {

    width: 100%;

    overflow: hidden;

    padding: 0 0 60px;
}


/* =========================================================
   SLIDE
========================================================= */

.irk-why-swiper .swiper-slide {

    height: auto;

    box-sizing: border-box;

    display: flex;

    align-items: stretch;
}


/* =========================================================
   TARJETA
========================================================= */

.irk-why-card {

    width: 100%;

    min-height: 295px;

    padding: 25px 25px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: var(--white);

    border-radius: 12px;

    box-shadow:
        0 3px 7px rgba(0, 0, 0, 0.16);

    box-sizing: border-box;
}


/* =========================================================
   ICONO COMO IMAGEN
========================================================= */

.irk-why-icon {

    width: 145px;

    height: 145px;

    margin-bottom: 30px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.irk-why-icon img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;
}


/* =========================================================
   TEXTO
========================================================= */

.irk-why-card p {

    max-width: 280px;

    margin: 0;

    color: var(--dark-blue);

    font-size: 20px;

    line-height: 1.35;

    font-weight: 600;
}


/* =========================================================
   PAGINACIÓN
========================================================= */

.irk-why-pagination {

    position: absolute !important;

    left: 0 !important;

    right: 0 !important;

    bottom: 10px !important;

    width: 100% !important;

    display: flex;

    justify-content: center;

    align-items: center;
}


.irk-why-pagination
.swiper-pagination-bullet {

    width: 11px;

    height: 11px;

    margin: 0 5px !important;

    background: #c7c7c7;

    opacity: 1;
}


.irk-why-pagination
.swiper-pagination-bullet-active {

    background: var(--blue);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .irk-why {

        padding-bottom: 65px;
    }


    /* -----------------------------------------
       FONDO
       ----------------------------------------- */

    .irk-why-background {

        height: 430px;
    }


    /* -----------------------------------------
       CONTENEDOR
       ----------------------------------------- */

    .irk-why-container {

        width: calc(100% - 40px);

        padding-top: 65px;
    }


    /* -----------------------------------------
       TÍTULO
       ----------------------------------------- */

    .irk-why-title {

        margin-bottom: 65px;
    }


    .irk-why-title h2 {

        min-width: auto;

        width: 440px;

        max-width: 90%;

        padding: 18px 30px;

        font-size: 27px;
    }


    /* -----------------------------------------
       TARJETA
       ----------------------------------------- */

    .irk-why-card {

        min-height: 290px;

        padding: 25px 20px 30px;
    }


    /* -----------------------------------------
       ICONO
       ----------------------------------------- */

    .irk-why-icon {

        width: 105px;

        height: 105px;

        margin-bottom: 25px;
    }


    /* -----------------------------------------
       TEXTO
       ----------------------------------------- */

    .irk-why-card p {

        font-size: 17px;

        max-width: 260px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 576px) {

    .irk-why {

        padding-bottom: 55px;
    }


    /* -----------------------------------------
       FONDO
       ----------------------------------------- */

    .irk-why-background {

        height: 430px;

        background-position: center center;
    }


    /* -----------------------------------------
       CONTENEDOR
       ----------------------------------------- */

    .irk-why-container {

        width: calc(100% - 30px);

        padding-top: 55px;
    }


    /* -----------------------------------------
       TÍTULO
       ----------------------------------------- */

    .irk-why-title {

        margin-bottom: 65px;
    }


    .irk-why-title h2 {

        width: auto;

        max-width: 100%;

        min-width: 0;

        padding: 17px 30px;

        font-size: 21px;

        line-height: 1.2;
    }


    /* -----------------------------------------
       SWIPER
       ----------------------------------------- */

    .irk-why-swiper {

        padding-bottom: 50px;
    }


    /* -----------------------------------------
       TARJETA
       ----------------------------------------- */

    .irk-why-card {

        min-height: 320px;

        padding: 30px 25px;
    }


    /* -----------------------------------------
       ICONO
       ----------------------------------------- */

    .irk-why-icon {

        width: 120px;

        height: 120px;

        margin-bottom: 30px;
    }


    /* -----------------------------------------
       TEXTO
       ----------------------------------------- */

    .irk-why-card p {

        max-width: 300px;

        font-size: 19px;

        line-height: 1.35;
    }


    /* -----------------------------------------
       PAGINACIÓN
       ----------------------------------------- */

    .irk-why-pagination {

        bottom: 5px !important;
    }


    .irk-why-pagination
    .swiper-pagination-bullet {

        width: 9px;

        height: 9px;

        margin: 0 4px !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .irk-projects {

        padding: 65px 0 65px;
    }


    /* -----------------------------------------
       LOGO DECORATIVO
       ----------------------------------------- */

    .irk-projects-decoration {

        width: 220px;

        left: -65px;

        top: 20px;
    }


    /* -----------------------------------------
       CONTENEDOR
       ----------------------------------------- */

    .irk-projects-container {

        width: calc(100% - 40px);
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .irk-projects-header {

        margin-bottom: 40px;
    }


    .irk-projects-header h2 {

        font-size: 28px;
    }


    .irk-projects-header p {

        max-width: 500px;

        margin-left: auto;

        margin-right: auto;

        font-size: 16px;
    }


    /* -----------------------------------------
       VIDEO
       ----------------------------------------- */

    .irk-project-video {

        border-radius: 13px;
    }


    .irk-project-video iframe {

        border-radius: 13px;
    }


    /* -----------------------------------------
       PERFIL
       ----------------------------------------- */

    .irk-project-profile {

        margin-top: 11px;
    }


    .irk-project-profile a {

        font-size: 15px;
    }


    /* -----------------------------------------
       BOTONES
       ----------------------------------------- */

    .irk-projects-buttons {

        flex-direction: column;

        gap: 15px;

        margin-top: 15px;
    }


    .irk-projects-buttons a {

        width: 100%;

        max-width: 360px;

        min-width: 0;

        padding: 14px 25px;

        font-size: 17px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 576px) {

    .irk-projects {

        padding: 55px 0 55px;
    }


    /* -----------------------------------------
       LOGO
       ----------------------------------------- */

    .irk-projects-decoration {

        width: 185px;

        left: -75px;

        top: 18px;

        opacity: 0.07;
    }


    /* -----------------------------------------
       CONTENEDOR
       ----------------------------------------- */

    .irk-projects-container {

        width: calc(100% - 30px);
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .irk-projects-header {

        margin-bottom: 32px;
    }


    .irk-projects-header h2 {

        max-width: 300px;

        margin-left: auto;

        margin-right: auto;

        margin-bottom: 15px;

        font-size: 21px;

        line-height: 1.3;
    }


    .irk-projects-header p {

        max-width: 310px;

        margin-left: auto;

        margin-right: auto;

        font-size: 13px;

        line-height: 1.4;
    }


    /* -----------------------------------------
       SWIPER
       ----------------------------------------- */

    .irk-projects-swiper {

        padding-bottom: 40px;
    }


    /* -----------------------------------------
       VIDEO
       ----------------------------------------- */

    .irk-project-video {

        width: 100%;

        max-width: 330px;

        border-radius: 12px;
    }


    .irk-project-video iframe {

        border-radius: 12px;
    }


    /* -----------------------------------------
       PERFIL
       ----------------------------------------- */

    .irk-project-profile {

        margin-top: 10px;
    }


    .irk-project-profile a {

        font-size: 13px;
    }


    /* -----------------------------------------
       PAGINACIÓN
       ----------------------------------------- */

    .irk-projects-pagination {

        bottom: 2px !important;
    }


    .irk-projects-pagination
    .swiper-pagination-bullet {

        width: 7px;

        height: 7px;
    }


    /* -----------------------------------------
       BOTONES
       ----------------------------------------- */

    .irk-projects-buttons {

        gap: 12px;

        margin-top:25px;
    }


    .irk-projects-buttons a {

        width: 250px;

        max-width: 250px;

        min-width: 250px;

        padding: 11px 15px;

        font-size: 13px;

        gap: 8px;
    }


    .irk-projects-buttons i {

        font-size: 17px;
    }

}




/* =========================================================
   ÚLTIMOS PROYECTOS REALIZADOS
========================================================= */

.irk-projects-grid {

    width: 100%;


    padding: 100px 0 100px;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.irk-projects-grid-container {

   
    width: min(95%, 1430px);

    margin: 0 auto;
}

.wcontrol100{

    background-color:#FAFAFA;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.irk-projects-grid-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


.irk-projects-grid-header h2 {

    margin: 0;

    color: var(--dark-blue);

    font-size: 32px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================================
   BOTÓN VER TODOS
========================================================= */

.irk-projects-grid-all {

    flex-shrink: 0;

    min-width: 190px;

    padding: 17px 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 40px;

    background: var(--blue);

    color: var(--white);

    text-decoration: none;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 500;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.irk-projects-grid-all span {

    font-size: 20px;

    line-height: 1;
}


.irk-projects-grid-all:hover {

    background: var(--dark-blue);

    transform: translateY(-2px);
}


/* =========================================================
   GRID DE PROYECTOS
========================================================= */

.irk-projects-grid-list {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    column-gap: 30px;

    row-gap: 45px;
}


/* =========================================================
   TARJETA
========================================================= */

.irk-project-grid-card {

    display: block;

    width: 100%;

    color: inherit;

    text-decoration: none;

    min-width: 0;
}


/* =========================================================
   IMAGEN
========================================================= */

.irk-project-grid-image {

    width: 100%;

    aspect-ratio: 1.78 / 1.3;

    overflow: hidden;

    border-radius: 11px;

    background: #eeeeee;
}


.irk-project-grid-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}


/* =========================================================
   HOVER IMAGEN
========================================================= */

.irk-project-grid-card:hover
.irk-project-grid-image img {

    transform: scale(1.05);
}


/* =========================================================
   CONTENIDO
========================================================= */

.irk-project-grid-content {

    padding-top: 18px;
}


/* =========================================================
   TÍTULO PROYECTO
========================================================= */

.irk-project-grid-content h3 {

    margin: 0 0 12px;

    color: var(--dark-blue);

    font-size: 21px;

    line-height: 1.25;

    font-weight: 700;
}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.irk-project-grid-content p {

    margin: 0 0 20px;

    color: #2c2c2c;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 400;
}


/* =========================================================
   BOTÓN VER PROYECTO
========================================================= */

.irk-project-grid-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 25px;

    border-radius: 30px;

    background: var(--blue);

    color: var(--white);

    font-size: 16px;

    line-height: 1.2;

    font-weight: 500;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.irk-project-grid-card:hover
.irk-project-grid-button {

    background: #1764c7;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .irk-projects-grid {

        padding: 65px 0 70px;
    }


    .irk-projects-grid-container {

        width: calc(100% - 40px);
    }


    /* -----------------------------------------
       ENCABEZADO
       ----------------------------------------- */

    .irk-projects-grid-header {

        margin-bottom: 30px;
    }


    .irk-projects-grid-header h2 {

        font-size: 27px;
    }


    .irk-projects-grid-all {

        min-width: 160px;

        padding: 14px 22px;

        font-size: 15px;
    }


    /* -----------------------------------------
       GRID
       ----------------------------------------- */

    .irk-projects-grid-list {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 20px;

        row-gap: 40px;
    }


    /* -----------------------------------------
       CONTENIDO
       ----------------------------------------- */

    .irk-project-grid-content {

        padding-top: 15px;
    }


    .irk-project-grid-content h3 {

        font-size: 18px;

        margin-bottom: 9px;
    }


    .irk-project-grid-content p {

        font-size: 16px;

        margin-bottom: 16px;
    }


    .irk-project-grid-button {

        padding: 11px 21px;

        font-size: 15px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 576px) {

    .irk-projects-grid {

        padding: 50px 0 55px;
    }


    .irk-projects-grid-container {

        width: calc(100% - 30px);
    }


    /* -----------------------------------------
       ENCABEZADO
       ----------------------------------------- */

    .irk-projects-grid-header {

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 22px;

        margin-bottom: 30px;

        text-align: center;
    }


    .irk-projects-grid-header h2 {

        max-width: 280px;

        font-size: 21px;

        line-height: 1.3;
    }


    /* -----------------------------------------
       BOTÓN VER TODOS
       ----------------------------------------- */

    .irk-projects-grid-all {

        min-width: 177px;

        padding: 12px 22px;

        font-size: 14px;
    }


    .irk-projects-grid-all span {

        font-size: 17px;
    }


    /* -----------------------------------------
       GRID
       ----------------------------------------- */

    .irk-projects-grid-list {

        grid-template-columns: 1fr;

        row-gap: 35px;
    }


    /* -----------------------------------------
       IMAGEN
       ----------------------------------------- */

    .irk-project-grid-image {

        aspect-ratio: 1.55 / 1;

        border-radius: 8px;
    }


    /* -----------------------------------------
       CONTENIDO
       ----------------------------------------- */

    .irk-project-grid-content {

        padding-top: 10px;
    }


    .irk-project-grid-content h3 {

        margin-bottom: 7px;

        font-size: 16px;

        line-height: 1.3;
        margin-top:10px;
    }


    .irk-project-grid-content p {

        margin-bottom: 10px;

        font-size: 14px;

        line-height: 1.35;
    }


    /* -----------------------------------------
       BOTÓN
       ----------------------------------------- */

    .irk-project-grid-button {

        padding: 10px 15px;

        border-radius: 20px;

        font-size: 14px;
    }

}










/* =========================================================
   SECCIÓN NUESTROS CLIENTES
========================================================= */

.irk-clients {

    width: 100%;

    background: var(--white);

    padding: 85px 0 90px;

    overflow: hidden;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.irk-clients-container {

    width: min(95%, 1430px);


    margin: 0 auto;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.irk-clients-header {

    text-align: center;

    margin-bottom: 85px;
}


.irk-clients-header h2 {

    margin: 0 0 22px;

    color: #05265B;

    font-size: 36px;

    line-height: 1.2;

    font-weight: 700;
}


.irk-clients-header p {

    margin: 0;

    color: #292929;

    font-size: 21px;

    line-height: 1.4;

    font-weight: 400;
}


/* =========================================================
   SWIPER
========================================================= */

.irk-clients-swiper {

    width: 100%;

    overflow: hidden;

    padding-bottom: 55px;
}


/* =========================================================
   SLIDE
========================================================= */

.irk-clients-swiper .swiper-slide {

    height: auto;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   TARJETA DEL LOGO
========================================================= */

.irk-client-logo {

    width: 100%;

    height: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;


    background: var(--white);

    border: 1px solid #eeeeee;

    border-radius: 20px;
    overflow: hidden;
}


/* =========================================================
   IMAGEN DEL LOGO
========================================================= */

.irk-client-logo img {

    display: block;

    width: 100%;

    max-width: 100%;

    height: auto;

    max-height: 100%;

    object-fit: contain;
}


/* =========================================================
   PAGINACIÓN
========================================================= */

.irk-clients-pagination {

    position: absolute !important;

    left: 0 !important;

    right: 0 !important;

    bottom: 5px !important;

    width: 100% !important;

    display: flex;

    align-items: center;

    justify-content: center;
}


.irk-clients-pagination
.swiper-pagination-bullet {

    width: 10px;

    height: 10px;

    margin: 0 5px !important;

    background: #c7c7c7;

    opacity: 1;
}


.irk-clients-pagination
.swiper-pagination-bullet-active {

    background: var(--blue);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .irk-clients {

        padding: 65px 0 70px;
    }


    .irk-clients-container {

        width: calc(100% - 40px);
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .irk-clients-header {

        margin-bottom: 75px;
    }


    .irk-clients-header h2 {

        margin-bottom: 17px;

        font-size: 28px;
    }


    .irk-clients-header p {

        font-size: 17px;
    }


    /* -----------------------------------------
       LOGOS
       ----------------------------------------- */

    .irk-client-logo {

        border-radius: 17px;
    }


    /* -----------------------------------------
       SWIPER
       ----------------------------------------- */

    .irk-clients-swiper {

        padding-bottom: 50px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 576px) {

    .irk-clients {

        padding: 55px 0 60px;
    }


    .irk-clients-container {

        width: calc(100% - 30px);
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .irk-clients-header {

        margin-bottom: 65px;
    }


    .irk-clients-header h2 {

        margin-bottom: 14px;

        font-size: 22px;

        line-height: 1.3;
    }


    .irk-clients-header p {

        font-size: 15px;

        line-height: 1.4;
    }


    /* -----------------------------------------
       LOGOS
       ----------------------------------------- */

    .irk-client-logo {


        border-radius: 16px;
    }


    .irk-client-logo img {

        max-width: 100%;

    }


    /* -----------------------------------------
       SWIPER
       ----------------------------------------- */

    .irk-clients-swiper {

        padding-bottom: 45px;
    }


    /* -----------------------------------------
       PAGINACIÓN
       ----------------------------------------- */

    .irk-clients-pagination
    .swiper-pagination-bullet {

        width: 8px;

        height: 8px;

        margin: 0 4px !important;
    }

}







/* =========================================================
   PREGUNTAS FRECUENTES
========================================================= */

.irk-faq {

    width: 100%;

    background: #f7f7f9;

    padding: 100px 0 100px;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.irk-faq-container {

    
        width: min(95%, 1430px);


    margin: 0 auto;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.irk-faq-header {

    text-align: center;

    margin-bottom: 55px;
}


.irk-faq-header h2 {

    margin: 0 0 16px;

    color: #05265B;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;
}


.irk-faq-header p {

    max-width: 1000px;

    margin: 0 auto;

    color: #292929;

    font-size: 19px;

    line-height: 1.45;

    font-weight: 400;
}


/* =========================================================
   LISTA
========================================================= */

.irk-faq-list {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 20px;
}


/* =========================================================
   ITEM
========================================================= */

.irk-faq-item {

    width: 100%;

    background: var(--white);

    border-radius: 14px;

    overflow: hidden;
}


/* =========================================================
   PREGUNTA
========================================================= */

.irk-faq-question {

    width: 100%;

    min-height: 58px;

    padding: 17px 23px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: 0;

    outline: none;

    background: var(--white);

    color: #292929;

    text-align: left;

    font-family: inherit;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


/* =========================================================
   ICONO
========================================================= */

.irk-faq-question i {

    flex-shrink: 0;

    width: 18px;

    text-align: center;

    color: #222222;

    font-size: 13px;

    transition:
        transform 0.3s ease;
}


/* =========================================================
   PREGUNTA ABIERTA
========================================================= */

.irk-faq-item.active
.irk-faq-question {

    background: #FFFF00;

    color: #000000;
}


.irk-faq-item.active
.irk-faq-question i {

    color: #000000;
}


/* =========================================================
   RESPUESTA
========================================================= */

.irk-faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease;
}


.irk-faq-item.active
.irk-faq-answer {

    grid-template-rows: 1fr;
}


/* =========================================================
   CONTENIDO RESPUESTA
========================================================= */

.irk-faq-answer-content {

    min-height: 0;

    overflow: hidden;

    padding: 0 23px;

    transition:
        padding 0.35s ease;
}


.irk-faq-item.active
.irk-faq-answer-content {

    padding-top: 20px;

    padding-bottom: 22px;
}


/* =========================================================
   TEXTO RESPUESTA
========================================================= */

.irk-faq-answer-content p {

    margin: 0;

    color: #444444;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 400;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .irk-faq {

        padding: 65px 0 70px;
    }


    .irk-faq-container {

        width: calc(100% - 40px);
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .irk-faq-header {

        margin-bottom: 42px;
    }


    .irk-faq-header h2 {

        font-size: 27px;
    }


    .irk-faq-header p {

        max-width: 700px;

        font-size: 17px;
    }


    /* -----------------------------------------
       ITEMS
       ----------------------------------------- */

    .irk-faq-list {

        gap: 16px;
    }


    .irk-faq-question {

        min-height: 56px;

        padding: 16px 20px;

        font-size: 15px;
    }


    .irk-faq-answer-content {

        padding-left: 20px;

        padding-right: 20px;
    }


    .irk-faq-answer-content p {

        font-size: 15px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 576px) {

    .irk-faq {

        padding: 50px 0 55px;
    }


    .irk-faq-container {

        width: calc(100% - 20px);
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .irk-faq-header {

        margin-bottom: 35px;
    }


    .irk-faq-header h2 {

        margin-bottom: 15px;

        font-size: 21px;

        line-height: 1.3;
    }


    .irk-faq-header p {

        max-width: 310px;

        font-size: 13px;

        line-height: 1.45;
    }


    /* -----------------------------------------
       LISTA
       ----------------------------------------- */

    .irk-faq-list {

        gap: 15px;
    }


    /* -----------------------------------------
       ITEM
       ----------------------------------------- */

    .irk-faq-item {

        border-radius: 11px;
    }


    /* -----------------------------------------
       PREGUNTA
       ----------------------------------------- */

    .irk-faq-question {

        min-height: 48px;

        padding: 13px 18px;

        gap: 12px;

        font-size: 12px;

        line-height: 1.3;
    }


    /* -----------------------------------------
       ICONO
       ----------------------------------------- */

    .irk-faq-question i {

        width: 15px;

        font-size: 10px;
    }


    /* -----------------------------------------
       RESPUESTA
       ----------------------------------------- */

    .irk-faq-answer-content {

        padding-left: 18px;

        padding-right: 18px;
    }


    .irk-faq-item.active
    .irk-faq-answer-content {

        padding-top: 17px;

        padding-bottom: 18px;
    }


    /* -----------------------------------------
       TEXTO
       ----------------------------------------- */

    .irk-faq-answer-content p {

        font-size: 11px;

        line-height: 1.45;
    }

}









/* =========================================================
   TESTIMONIO / FRASE DESTACADA
========================================================= */

.irk-quote {

    position: relative;

    width: 100%;

    min-height: 390px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   IMAGEN DE FONDO
========================================================= */

.irk-quote-background {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;


    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    z-index: 0;
}


/* =========================================================
   OVERLAY
========================================================= */

.irk-quote-background::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.48);
}


/* =========================================================
   CONTENEDOR
========================================================= */

.irk-quote-container {

    position: relative;

    z-index: 1;


    width: min(95%, 1430px);

    margin: 0 auto;

    text-align: center;

    color: var(--white);
}


/* =========================================================
   FRASE
========================================================= */

.irk-quote-text {

    max-width: 1050px;

    margin: 0 auto 55px;

    padding: 0;

    color: var(--white);

    font-size: 30px;

    line-height: 1.4;

    font-weight: 500;

    font-style: italic;
}


/* =========================================================
   AUTOR
========================================================= */

.irk-quote-author h3 {

    margin: 0 0 6px;

    color: var(--white);

    font-size: 24px;

    line-height: 1.2;

    font-weight: 500;
}


.irk-quote-author span {

    display: block;

    color: var(--white);

    font-size: 13px;

    line-height: 1.3;

    font-weight: 500;

    letter-spacing: 0.2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .irk-quote {

        min-height: 360px;
    }


    .irk-quote-container {

        width: calc(100% - 50px);
    }


    .irk-quote-text {

        max-width: 800px;

        margin-bottom: 45px;

        font-size: 25px;

        line-height: 1.4;
    }


    .irk-quote-author h3 {

        font-size: 21px;
    }


    .irk-quote-author span {

        font-size: 12px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 576px) {

    .irk-quote {

        min-height: 350px;
    }


    .irk-quote-background {

        background-position: center center;
    }


    .irk-quote-container {

        width: calc(100% - 35px);
    }


    /* -----------------------------------------
       FRASE
       ----------------------------------------- */

    .irk-quote-text {

        max-width: 330px;

        margin-bottom: 42px;

        font-size: 21px;

        line-height: 1.35;
    }


    /* -----------------------------------------
       AUTOR
       ----------------------------------------- */

    .irk-quote-author h3 {

        margin-bottom: 5px;

        font-size: 19px;
    }


    .irk-quote-author span {

        font-size: 11px;
    }

}



/* =========================================================
   SECCIÓN NUESTROS SERVICIOS
========================================================= */

.irk-services {

    width: 100%;

    background: var(--white);

    padding: 65px 0 75px;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.irk-services-container {

    
        width: min(95%, 1430px);

    margin: 0 auto;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.irk-services-header {

    text-align: center;

    margin-bottom: 45px;
}


.irk-services-header h2 {

    margin: 0 0 20px;

    color: #05265B;

    font-size: 27px;

    line-height: 1.2;

    font-weight: 700;
}


.irk-services-header p {


    margin: 0 auto;

    color: #292929;

    font-size: 16px;

    line-height: 1.45;

    font-weight: 400;
}


/* =========================================================
   GRID DE SERVICIOS
========================================================= */

.irk-services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    width: 100%;
}


/* =========================================================
   TARJETA
========================================================= */

.irk-service-card {

    position: relative;

    min-width: 0;

    min-height: 280px;

    display: flex;

    flex-direction: column;

    padding: 52px 20px 25px;

    box-sizing: border-box;

    background: var(--white);

    border: 1px solid #e3e3e3;

    border-radius: 9px;

    color: inherit;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================================
   HOVER TARJETA
========================================================= */

.irk-service-card:hover {

    transform: translateY(-4px);

    border-color: #d5d5d5;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   NÚMERO
========================================================= */

.irk-service-number {

    position: absolute;

    top: 0;

    left: 0;

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue);

    color: var(--white);

    border-radius:
        9px 0 9px 0;

    font-size: 16px;

    line-height: 1;

    font-weight: 700;
}


/* =========================================================
   ICONO
========================================================= */

.irk-service-icon {

    width: 100%;

    height: 92px;

    display: flex;

    align-items: start;

    justify-content: start;

    margin-bottom: 22px;
}


.irk-service-icon img {

    display: block;

    width: auto;

    max-width: 105px;

    height: auto;

    max-height: 92px;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}


.irk-service-card:hover
.irk-service-icon img {

    transform: scale(1.05);
}


/* =========================================================
   CONTENIDO
========================================================= */

.irk-service-content {

    width: 100%;
}


/* =========================================================
   TÍTULO
========================================================= */

.irk-service-content h3 {

    margin: 0 0 10px;

    color: #111111;

    font-size: 15px;

    line-height: 1.35;

    font-weight: 700;
}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.irk-service-content p {

    margin: 0;

    color: #222222;

    font-size: 15px;

    line-height: 1.45;

    font-weight: 400;
}


/* =========================================================
   INFORMACIÓN ADICIONAL
========================================================= */

.irk-services-extra {

    margin-top: 32px;
}



.irk-services-extra ul,.irk-services-extra ol {

    margin-left: 35px;
}




/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .irk-services {

        padding: 55px 0 65px;
    }


    .irk-services-container {

        width: calc(100% - 40px);
    }


    /* -----------------------------------------
       ENCABEZADO
       ----------------------------------------- */

    .irk-services-header {

        margin-bottom: 35px;
    }


    .irk-services-header h2 {

        margin-bottom: 16px;

        font-size: 24px;
    }


    .irk-services-header p {

        font-size: 14px;
    }


    /* -----------------------------------------
       GRID
       ----------------------------------------- */

    .irk-services-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 15px;
    }


    /* -----------------------------------------
       TARJETA
       ----------------------------------------- */

    .irk-service-card {

        min-height: 285px;

        padding: 50px 20px 24px;
    }


    /* -----------------------------------------
       ICONO
       ----------------------------------------- */

    .irk-service-icon {

        height: 90px;

        margin-bottom: 20px;
    }


    .irk-service-icon img {

        max-width: 100px;

        max-height: 90px;
    }


    /* -----------------------------------------
       CONTENIDO
       ----------------------------------------- */

    .irk-service-content h3 {

        font-size: 15px;
    }


    .irk-service-content p {

        font-size: 12px;
    }


    /* -----------------------------------------
       EXTRA
       ----------------------------------------- */

    .irk-services-extra {

        margin-top: 28px;

        font-size: 12px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 576px) {

    .irk-services {

        padding: 45px 0 55px;
    }


    .irk-services-container {

        width: calc(100% - 30px);
    }


    /* -----------------------------------------
       ENCABEZADO
       ----------------------------------------- */

    .irk-services-header {

        margin-bottom: 30px;
    }


    .irk-services-header h2 {

        margin-bottom: 14px;

        font-size: 21px;

        line-height: 1.3;
    }


    .irk-services-header p {

        font-size: 12px;

        line-height: 1.5;
    }


    /* -----------------------------------------
       GRID
       ----------------------------------------- */

    .irk-services-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    /* -----------------------------------------
       TARJETA
       ----------------------------------------- */

    .irk-service-card {

        min-height: 260px;

        padding: 48px 20px 22px;

        border-radius: 9px;
    }


    /* -----------------------------------------
       NÚMERO
       ----------------------------------------- */

    .irk-service-number {

        width: 34px;

        height: 34px;

        font-size: 14px;

        border-radius:
            9px 0 9px 0;
    }


    /* -----------------------------------------
       ICONO
       ----------------------------------------- */

    .irk-service-icon {

        height: 85px;

        margin-bottom: 18px;
    }


    .irk-service-icon img {

        max-width: 95px;

        max-height: 85px;
    }


    /* -----------------------------------------
       TÍTULO
       ----------------------------------------- */

    .irk-service-content h3 {

        margin-bottom: 9px;

        font-size: 14px;

        line-height: 1.35;
    }


    /* -----------------------------------------
       DESCRIPCIÓN
       ----------------------------------------- */

    .irk-service-content p {

        font-size: 11px;

        line-height: 1.45;
    }


    /* -----------------------------------------
       INFORMACIÓN EXTRA
       ----------------------------------------- */

    .irk-services-extra {

        margin-top: 25px;

        font-size: 11px;

        line-height: 1.5;
    }

}



/* =========================================================
   CTA / COTIZAR PROYECTO
========================================================= */

.irk-cta {

    position: relative;

    width: 100%;

    min-height: 420px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   IMAGEN DE FONDO
========================================================= */

.irk-cta-background {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    z-index: 0;
}


/* =========================================================
   OVERLAY
========================================================= */

.irk-cta-background::after {

    content: "";

    position: absolute;

    inset: 0;

    /*
       Overlay oscuro ligero
    */

    background: rgba(0, 0, 0, 0.42);
}


/* =========================================================
   CONTENEDOR
========================================================= */

.irk-cta-container {

    position: relative;

    z-index: 1;

    width: calc(100% - 40px);

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


/* =========================================================
   TÍTULO
========================================================= */

.irk-cta-container h2 {

    margin: 0 0 42px;

    color: var(--white);

    font-size: 34px;

    line-height: 1.35;

    font-weight: 700;
}


/* =========================================================
   BOTÓN
========================================================= */

.irk-cta-button {

    min-width: 290px;

    padding: 16px 32px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    box-sizing: border-box;

    border-radius: 15px;

    background: #2bd62b;

    color: var(--white);

    text-decoration: none;

    font-size: 20px;

    line-height: 1.2;

    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   ICONO WHATSAPP
========================================================= */

.irk-cta-button i {

    font-size: 28px;

    line-height: 1;
}


/* =========================================================
   HOVER
========================================================= */

.irk-cta-button:hover {

    background: #20c920;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .irk-cta {

        min-height: 360px;
    }


    .irk-cta-container {

        width: calc(100% - 50px);
    }


    .irk-cta-container h2 {

        margin-bottom: 35px;

        font-size: 28px;
    }


    .irk-cta-button {

        min-width: 260px;

        padding: 14px 28px;

        font-size: 18px;
    }


    .irk-cta-button i {

        font-size: 25px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 576px) {

    .irk-cta {

        min-height: 340px;
    }


    .irk-cta-background {

        background-position: center center;
    }


    .irk-cta-container {

        width: calc(100% - 30px);
    }


    /* -----------------------------------------
       TÍTULO
       ----------------------------------------- */

    .irk-cta-container h2 {

        max-width: 330px;

        margin-bottom: 32px;

        font-size: 22px;

        line-height: 1.4;
    }


    /* -----------------------------------------
       BOTÓN
       ----------------------------------------- */

    .irk-cta-button {

        min-width: 240px;

        padding: 13px 22px;

        gap: 9px;

        border-radius: 13px;

        font-size: 16px;
    }


    .irk-cta-button i {

        font-size: 23px;
    }

}




/* =========================================================
   DETALLE DEL PROYECTO
========================================================= */

.irk-project-detail {

    width: 100%;

    margin: 0 auto;
        width: min(95%, 1430px);

    box-sizing: border-box;
    padding:100px 0px;
    padding-top:30px;
}


/* =========================================================
   IMAGEN PRINCIPAL
========================================================= */

.irk-project-main-image {

    width: 100%;

    margin-bottom: 25px;

    overflow: hidden;

    border-radius: 8px;
}


.irk-project-main-image img {

    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;
}


/* =========================================================
   INFORMACIÓN DEL PROYECTO
========================================================= */

.irk-project-info {

    width: 100%;

    margin-bottom: 28px;
}


.irk-project-info h1 {

    margin: 0 0 5px;

    color: #05265B;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 700;
}


.irk-project-author {

    display: block;

    margin-bottom: 25px;

    color: #555555;

    font-size: 16px;

    font-weight: 500;

    text-transform: uppercase;
}


.irk-project-description {

    color: #222222;

    font-size: 13px;

    line-height: 1.55;
}


.irk-project-description p {

    margin: 0 0 15px;
}


.irk-project-description p:last-child {

    margin-bottom: 0;
}


/* =========================================================
   GALERÍA
========================================================= */

.irk-project-gallery {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 4px;

    margin-bottom: 35px;

    align-items: start;
}


/* =========================================================
   ITEM DE GALERÍA
========================================================= */

.irk-gallery-item {

    position: relative;

    display: block;

    width: 100%;

    margin: 0;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    overflow: hidden;

    line-height: 0;
}


.irk-gallery-item img {

    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    transition:
        transform 0.4s ease,
        opacity 0.3s ease;
}


/* =========================================================
   HOVER GALERÍA
========================================================= */

.irk-gallery-item:hover img {

    transform: scale(1.04);

    opacity: 0.9;
}


/* =========================================================
   MODAL / LIGHTBOX
========================================================= */

.irk-gallery-modal {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px 80px;

    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.88);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.irk-gallery-modal.open {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   IMAGEN DEL MODAL
========================================================= */

.irk-gallery-modal-content {

    position: relative;

    width: auto;

    max-width: 90vw;

    max-height: 90vh;

    display: flex;

    align-items: center;

    justify-content: center;
}


.irk-gallery-modal-content img {

    display: block;

    width: auto;

    height: auto;

    max-width: 90vw;

    max-height: 88vh;

    object-fit: contain;

    border-radius: 4px;
}


/* =========================================================
   BOTONES DEL MODAL
========================================================= */

.irk-gallery-close,
.irk-gallery-prev,
.irk-gallery-next {

    position: absolute;

    z-index: 2;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);

    color: #05265B;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.irk-gallery-close:hover,
.irk-gallery-prev:hover,
.irk-gallery-next:hover {

    background: var(--white);

    transform: scale(1.08);
}


/* =========================================================
   CERRAR
========================================================= */

.irk-gallery-close {

    top: 25px;

    right: 25px;
}


.irk-gallery-close i {

    font-size: 20px;
}


/* =========================================================
   ANTERIOR
========================================================= */

.irk-gallery-prev {

    left: 25px;

    top: 50%;

    transform: translateY(-50%);
}


.irk-gallery-prev:hover {

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =========================================================
   SIGUIENTE
========================================================= */

.irk-gallery-next {

    right: 25px;

    top: 50%;

    transform: translateY(-50%);
}


.irk-gallery-next:hover {

    transform:
        translateY(-50%)
        scale(1.08);
}


.irk-gallery-prev i,
.irk-gallery-next i {

    font-size: 18px;
}


/* =========================================================
   TEXTO ADICIONAL
========================================================= */

.irk-project-extra {

    width: 100%;

    margin-bottom: 25px;

    color: #222222;

    font-size: 13px;

    line-height: 1.55;
}


.irk-project-extra p {

    margin: 0 0 18px;
}


.irk-project-extra h2 {

    margin: 0;

    color: #222222;

    font-size: 14px;

    font-weight: 700;
}


/* =========================================================
   VIDEOS
========================================================= */

.irk-project-videos {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px 20px;

    align-items: start;

    margin-bottom: 28px;
}


/* =========================================================
   CONTENEDOR TIKTOK
========================================================= */

.irk-project-tiktok {

    width: 100%;

    min-width: 0;
}


.irk-tiktok-frame {

    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    overflow: hidden;

    border-radius: 8px;

    background: #eeeeee;
}


.irk-tiktok-frame iframe {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    border: 0;
}


/* =========================================================
   COTIZACIÓN
========================================================= */

.irk-project-quote {

    width: 100%;

    margin-top: 5px;
}


.irk-project-quote p {

    margin: 0 0 12px;

    color: #222222;

    font-size: 13px;
}


.irk-project-quote-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 12px 20px;

    border-radius: 9px;

    background: #2bd62b;

    color: var(--white);

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.irk-project-quote-button:hover {

    background: #20c920;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.15);
}


.irk-project-quote-button i {

    font-size: 18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .irk-project-detail {

        padding-top:40px;
    }


    /* -----------------------------------------
       GALERÍA
    ----------------------------------------- */

    .irk-project-gallery {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 4px;

        margin-bottom: 30px;
    }


    /* -----------------------------------------
       VIDEOS
    ----------------------------------------- */

    .irk-project-videos {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    /* -----------------------------------------
       MODAL
    ----------------------------------------- */

    .irk-gallery-modal {

        padding:
            45px 65px;
    }


    .irk-gallery-modal-content img {

        max-width: 88vw;

        max-height: 85vh;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .irk-project-detail {

        padding:
            0 15px 45px;
    }


    /* -----------------------------------------
       IMAGEN PRINCIPAL
    ----------------------------------------- */

    .irk-project-main-image {

        margin-bottom: 18px;

        border-radius: 6px;
    }


    /* -----------------------------------------
       INFORMACIÓN
    ----------------------------------------- */

    .irk-project-info h1 {

        font-size: 19px;

        line-height: 1.35;
    }


    .irk-project-author {

        margin-bottom: 14px;

        font-size: 9px;
    }


    .irk-project-description {

        font-size: 12px;

        line-height: 1.5;
    }


    .irk-project-description p {

        margin-bottom: 13px;
    }


    /* -----------------------------------------
       GALERÍA
       UNA IMAGEN POR FILA
    ----------------------------------------- */

    .irk-project-gallery {

        grid-template-columns: 1fr;

        gap: 5px;

        margin-bottom: 28px;
    }


    .irk-gallery-item:hover img {

        transform: none;

        opacity: 1;
    }


    /* -----------------------------------------
       MODAL
    ----------------------------------------- */

    .irk-gallery-modal {

        padding:
            55px 15px;
    }


    .irk-gallery-modal-content {

        max-width: 100%;

        max-height: 85vh;
    }


    .irk-gallery-modal-content img {

        max-width: 92vw;

        max-height: 82vh;

        border-radius: 3px;
    }


    /* -----------------------------------------
       CONTROLES
    ----------------------------------------- */

    .irk-gallery-close,
    .irk-gallery-prev,
    .irk-gallery-next {

        width: 42px;

        height: 42px;
    }


    .irk-gallery-close {

        top: 15px;

        right: 15px;
    }


    .irk-gallery-prev {

        left: 10px;
    }


    .irk-gallery-next {

        right: 10px;
    }


    .irk-gallery-prev i,
    .irk-gallery-next i {

        font-size: 15px;
    }


    /* -----------------------------------------
       TEXTO
    ----------------------------------------- */

    .irk-project-extra {

        font-size: 12px;
    }


    .irk-project-extra h2 {

        font-size: 13px;
    }


    /* -----------------------------------------
       VIDEOS
       UNO POR FILA
    ----------------------------------------- */

    .irk-project-videos {

        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 25px;
    }


    /* -----------------------------------------
       BOTÓN
    ----------------------------------------- */

    .irk-project-quote-button {

        width: 100%;

        box-sizing: border-box;

        padding: 12px 15px;

        font-size: 12px;
    }

}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .irk-about {

        background-position: center;
    }


    /* -----------------------------------------
       CONTENEDOR
       ----------------------------------------- */

    .irk-about-container {

        width: calc(100% - 40px);

        max-width: 600px;

        padding: 55px 0 65px;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 40px;
    }


    /* -----------------------------------------
       CONTENIDO
       
       APARECE PRIMERO
       ----------------------------------------- */

    .irk-about-content {

        order: 1;

        text-align: center;
    }


    /* -----------------------------------------
       TÍTULO
       ----------------------------------------- */

    .irk-about-content h2 {

        margin-bottom: 25px;

        font-size: 24px;

        line-height: 1.25;
    }


    /* -----------------------------------------
       TEXTOS
       ----------------------------------------- */

    .irk-about-content p {

        margin-bottom: 23px;

        font-size: 15px;

        line-height: 1.4;
    }


    .irk-about-content p:last-of-type {

        margin-bottom: 28px;
    }


    /* -----------------------------------------
       BOTÓN
       ----------------------------------------- */

    .irk-about-button {

        min-width: 245px;

        padding: 14px 22px;

        gap: 10px;

        font-size: 16px;
    }


    .irk-about-button i {

        font-size: 16px;
    }


    /* -----------------------------------------
       IMAGEN
       
       APARECE DESPUÉS
       ----------------------------------------- */

    .irk-about-image {

        order: 2;

        width: 100%;

        border-radius: 14px;
    }


    .irk-about-image img {

        aspect-ratio: 1.45 / 1;

        object-fit: cover;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 480px) {

    .irk-about-container {

        width: calc(100% - 36px);

        padding: 45px 0 50px;

        gap: 38px;
    }


    /* -----------------------------------------
       TÍTULO
       ----------------------------------------- */

    .irk-about-content h2 {

        margin-bottom: 22px;

        font-size: 21px;
    }


    /* -----------------------------------------
       TEXTO
       ----------------------------------------- */

    .irk-about-content p {

        margin-bottom: 21px;

        font-size: 14px;

        line-height: 1.42;
    }


    .irk-about-content p:last-of-type {

        margin-bottom: 27px;
    }


    /* -----------------------------------------
       BOTÓN
       ----------------------------------------- */

    .irk-about-button {

        min-width: 240px;

        padding: 13px 20px;

        font-size: 15px;

        gap: 9px;
    }


    .irk-about-button i {

        font-size: 15px;
    }


    /* -----------------------------------------
       IMAGEN
       ----------------------------------------- */

    .irk-about-image {

        border-radius: 13px;
    }


    .irk-about-image img {

        aspect-ratio: 1.38 / 1;

        object-fit: cover;
    }

}


























/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .irk-categories {
        padding: 45px 0 50px;
    }


    /* -----------------------------------------
       CONTENEDORES
       ----------------------------------------- */

    .irk-categories-header,
    .irk-categories-grid {
        width: calc(100% - 40px);
    }


    /* -----------------------------------------
       ENCABEZADO
       ----------------------------------------- */

    .irk-categories-header {

        flex-direction: column;

        justify-content: center;

        align-items: center;

        text-align: center;

        margin-bottom: 45px;
    }


    .irk-categories-header h2 {

        max-width: 350px;

        font-size: 25px;

        line-height: 1.35;
    }


    /* -----------------------------------------
       BOTÓN
       ----------------------------------------- */

    .irk-categories-button {

        min-width: 175px;

        padding: 12px 25px;

        font-size: 15px;
    }


    /* -----------------------------------------
       GRID TABLET
       
       2 CATEGORÍAS POR FILA
       ----------------------------------------- */

    .irk-categories-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px 14px;
    }


    /* -----------------------------------------
       MUY IMPORTANTE
       
       REINICIAMOS LAS REGLAS DEL GRID
       DE ESCRITORIO.
       ----------------------------------------- */

    .irk-category-card {

        grid-column: span 1 !important;

        aspect-ratio: 1.55 / 1;

        border-radius: 8px;
    }


    /* -----------------------------------------
       SI HAY UNA SOLA TARJETA EN LA ÚLTIMA FILA
       
       EJEMPLO:
       5 categorías → 2 + 2 + 1
       ----------------------------------------- */

    .irk-category-card:nth-child(odd):last-child {

        grid-column: 1 / -1 !important;
    }


    /* -----------------------------------------
       FRANJA
       ----------------------------------------- */

    .irk-category-overlay {

        min-height: 40px;

        padding: 8px 10px;
    }


    .irk-category-overlay span {

        font-size: 13px;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 480px) {

    .irk-categories {

        padding: 38px 0 45px;
    }


    /* -----------------------------------------
       CONTENEDORES
       ----------------------------------------- */

    .irk-categories-header,
    .irk-categories-grid {

        width: calc(100% - 40px);
    }


    /* -----------------------------------------
       ENCABEZADO
       ----------------------------------------- */

    .irk-categories-header {

        margin-bottom: 44px;
    }


    .irk-categories-header h2 {

        font-size: 24px;

        line-height: 1.35;
    }


    /* -----------------------------------------
       BOTÓN
       ----------------------------------------- */

    .irk-categories-button {

        min-width: 177px;

        padding: 12px 22px;

        font-size: 15px;
    }


    /* -----------------------------------------
       GRID CELULAR
       ----------------------------------------- */

    .irk-categories-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px 13px;
    }


    /* -----------------------------------------
       TARJETAS
       
       VOLVEMOS A 1 COLUMNA DEL GRID
       PARA CADA TARJETA.
       ----------------------------------------- */

    .irk-category-card {

        grid-column: span 1 !important;

        aspect-ratio: 1.25 / 1;
    }


    /* -----------------------------------------
       ÚLTIMA TARJETA SOLA
       
       EJEMPLO:
       5 → 2 + 2 + 1
       ----------------------------------------- */

    .irk-category-card:nth-child(odd):last-child {

        grid-column: 1 / -1 !important;
    }


    /* -----------------------------------------
       FRANJA
       ----------------------------------------- */

    .irk-category-overlay {

        min-height: 38px;

        padding: 7px 8px;
    }


    .irk-category-overlay span {

        font-size: 12px;

        line-height: 1.15;
    }

}





@media (max-width: 355px) {

   .irk-category-card {

        grid-column: span 2 !important;
    }

}