@import "main.css";

.titulo-banner {
    font-size: 1.8em;
    font-weight: 500;
    text-align: right;
    color: #ff6b00;
}

.cambio-color {
    color: #ff6b00;
}

/*Seccion 1 Banner */

.grid-secc-1-ayuda {
    margin-top: 100px;
    max-width: 95%;
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 3.5rem;
    justify-items: center;
}

.contenido-secc-1-ayuda {
    padding-top: 6rem;
}

.img-secc-1-ayuda img {
    margin-left: -3em;
    max-width: 90%;
}

@media screen and (max-width: 1227px) {
    .titulo-banner {
        font-size: 1.8em;
    }

    .contenido-secc-1-ayuda {
        margin-top: -2em;
    }

    .grid-secc-1-ayuda {
        margin: 1em 0em 0 1em;
        text-align: center;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .grid-secc-1-ayuda img {
        margin-left: 0;
        text-align: center;
        max-width: 99%;
    }
}

/* Seccion 2 Descuentos */

.center-title {
    font-size: 1.3em;
    text-align: center;
    color: #ff6b00;
}

.category-list {
    margin-bottom: 1em;
}

.category-list .category-item{
    text-decoration: none;
    color: #002e6d;
    background: #eaeaea;
    padding: .4em .6em;
    border-radius: .3em;
    transition: .3s;
    font-size: .9em;
}

.txt-tamaño {
    font-size: .65em;
}

.category-list .category-item:hover {
    background: #bcbcbc;
}

.category-list .ct-item-active {
    background: #bcbcbc;
}

.product-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-item {
    width: 25%;
    padding: 1em 1em;
    transition: all .4s;
}

.txt-item {
    font-size: .45em;
    color: #002e6d;
}

.link-item {
    text-decoration: none;
    font-size: .6em;
    background: #ff6b00;
    color: white;
    padding: .6em;
    border-radius: .4em;
    visibility: hidden;
}

.link-item:hover {
    transition: .3s;
    background: #eb9b3f;
}

.product-item:hover > .link-item {    
    visibility: visible;
}

@media screen and (max-width: 1227px) {
    .product-item {
        width: 33%;
        padding: 1em 1em;
    }
    .category-list {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: .25em;
        justify-content: center;
        align-items: center;
    }
    .category-item {
        margin: .2em;
    }
    #centrar-txt {
        text-align: center;
    }
}

@media screen and (max-width: 780px) {
    .product-item {
        width: 50%;
        padding: 1em 1em;
    }

    .link-item {
        visibility: visible;
    }
}

@media screen and (max-width: 580px) {
    .product-item {
        width: 100%;
        padding: 1em 1em;
        text-align: center;
    }

    .link-item {
        visibility: visible;
    }
}

#lista-peso-dhl1,
#lista-peso-dhl2,
#lista-peso-dhl3,
#lista-peso-dhl5,
#lista-peso-dhl6,
#lista-peso-dhl7,
#lista-peso-estafeta1,
#lista-peso-estafeta2,
#lista-peso-estafeta3,
#lista-peso-estafeta5,
#lista-peso-estafeta6,
#lista-peso-estafeta7,
#lista-peso-fedex1,
#lista-peso-fedex2,
#lista-peso-fedex3,
#lista-peso-fedex5,
#lista-peso-fedex6,
#lista-peso-fedex7,
#lista-peso-paquetex1,
#lista-peso-paquetex2,
#lista-peso-paquetex3,
#lista-peso-redpack1,
#lista-peso-redpack2,
#lista-peso-redpack3,
#lista-pesos,
#lista-pesos-a,
#lista-pesos1,
#lista-pesos1-a,
#lista-pesos2,
#lista-pesos2-a,
#lista-pesos3,
#lista-pesos4 {
    background: white;
    border: 1px solid #02305d;
    border-radius: 15px;
    width: 80%;
    padding: 1.6em;
}

/* Elementos Popup */

.popup img {
    max-width: 7em;
}

.dato-contacto1,
.dato-contacto2 {
    padding-top: 1em;
}

input[type="email"],
input[type="tel"] {
    width: 90%;
    padding: .8em 0;
    border: solid 1px #02305d;
    border-radius: 10px;
}

.btn-enviar {
    margin-top: 1em;
    color: white;
    background: #ff6b00;
    padding: .7rem 1rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: .4s;
}

.btn-cotiza:hover {
    background: #f8a84d;
}