/* ESTILOS GENERALES CSNET */

:root {
    --principal: #ffa40d;
    --secundario: #dc440a;
    --negro: #000;
    --gris: #2d2926;
    --gris-20: rgba(45, 41, 38, 0.2);
    --gris-5: rgba(45, 41, 38, 0.05);
    --blanco: #fff;
}

/* Espacios */
.spacing-y-xxl {
    padding-top: 96px;
    padding-bottom: 96px;
}

.padding-bottom-xxxl {
    padding-bottom: 196px;
}
.padding-bottom-xxl {
    padding-bottom: 128px;
}

.fritta-gap-xxl {
    gap: 128px;
}

.spacing-l {
    padding: 32px;
}

.padding-l-top {
    padding-top: 32px;
}

.padding-xl-top {
    padding-top: 64px;
}

@font-face {
    font-family: "Open Sans";
    src: url("/fuentes/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf")
        format("truetype");
    font-weight: 100 900;
    /* font-stretch: 75% 125%; */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Italic */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-Italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Medium Italic */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-MediumItalic.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* SemiBold */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* SemiBold Italic */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-SemiBoldItalic.otf") format("opentype");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Bold Italic */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-BoldItalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ExtraBold */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-ExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ExtraBold Italic */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-ExtraBoldItalic.otf") format("opentype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* Light */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Light Italic */
@font-face {
    font-family: "Kritik";
    src: url("/fuentes/Kritik/Kritik-LightItalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

.fuente-kritik{
	font-family: 'Kritik', sans-serif;
}

.fondo-principal {
    background-color: var(--principal);
}
.fondo-secundario {
    background-color: var(--secundario);
}
.fondo-gris {
    background-color: var(--gris);
}

.color-principal {
    color: var(--principal);
}
.color-secundario {
    color: var(--secundario);
}
.color-gris {
    color: var(--gris);
}

.boton-principal {
    color: white;
    background-color: var(--principal);
    border: 1px solid var(--principal);
}

.boton-principal:hover {
    color: white;
    background-color: var(--secundario);
    border: 1px solid var(--secundario);
}

.boton-outline-principal {
    color: var(--principal);
    border: 1px solid var(--principal);
}

.boton-outline-principal:hover {
    color: white;
    background-color: var(--principal);
}

body {
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
}

main {
    flex-grow: 1;
}

.boton-clausula {
    width: fit-content;
    border: 1px solid rgb(190, 190, 190);
}

.boton-clausula:focus:not(:focus-visible),
.boton-clausula:not(.collapsed) {
    color: var(--negro);
    box-shadow: none;
    background-color: transparent;
    border: 1px solid rgb(190, 190, 190);
}

.boton-clausula:not(.collapsed)::after {
    background-image: url("/imagenes/iconos/chevron-down.svg"),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

ul.pagination {
    justify-content: center;
    margin-bottom: 3em;
}

.pagination .page-item.active .page-link {
    background-color: var(--verde1);
    border-color: var(--verde1);
}

.pagination .page-link {
    color: var(--verde1);
}

.pagination .page-link:focus:not(:focus-visible) {
    box-shadow: none;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 0;
}

/* FIN DE ESTILOS GENERALES CSNET */

/* pie */

.pie {
    background-color: var(--principal);
    color: var(--gris);
    border-radius: 32px 32px 0 0;
    margin-top: -32px !important;
}

.pie-bloque-inferior {
    border-top: 1px solid var(--gris);
}

.pie a {
    color: var(--gris);
    transition: 0.2s;
}

.pie a:hover {
    opacity: 0.7;
}

.pie-bloque-info {
    display: flex;
}

.title-info-pie {
    color: var(--gris);
    leading-trim: both;
    text-edge: cap;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.42px;
}

.pie-bloque-info a {
    color: var(--gris);
    leading-trim: both;
    text-edge: cap;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    letter-spacing: -0.42px;
}

.dropdown-menu li {
    position: relative;
}
.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    right: 100%;
    top: -7px;
}
.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: -80px;
    width: 100%;
    background-color: transparent;
    transition: 0.3s;
    z-index: 1000;
}

.navbar.show-navbar {
    top: 0;
    background-color: var(--blanco);
}

.navbar-brand {
    color: var(--gris);
    transition: 0.3s;
}

.navbar-brand:hover {
    opacity: 0.6;
}

.active-lang {
    text-decoration: underline;
}

.nav-link {
    color: var(--gris) !important;
}
.nav-link:hover {
    color: var(--gris) !important;
    opacity: 0.7;
}

/* Controlar el ancho máximo de los contenidos */

.max-resolution-container{
    max-width: 1920px;
    width: 100%;
}

/* Titulos */

.titulo-seccion{
    /* de la página principal */
	font-family: 'Kritik', sans-serif;
	font-size: 4.375rem;
	font-weight: 500;
	margin-bottom: 0;
    line-height: 1em;
}

.section-title {
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -1.08px;
}

/* Buscador fritta */
.buscador-fritta {
    position: relative;
    width: 300px;
    display: flex;
    align-items: center;
}

.buscador-input {
    width: 100%;
    padding: 12px 44px 12px 16px;
    border: none;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--blanco);
}

.buscador-input:focus,
.buscador-input:active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--blanco);
    outline: none;
    box-shadow: none;
}

.buscador-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.buscador-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: var(--blanco);
    font-size: 1rem;
    cursor: pointer;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: white;
    mask: url('data:image/svg+xml;utf8,<svg height="16px" fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M14.348 5.652a.5.5 0 0 0-.707 0L10 9.293 6.36 5.652a.5.5 0 1 0-.707.707L9.293 10l-3.64 3.64a.5.5 0 0 0 .707.707L10 10.707l3.64 3.64a.5.5 0 0 0 .707-.707L10.707 10l3.64-3.64a.5.5 0 0 0 0-.708z"/></svg>')
        no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M14.348 5.652a.5.5 0 0 0-.707 0L10 9.293 6.36 5.652a.5.5 0 1 0-.707.707L9.293 10l-3.64 3.64a.5.5 0 0 0 .707.707L10 10.707l3.64 3.64a.5.5 0 0 0 .707-.707L10.707 10l3.64-3.64a.5.5 0 0 0 0-.708z"/></svg>')
        no-repeat center;
    background-size: contain;
}

/* Productos */
.contenedor-productos {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border-radius: 32px;
    gap: 64px;
}

.contenedor-productos .row {
    width: 100%;
}

.tarjeta-producto a {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}


.tarjeta-producto .imagen-producto {
    height: 420px;
    align-self: stretch;
    overflow: hidden;
    border-radius: 10px;
}

/* @media (min-width: 1900px) {
    .tarjeta-producto .imagen-producto {
        width: 100%;
        height: 600px;
        overflow: hidden;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
} */


.tarjeta-producto .imagen-producto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tarjeta-producto .titulo-producto {
    color: var(--gris);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.54px;
    text-align: left;
    width: 100%;
    text-transform: lowercase;
}

.tarjeta-producto .titulo-producto::first-letter {
    text-transform: uppercase;
}

/* radios */
.b-radius-10{
	border-radius: 10px;
}

@media (max-width: 991.98px) {
    .spacing-l {
        padding: 1rem;
    }

    .section-title {
        font-size: 30px;
    }

    .contenedor-productos {
        border-radius: 26px;
    }
    /* Productos responsive */
    .tarjeta-producto .imagen-producto {
        height: 196px;
    }

    .no-padding-x-smaller-lg{
        padding-left: 0;
        padding-right: 0;
    }

    .col-producto-left {
        padding-right: 5px !important;
        padding-left: 0 !important;  /* opcional */
    }

    .col-producto-right {
        padding-left: 5px !important;
        padding-right: 0 !important; /* opcional */
    }
}
