
/* ============================================
   FOOTER — AMONPUL
   ============================================ */

.footer {
    width: 100%;
    background: #066ec3;
    display: block;
}

/* ---- Columnas ---- */
.footer-items {
    padding: 0 20px 10px;
    box-sizing: border-box;
    color: #fff;
}

/* Logo en la columna descripción */
.footer-items > img {
    width: 120px;
    margin-bottom: 14px;
    display: block;
}

/* ---- Descripción ---- */
.footer-items p {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

/* ---- Títulos de sección ---- */
.footer-items > span {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 10px 0;
}

/* ---- Separador degradado ---- */
.footer .border1 {
    width: 100%;
    height: 1px;
    border: none;
    background: linear-gradient(90deg, rgba(17,200,220,1) 50%, rgba(255,88,0,1) 50%);
    margin-bottom: 12px;
}

/* ---- Listas de links ---- */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer ul li:last-child {
    border-bottom: none;
}

.footer ul li i {
    font-size: 11px;
    margin-right: 5px;
    opacity: 0.7;
}

.footer ul a {
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    outline: none;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

.footer ul a:hover {
    color: #ff9800;
}

/* ---- Contacto: items con icono ---- */
.footer ul li .footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
}

/* ---- Contacto helpers ---- */
.footer-contact-sub {
    opacity: 0.6;
    font-size: 11px;
}

.footer-link-accent {
    font-size: 11px;
    font-weight: 600;
    color: #ff9800 !important;
    text-decoration: none;
}

.footer-link-accent:hover {
    text-decoration: underline;
}

/* ---- Redes sociales ---- */
.social-media {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.social-media a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-media i {
    height: 28px;
    width: 28px;
    line-height: 28px;
    font-size: 13px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s;
}

.social-media i:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* Colores de marca en hover */
a:hover i.fa-facebook   { color: #4e6cbb; }
a:hover i.fa-instagram  { color: #e864ff; }
a:hover i.fa-whatsapp   { color: #49f72d; }
a:hover i.fa-linkedin   { color: #0073b2; }
a:hover i.fa-telegram   { color: #3390ec; }
a:hover i.fa-tiktok     { color: #fff; }
a:hover i.fa-youtube    { color: #ff0000; }
a:hover i.fa-x-twitter  { color: #fff; }

/* ---- Footer bottom ---- */
.footer-bottom {
    padding: 12px 0;
    background: rgba(0,0,0,0.15);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    text-align: center;
    letter-spacing: 0.3px;
}

.footer-bottom img {
    margin: 6px 8px;
    width: 70px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    vertical-align: middle;
}

/* El ancho responsive de las columnas lo gestiona Bootstrap (col-lg-*, col-md-*, col-12) */
