/* ==========================================
   CONTACTO: DIRECCIÓN + ICONOS
========================================== */

.contacto-mejorado {
    padding-top: 40px;
    padding-bottom: 110px;
}

.contacto-sobrelinea {
    display: block;
    margin-bottom: 8px;
    color: #9a7954;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contacto-titulo {
    margin-bottom: 34px;
}

.contacto-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid #e8ded2;
    border-radius: 26px;
    background: linear-gradient(135deg, #f4eee7 0%, #fffaf5 100%);
    box-shadow: 0 18px 45px rgba(85, 63, 41, 0.08);
}

.contacto-direccion {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.contacto-ubicacion-icono {
    display: grid;
    place-items: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #211f1c;
    color: #fff;
    box-shadow: 0 10px 24px rgba(33, 31, 28, 0.16);
}

.contacto-ubicacion-icono svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacto-direccion-titulo {
    display: block;
    margin-bottom: 6px;
    color: #9a7954;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contacto-direccion address {
    max-width: 650px;
    margin: 0;
    color: #332d27;
    font-size: clamp(15px, 1.8vw, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.55;
}

.contacto-iconos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 11px;
}

.contacto-icono {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(51, 45, 39, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 9px 20px rgba(33, 31, 28, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contacto-icono:hover,
.contacto-icono:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 13px 25px rgba(33, 31, 28, 0.2);
    filter: brightness(1.06);
}

.contacto-icono:focus-visible {
    outline: 3px solid rgba(154, 121, 84, 0.35);
    outline-offset: 4px;
}

.contacto-icono svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.contacto-whatsapp { background: #25d366; }
.contacto-facebook { background: #1877f2; }
.contacto-maps { background: #ea4335; }
.contacto-instagram { background: linear-gradient(135deg, #5b35b5, #c13584 55%, #f77737); }
.contacto-tiktok { background: #080808; }

.contacto-icono[hidden] {
    display: none !important;
}

@media (max-width: 900px) {
    .contacto-simple {
        align-items: flex-start;
        flex-direction: column;
    }

    .contacto-iconos {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .contacto-mejorado {
        padding-bottom: 75px;
    }

    .contacto-simple {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .contacto-direccion {
        align-items: flex-start;
    }

    .contacto-ubicacion-icono {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .contacto-icono {
        width: 48px;
        height: 48px;
    }
}
