/*------------------------------------------------------*/
/*
/*  Contacto
/*
/*------------------------------------------------------*/


/* CONTENEDOR PRINCIPAL */
.contact-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0rem 2rem;
    width: 90%;
    background-color: transparent;
    margin: auto;
}

/* COLUMNA IZQUIERDA - Contacto */
.col-contact {
    flex: 1;
    max-width: 300px;
}

.col-contact p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    font-size: .9rem;
}

.contact-info li::before {
    content: "○ ";
    margin-right: 0.5rem;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

/* COLUMNA CENTRAL - Imagen */
.col-image {
    flex: 1;

    display: flex;
    justify-content: center;
    margin-left: 20vw;
}

.col-image img {
    height: 65vh;
    width: auto;
    object-fit: cover;
}

/* COLUMNA DERECHA - Dirección */
.col-address {
    flex: 1;
    max-width: 300px;
    text-align: right;
    font-size: 0.9rem;
}

.col-address p {
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.col-address a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.col-address a::before {
    content: "○ ";
}

.col-contact,
.col-address {
    align-self: flex-end;
}

.mt-marquee {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 0;
}

@media (max-width:1200px) {

    .col-image {
        margin: auto;
           margin-right:-10vw; 
    }
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .contact-container {
        flex-direction: column;
        width: 100%;
        padding: 0 30px;
    }

    .col-image {
        order: 1;
        /* margin: 3rem auto 2rem; */
    }

    .col-image img {
        margin-top: 7rem;
        max-width: 65vw;
        width: auto;
        object-fit: cover;
    }

    .col-contact {
        order: 2;
        max-width: 100%;
        padding-left: 1rem;
        align-self: flex-start;
    }

    .col-address {
        order: 3;
        width: 100%;
        padding-left: 1rem;
        align-self: flex-start;
        text-align: left;
    }

    :is(.col-contact, .col-address) {
        align-self: flex-start;
        padding-left: 1rem;
        margin-bottom: 2rem;
        text-align: left;
        font-size: 1.3rem;
    }

    :is(.col-contact a, .col-address a) {
        font-size: 1.3rem;
    }

    .col-contact p {
        font-size: 2rem;
        line-height: 1.2;
    }

    .col-image {
        order: 1;
        max-width: 70%;
        margin: 0 auto 2rem;
        /* Centra la imagen horizontalmente */
    }

    .mt-marquee {
        position: absolute;
        top: 40%;
        left: 0;
        width: 100%;
        z-index: 0;
    }
}