body {
    background-color: #F6F7F8;
}

/* HERO - CATALOGO */
.hero {
    margin-top: 3rem;
}

.hero_breadcrumb {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 700;
    color: #0D131B;
}

.hero_breadcrumb a {
    font-size: 1.4rem;
    text-decoration: none;
    color: #4C6C9A;
    font-weight: 500;
    transition: color 0.3s;
}

.hero_breadcrumb .separador {
    margin: 0 6px;
    color: #0D131B;
}

.hero_banner-azul {
    width: 100%;
    padding: 4.4rem 4.8rem;
    border-radius: 25px;
    
    background: linear-gradient(100deg, #2C6E8E 0%, #277194 20%, #23789F 35%, #207FAB 55%, #2089B9 75%, #2294CA 100%);
    color: white;
    box-shadow: 0 20px 40px rgba(10, 77, 122, 0.15);
}

.hero_tag {
    display: block;
    color: #FFEB3B;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 2rem;
    letter-spacing: 0.7px;

    margin-bottom: 10px;
}

.hero_titulo {
    font-size: 4.8rem;
    line-height: 4.8rem;
    margin-bottom: 15px;

    text-transform: none;
    font-weight: bold;
}

.hero_texto {
    font-size: 1.8rem;
    font-weight: 400;
    max-width: 550px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2.8rem;
}


@media (max-width: 768px) {
    .hero_banner-azul {
        padding: 40px 30px;
    }
    .hero_titulo {
        font-size: 4rem;
    }
}

@media (max-width: 630px) {
    .hero_tag {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }
    .hero_titulo {
        font-size: 3.6rem;
        line-height: 4rem;
    }
    .hero_texto {
        font-size: 1.7rem;
        line-height: 2.7rem;
    }
}

@media (max-width: 550px) {
    .hero_tag {
        font-size: 1.2rem;
        line-height: 1.6rem;
        letter-spacing: 0.6px;
    }
    
    .hero_titulo {
        font-size: 3rem;
        line-height: 3.6rem;
    }
    
    .hero_texto {
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
}



/* SECCION - CATALOGO */
.catalogo {
    width: 100%;
    margin: 4rem 0;
}

.catalogo_contenedor {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

    /* --- FILTROS --- */
.catalogo_filtros {
    background: var(--P2);
    padding: 3rem;
    border-radius: 2rem;
    height: fit-content;
    border: 1px solid #eee;

    pointer-events: none;
    user-select: none;
}

.catalogo_filtros-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.catalogo_filtros-header h3 {
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 2.8rem;
    color: var(--P3);
}

.catalogo_filtros-grupo { margin-bottom: 30px; }

.catalogo_filtros-grupo h4 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: bold;
    color: #4C6C9A;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
}

.catalogo_filtros-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 12px;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 500;
    color: #4C6C9A;
    cursor: pointer;
}

.catalogo_filtros-item input {
    accent-color: var(--P1);
    width: 16px;
    height: 16px;
}

.catalogo_filtros-item.active { /* CON JS */
    color: var(--P3);
}

.catalogo_filtros-colores {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.catalogo_swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.2s;
}

.catalogo_swatch:hover { transform: scale(1.15); border-color: #616f9c52; }

/* --- PRODUCTOS --- */
.catalogo_productos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.catalogo_productos-header h2 {
    font-size: 3.2rem;
    line-height: 3.6rem;
    font-weight: bold;

    color: var(--P3);
}

.catalogo_ordenar {
    font-size: 1.2rem;
}

.catalogo_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Card Estilo Industrial */
.catalogo_card {
    position: relative;

    background: var(--P2);
    border-radius: 20px;
    border: 1px solid #ececec;
    overflow: hidden;
    transition: 0.3s;
}

.catalogo_card:hover {
    cursor: pointer;

    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.catalogo_card-img {
    overflow: hidden;
    background: #F6F7F8;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.catalogo_card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalogo_badge {
    position: absolute;
    border: solid 1px #3f9be1c7;
    top: 15px;
    left: 15px;
    background: #e3f2fd;
    color: var(--P1);
    padding: 5px 4rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: bold;
}

.catalogo_card-info { padding: 25px; }

.catalogo_tag {
    color: #4C6C9A;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.catalogo_dot { width: 8px; height: 8px; background: currentColor; border-radius: 50%; color: #e91e63;}

.catalogo_card-info h3 {
    font-size: 1.8rem;
    line-height: 2.8rem;
    font-weight: bold;
    color: var(--P3);
    margin: 10px 0;
}
.catalogo_card-info p {
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 400;
    color: #4C6C9A;
}

.catalogo_card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.catalogo_precio { font-size: 1.8rem; line-height: 2.8rem; font-weight: bold; color: var(--P3); }

.catalogo_btn-ver {
    width: 38px;
    height: 38px;
    background-color: #E7ECF3;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.catalogo_btn-ver::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.catalogo_btn-ver:hover { background-color: rgba(36, 156, 211, 0.2); }

.catalogo_btn-mas {
    display: block;
    margin: 50px auto 0;
    padding: 15px 40px;
    background: var(--P2);
    border: 1px solid #CFD9E7;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0;
    color: var(--P3);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .catalogo_contenedor { grid-template-columns: 1fr; }
    .catalogo_filtros { display: none; }
}


/* Responsive */

@media (max-width: 630px) {
    .catalogo_productos-header h2 {
        font-size: 3rem;
        line-height: 3.4rem;
    }
}

@media (max-width: 550px) {
    .catalogo_card {
        border: 1px solid #c9c9c9;
    }

    .catalogo_productos-header {
        flex-direction: column;
        align-items: start;
        gap: 8px;
    }

    .catalogo_productos-header h2 {
        font-size: 2.8rem;
        line-height: 3.2rem;
    }
}


/* SECCION 3 - SIMULADOR ADS */

.simulador_card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    background: #f4f7fb;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.simulador_info {
    padding: 4rem;
}

.simulador_tag {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--P1);
    letter-spacing: 0.7px;
    margin-bottom: 1rem;
}

.simulador_info h2 {
    font-size: 3.6rem;
    line-height: 4rem;
    font-weight: bold;
    color: var(--P3);
    margin-bottom: 1rem;
}

.simulador_info p {
    color: #4C6C9A;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.8rem;
    margin-bottom: 2rem;
}

.simulador_btn {
    display: inline-flex;
    gap: 1rem;
    align-items: center;

    background: var(--P3);
    color: var(--P2);

    padding: 1.4rem 2.6rem;
    border-radius: 10px;

    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: bold;

    transition: .3s;
}

.simulador_btn:hover {
    background: #0b1e36;
}

.simulador_img {
    height: 100%;
}

.simulador_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 900px) {
    .simulador_card{
        grid-template-columns: 1fr;
    }
    
    .simulador_img{
        order: -1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .simulador_info h2 {
        font-size: 3.4rem;
        line-height: 3.75rem;
    }
}

@media (max-width: 630px) {
    .simulador_info h2 {
        font-size: 3.2rem;
        line-height: 3.7rem;
    }
}

@media (max-width: 550px) {
    .simulador_info {
        padding: 3rem;
    }

    .simulador_info h2 {
        font-size: 3.2rem;
        line-height: 3.65rem;
    }

    .simulador_info p {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}