.fichas-tecnicas {
    margin-top: 40px;
    border-top: 1px solid #ccc;
    padding-top: 25px;
    text-align: center;
}

.fichas-tecnicas h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #222;
}

/* Contenedor horizontal */
.fichas-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Links */
.fichas-links a {
    text-decoration: none;
    font-size: 14px;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: all 0.2s ease;
}

/* Icono */
.fichas-links .icono {
    font-size: 12px;
    transition: transform 0.2s ease;
}

/* Hover elegante */
.fichas-links a:hover {
    color: #000;
}

.fichas-links a:hover .icono {
    transform: translate(3px, -3px);
}

/* Línea sutil al pasar */
.fichas-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #000;
    transition: width 0.2s ease;
}

.fichas-links a:hover::after {
    width: 100%;
}