.footer-img {
    width: 100%;
    height: 340px;
    display: block;
    margin-bottom: 10px;
}
.cabecera {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    box-sizing: border-box;
}

.footer-img {
    max-width: 100%;
    margin-top: -10px;
    height: 100%;
    display: block;
}

.text {
    position: absolute;
    top: 105px;
    font-weight: bold;
    left: 285px;
    font-size: 40px;
    color: white;
}

.button {
    position: absolute;
    font-weight: bold;
    font-size: 16px;
    top: 185px;
    left: 285px;
    padding: 16px 35px;
    background-color: #D3BE60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.content-comercio {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contenido-comercio {
    padding: 40px;
    text-align: center;
    width: 30cm;
}

.contrato img{
    margin-top: -40px;
    border-radius: 10px;
}
.p1{
    text-align: left;
    font-family: "Arial"
}
.texto-imagen {
    display: flex;
}

.texto {
    flex: 1;
    margin-right: 5px;
}

.imagenalias img{
    flex: 1;
    text-align: right;
    margin-left: 5px;
    border-radius: 10px;
}

.imagenalias {
    flex: 1;
    text-align: right;
}
.imagenalias img {
    max-width: 100%; 
}

.p2{
    text-align: left;
    color: #121212;
}
.allied-carousel {
    padding-top: 50px;
    padding-bottom: 30px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease; 
}

.carousel-item {
    min-width: 100%; 
text-align: center;
}

.carousel-item img{
    width: 300px;
    height: 205px;
}

.carousel-indicators {
    padding-top: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-indicator.active {
    background-color: black;
}


.image-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: -80px;
}

.row {
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
}

.column {
    flex: 0 0 calc(33.33% - 20px);
    position: relative;
}

.column img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.column:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
}