
.container-general-tr {
    width: 100%;
    max-width: 1440px;
    padding: 0 150px;
    display: flex;
    justify-content: space-between;
}

.text-tr {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.title-tr {
    font-family: Helvetica;
    font-size: 30px;
    font-style: normal;
    font-weight: bold;
    line-height: 30px;
    background: linear-gradient(90deg, #0070b2 0%, #00a6bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.description-tr {
    color: #1d1d1f;
    font-family: Helvetica;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.button-wrapper {
    
    align-items: center;
}

.gradient-btn {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10px 30px;
    border-radius: 10px;
    background: linear-gradient(90deg, #0070B2 0%, #00A6BD 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: Helvetica;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
}









.tiendas-panama-wrapper {
    width: 100%;
    max-width: 1440px;
    padding: 0 130px;
}

.tiendas-panama {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
   
}

 


.tienda-panama-titulo {
    color: #0070B2;
    font-family: Helvetica;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 272.727% */
    margin: 0;
}



.tienda-panama-content {
    display: flex;
    flex-direction: column;
    width: 366.361px;
    height: 200.65px;
    padding: 15px 20px;
    border-radius: 19.965px;
    background: #fff;
    box-shadow: 4.991px 4.991px 19.965px 0px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}
.tienda-panama-content:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.tienda-panama-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}
.tienda-panama-content p {
    
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}
.tienda-panama-content img {
    width: 31.944px;
    height: 31.944px;
}

.icono-boton-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tienda-panama-button {
    display: flex;
    height: 32px;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    color: #fff;
    border-radius: 10px;
    background: #0070b2;
    border: none;

    text-decoration: none;
    transition: background-color 0.3s;
}

@media only screen and (max-width: 768px) {
    .tiendas-panama-wrapper {
        padding: 0;
        margin: 0 20px;
        
    }
    .tiendas-panama {
        margin: 20px 20px;
    }
    

    .tienda-panama-content {
        width: 366.361px;
        
    }
    
    .container-general-tr {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        padding: 0 20px;
        gap: 20px;
    }
    .button-wrapper {
        width: 100%;
        
    }
}